@undefineds.co/xpod 0.1.0-local.202602081751

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 (970) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +146 -0
  3. package/components/components.jsonld +72 -0
  4. package/components/context.jsonld +1635 -0
  5. package/config/bun.json +90 -0
  6. package/config/cli.json +260 -0
  7. package/config/cloud.json +469 -0
  8. package/config/extensions.local.initializer.json +23 -0
  9. package/config/local.json +261 -0
  10. package/config/logging/configurable.json +18 -0
  11. package/config/main.json +200 -0
  12. package/config/main.vanilla.json +6 -0
  13. package/config/resolver.json +347 -0
  14. package/config/search.json +66 -0
  15. package/config/seed.dev.json +29 -0
  16. package/config/seeds/admin.example.json +11 -0
  17. package/config/seeds/test.json +11 -0
  18. package/config/terminal.json +22 -0
  19. package/config/vector.json +35 -0
  20. package/config/xpod.base.json +155 -0
  21. package/config/xpod.cluster.json +419 -0
  22. package/config/xpod.json +233 -0
  23. package/dist/agents/AgentExecutorFactory.d.ts +67 -0
  24. package/dist/agents/AgentExecutorFactory.js +193 -0
  25. package/dist/agents/AgentExecutorFactory.js.map +1 -0
  26. package/dist/agents/AgentManager.d.ts +114 -0
  27. package/dist/agents/AgentManager.js +289 -0
  28. package/dist/agents/AgentManager.js.map +1 -0
  29. package/dist/agents/BaseAgentExecutor.d.ts +67 -0
  30. package/dist/agents/BaseAgentExecutor.js +101 -0
  31. package/dist/agents/BaseAgentExecutor.js.map +1 -0
  32. package/dist/agents/ClaudeExecutor.d.ts +63 -0
  33. package/dist/agents/ClaudeExecutor.js +335 -0
  34. package/dist/agents/ClaudeExecutor.js.map +1 -0
  35. package/dist/agents/CodeBuddyExecutor.d.ts +54 -0
  36. package/dist/agents/CodeBuddyExecutor.js +273 -0
  37. package/dist/agents/CodeBuddyExecutor.js.map +1 -0
  38. package/dist/agents/IndexAgent.d.ts +70 -0
  39. package/dist/agents/IndexAgent.js +417 -0
  40. package/dist/agents/IndexAgent.js.map +1 -0
  41. package/dist/agents/index.d.ts +22 -0
  42. package/dist/agents/index.js +48 -0
  43. package/dist/agents/index.js.map +1 -0
  44. package/dist/agents/schema/agent-config.d.ts +58 -0
  45. package/dist/agents/schema/agent-config.js +74 -0
  46. package/dist/agents/schema/agent-config.js.map +1 -0
  47. package/dist/agents/schema/tables.d.ts +46 -0
  48. package/dist/agents/schema/tables.js +64 -0
  49. package/dist/agents/schema/tables.js.map +1 -0
  50. package/dist/agents/types.d.ts +266 -0
  51. package/dist/agents/types.js +9 -0
  52. package/dist/agents/types.js.map +1 -0
  53. package/dist/ai/index.d.ts +5 -0
  54. package/dist/ai/index.js +22 -0
  55. package/dist/ai/index.js.map +1 -0
  56. package/dist/ai/schema/config.d.ts +27 -0
  57. package/dist/ai/schema/config.js +36 -0
  58. package/dist/ai/schema/config.js.map +1 -0
  59. package/dist/ai/schema/index.d.ts +8 -0
  60. package/dist/ai/schema/index.js +27 -0
  61. package/dist/ai/schema/index.js.map +1 -0
  62. package/dist/ai/schema/model.d.ts +40 -0
  63. package/dist/ai/schema/model.js +60 -0
  64. package/dist/ai/schema/model.js.map +1 -0
  65. package/dist/ai/schema/provider.d.ts +21 -0
  66. package/dist/ai/schema/provider.js +30 -0
  67. package/dist/ai/schema/provider.js.map +1 -0
  68. package/dist/ai/schema/types.d.ts +52 -0
  69. package/dist/ai/schema/types.js +62 -0
  70. package/dist/ai/schema/types.js.map +1 -0
  71. package/dist/ai/schema/vector-store.d.ts +53 -0
  72. package/dist/ai/schema/vector-store.js +65 -0
  73. package/dist/ai/schema/vector-store.js.map +1 -0
  74. package/dist/ai/service/CredentialReader.d.ts +7 -0
  75. package/dist/ai/service/CredentialReader.js +10 -0
  76. package/dist/ai/service/CredentialReader.js.map +1 -0
  77. package/dist/ai/service/CredentialReaderImpl.d.ts +6 -0
  78. package/dist/ai/service/CredentialReaderImpl.js +55 -0
  79. package/dist/ai/service/CredentialReaderImpl.js.map +1 -0
  80. package/dist/ai/service/EmbeddingService.d.ts +8 -0
  81. package/dist/ai/service/EmbeddingService.js +10 -0
  82. package/dist/ai/service/EmbeddingService.js.map +1 -0
  83. package/dist/ai/service/EmbeddingServiceImpl.d.ts +11 -0
  84. package/dist/ai/service/EmbeddingServiceImpl.js +73 -0
  85. package/dist/ai/service/EmbeddingServiceImpl.js.map +1 -0
  86. package/dist/ai/service/ProviderRegistry.d.ts +26 -0
  87. package/dist/ai/service/ProviderRegistry.js +10 -0
  88. package/dist/ai/service/ProviderRegistry.js.map +1 -0
  89. package/dist/ai/service/ProviderRegistryImpl.d.ts +14 -0
  90. package/dist/ai/service/ProviderRegistryImpl.js +112 -0
  91. package/dist/ai/service/ProviderRegistryImpl.js.map +1 -0
  92. package/dist/ai/service/index.d.ts +10 -0
  93. package/dist/ai/service/index.js +29 -0
  94. package/dist/ai/service/index.js.map +1 -0
  95. package/dist/ai/service/types.d.ts +12 -0
  96. package/dist/ai/service/types.js +6 -0
  97. package/dist/ai/service/types.js.map +1 -0
  98. package/dist/api/ApiServer.d.ts +77 -0
  99. package/dist/api/ApiServer.js +191 -0
  100. package/dist/api/ApiServer.js.map +1 -0
  101. package/dist/api/auth/AuthContext.d.ts +41 -0
  102. package/dist/api/auth/AuthContext.js +44 -0
  103. package/dist/api/auth/AuthContext.js.map +1 -0
  104. package/dist/api/auth/Authenticator.d.ts +23 -0
  105. package/dist/api/auth/Authenticator.js +3 -0
  106. package/dist/api/auth/Authenticator.js.map +1 -0
  107. package/dist/api/auth/ClientCredentialsAuthenticator.d.ts +56 -0
  108. package/dist/api/auth/ClientCredentialsAuthenticator.js +191 -0
  109. package/dist/api/auth/ClientCredentialsAuthenticator.js.map +1 -0
  110. package/dist/api/auth/MultiAuthenticator.d.ts +15 -0
  111. package/dist/api/auth/MultiAuthenticator.js +36 -0
  112. package/dist/api/auth/MultiAuthenticator.js.map +1 -0
  113. package/dist/api/auth/NodeTokenAuthenticator.d.ts +21 -0
  114. package/dist/api/auth/NodeTokenAuthenticator.js +124 -0
  115. package/dist/api/auth/NodeTokenAuthenticator.js.map +1 -0
  116. package/dist/api/auth/SolidTokenAuthenticator.d.ts +27 -0
  117. package/dist/api/auth/SolidTokenAuthenticator.js +144 -0
  118. package/dist/api/auth/SolidTokenAuthenticator.js.map +1 -0
  119. package/dist/api/auth/index.d.ts +5 -0
  120. package/dist/api/auth/index.js +23 -0
  121. package/dist/api/auth/index.js.map +1 -0
  122. package/dist/api/chatkit/ai-provider.d.ts +44 -0
  123. package/dist/api/chatkit/ai-provider.js +157 -0
  124. package/dist/api/chatkit/ai-provider.js.map +1 -0
  125. package/dist/api/chatkit/index.d.ts +11 -0
  126. package/dist/api/chatkit/index.js +44 -0
  127. package/dist/api/chatkit/index.js.map +1 -0
  128. package/dist/api/chatkit/pod-store.d.ts +154 -0
  129. package/dist/api/chatkit/pod-store.js +794 -0
  130. package/dist/api/chatkit/pod-store.js.map +1 -0
  131. package/dist/api/chatkit/schema.d.ts +139 -0
  132. package/dist/api/chatkit/schema.js +168 -0
  133. package/dist/api/chatkit/schema.js.map +1 -0
  134. package/dist/api/chatkit/service.d.ts +143 -0
  135. package/dist/api/chatkit/service.js +442 -0
  136. package/dist/api/chatkit/service.js.map +1 -0
  137. package/dist/api/chatkit/store.d.ts +63 -0
  138. package/dist/api/chatkit/store.js +178 -0
  139. package/dist/api/chatkit/store.js.map +1 -0
  140. package/dist/api/chatkit/types.d.ts +461 -0
  141. package/dist/api/chatkit/types.js +50 -0
  142. package/dist/api/chatkit/types.js.map +1 -0
  143. package/dist/api/container/cloud.d.ts +12 -0
  144. package/dist/api/container/cloud.js +97 -0
  145. package/dist/api/container/cloud.js.map +1 -0
  146. package/dist/api/container/common.d.ts +11 -0
  147. package/dist/api/container/common.js +82 -0
  148. package/dist/api/container/common.js.map +1 -0
  149. package/dist/api/container/index.d.ts +16 -0
  150. package/dist/api/container/index.js +90 -0
  151. package/dist/api/container/index.js.map +1 -0
  152. package/dist/api/container/local.d.ts +13 -0
  153. package/dist/api/container/local.js +197 -0
  154. package/dist/api/container/local.js.map +1 -0
  155. package/dist/api/container/routes.d.ts +11 -0
  156. package/dist/api/container/routes.js +129 -0
  157. package/dist/api/container/routes.js.map +1 -0
  158. package/dist/api/container/types.d.ts +92 -0
  159. package/dist/api/container/types.js +8 -0
  160. package/dist/api/container/types.js.map +1 -0
  161. package/dist/api/handlers/AdminHandler.d.ts +6 -0
  162. package/dist/api/handlers/AdminHandler.js +330 -0
  163. package/dist/api/handlers/AdminHandler.js.map +1 -0
  164. package/dist/api/handlers/ApiKeyHandler.d.ts +15 -0
  165. package/dist/api/handlers/ApiKeyHandler.js +159 -0
  166. package/dist/api/handlers/ApiKeyHandler.js.map +1 -0
  167. package/dist/api/handlers/ChatHandler.d.ts +60 -0
  168. package/dist/api/handlers/ChatHandler.js +230 -0
  169. package/dist/api/handlers/ChatHandler.js.map +1 -0
  170. package/dist/api/handlers/ChatKitHandler.d.ts +18 -0
  171. package/dist/api/handlers/ChatKitHandler.js +151 -0
  172. package/dist/api/handlers/ChatKitHandler.js.map +1 -0
  173. package/dist/api/handlers/DashboardHandler.d.ts +14 -0
  174. package/dist/api/handlers/DashboardHandler.js +117 -0
  175. package/dist/api/handlers/DashboardHandler.js.map +1 -0
  176. package/dist/api/handlers/DdnsHandler.d.ts +19 -0
  177. package/dist/api/handlers/DdnsHandler.js +306 -0
  178. package/dist/api/handlers/DdnsHandler.js.map +1 -0
  179. package/dist/api/handlers/DevHandler.d.ts +18 -0
  180. package/dist/api/handlers/DevHandler.js +276 -0
  181. package/dist/api/handlers/DevHandler.js.map +1 -0
  182. package/dist/api/handlers/NodeHandler.d.ts +16 -0
  183. package/dist/api/handlers/NodeHandler.js +190 -0
  184. package/dist/api/handlers/NodeHandler.js.map +1 -0
  185. package/dist/api/handlers/PodManagementHandler.d.ts +39 -0
  186. package/dist/api/handlers/PodManagementHandler.js +294 -0
  187. package/dist/api/handlers/PodManagementHandler.js.map +1 -0
  188. package/dist/api/handlers/QuotaHandler.d.ts +21 -0
  189. package/dist/api/handlers/QuotaHandler.js +209 -0
  190. package/dist/api/handlers/QuotaHandler.js.map +1 -0
  191. package/dist/api/handlers/SignalHandler.d.ts +13 -0
  192. package/dist/api/handlers/SignalHandler.js +122 -0
  193. package/dist/api/handlers/SignalHandler.js.map +1 -0
  194. package/dist/api/handlers/SubdomainClientHandler.d.ts +24 -0
  195. package/dist/api/handlers/SubdomainClientHandler.js +169 -0
  196. package/dist/api/handlers/SubdomainClientHandler.js.map +1 -0
  197. package/dist/api/handlers/SubdomainHandler.d.ts +17 -0
  198. package/dist/api/handlers/SubdomainHandler.js +312 -0
  199. package/dist/api/handlers/SubdomainHandler.js.map +1 -0
  200. package/dist/api/handlers/VectorHandler.d.ts +15 -0
  201. package/dist/api/handlers/VectorHandler.js +293 -0
  202. package/dist/api/handlers/VectorHandler.js.map +1 -0
  203. package/dist/api/handlers/VectorStoreHandler.d.ts +20 -0
  204. package/dist/api/handlers/VectorStoreHandler.js +348 -0
  205. package/dist/api/handlers/VectorStoreHandler.js.map +1 -0
  206. package/dist/api/handlers/VectorStoreWebhookHandler.d.ts +74 -0
  207. package/dist/api/handlers/VectorStoreWebhookHandler.js +121 -0
  208. package/dist/api/handlers/VectorStoreWebhookHandler.js.map +1 -0
  209. package/dist/api/handlers/WebIdProfileHandler.d.ts +14 -0
  210. package/dist/api/handlers/WebIdProfileHandler.js +204 -0
  211. package/dist/api/handlers/WebIdProfileHandler.js.map +1 -0
  212. package/dist/api/handlers/index.d.ts +11 -0
  213. package/dist/api/handlers/index.js +28 -0
  214. package/dist/api/handlers/index.js.map +1 -0
  215. package/dist/api/index.d.ts +12 -0
  216. package/dist/api/index.js +29 -0
  217. package/dist/api/index.js.map +1 -0
  218. package/dist/api/main.d.ts +14 -0
  219. package/dist/api/main.js +106 -0
  220. package/dist/api/main.js.map +1 -0
  221. package/dist/api/middleware/AuthMiddleware.d.ts +35 -0
  222. package/dist/api/middleware/AuthMiddleware.js +51 -0
  223. package/dist/api/middleware/AuthMiddleware.js.map +1 -0
  224. package/dist/api/middleware/index.d.ts +1 -0
  225. package/dist/api/middleware/index.js +18 -0
  226. package/dist/api/middleware/index.js.map +1 -0
  227. package/dist/api/models/model-provider.schema.d.ts +12 -0
  228. package/dist/api/models/model-provider.schema.js +21 -0
  229. package/dist/api/models/model-provider.schema.js.map +1 -0
  230. package/dist/api/models/namespaces.d.ts +9 -0
  231. package/dist/api/models/namespaces.js +34 -0
  232. package/dist/api/models/namespaces.js.map +1 -0
  233. package/dist/api/service/InternalPodService.d.ts +19 -0
  234. package/dist/api/service/InternalPodService.js +82 -0
  235. package/dist/api/service/InternalPodService.js.map +1 -0
  236. package/dist/api/service/VectorService.d.ts +156 -0
  237. package/dist/api/service/VectorService.js +202 -0
  238. package/dist/api/service/VectorService.js.map +1 -0
  239. package/dist/api/service/VectorStoreService.d.ts +262 -0
  240. package/dist/api/service/VectorStoreService.js +985 -0
  241. package/dist/api/service/VectorStoreService.js.map +1 -0
  242. package/dist/api/service/VercelChatService.d.ts +28 -0
  243. package/dist/api/service/VercelChatService.js +289 -0
  244. package/dist/api/service/VercelChatService.js.map +1 -0
  245. package/dist/api/store/DrizzleClientCredentialsStore.d.ts +56 -0
  246. package/dist/api/store/DrizzleClientCredentialsStore.js +145 -0
  247. package/dist/api/store/DrizzleClientCredentialsStore.js.map +1 -0
  248. package/dist/api/store/index.d.ts +1 -0
  249. package/dist/api/store/index.js +18 -0
  250. package/dist/api/store/index.js.map +1 -0
  251. package/dist/components/components.jsonld +88 -0
  252. package/dist/components/context.jsonld +1962 -0
  253. package/dist/credential/index.d.ts +1 -0
  254. package/dist/credential/index.js +18 -0
  255. package/dist/credential/index.js.map +1 -0
  256. package/dist/credential/schema/index.d.ts +2 -0
  257. package/dist/credential/schema/index.js +19 -0
  258. package/dist/credential/schema/index.js.map +1 -0
  259. package/dist/credential/schema/tables.d.ts +31 -0
  260. package/dist/credential/schema/tables.js +42 -0
  261. package/dist/credential/schema/tables.js.map +1 -0
  262. package/dist/credential/schema/types.d.ts +20 -0
  263. package/dist/credential/schema/types.js +26 -0
  264. package/dist/credential/schema/types.js.map +1 -0
  265. package/dist/dns/DnsProvider.d.ts +46 -0
  266. package/dist/dns/DnsProvider.js +3 -0
  267. package/dist/dns/DnsProvider.js.map +1 -0
  268. package/dist/dns/DnsProvider.jsonld +161 -0
  269. package/dist/dns/cloudflare/CloudflareDnsProvider.d.ts +51 -0
  270. package/dist/dns/cloudflare/CloudflareDnsProvider.js +227 -0
  271. package/dist/dns/cloudflare/CloudflareDnsProvider.js.map +1 -0
  272. package/dist/dns/cloudflare/index.d.ts +1 -0
  273. package/dist/dns/cloudflare/index.js +18 -0
  274. package/dist/dns/cloudflare/index.js.map +1 -0
  275. package/dist/dns/tencent/TencentDnsProvider.d.ts +42 -0
  276. package/dist/dns/tencent/TencentDnsProvider.js +221 -0
  277. package/dist/dns/tencent/TencentDnsProvider.js.map +1 -0
  278. package/dist/dns/tencent/TencentDnsProvider.jsonld +239 -0
  279. package/dist/document/Chunker.d.ts +64 -0
  280. package/dist/document/Chunker.js +8 -0
  281. package/dist/document/Chunker.js.map +1 -0
  282. package/dist/document/DocumentParser.d.ts +58 -0
  283. package/dist/document/DocumentParser.js +8 -0
  284. package/dist/document/DocumentParser.js.map +1 -0
  285. package/dist/document/HeadingChunker.d.ts +34 -0
  286. package/dist/document/HeadingChunker.js +182 -0
  287. package/dist/document/HeadingChunker.js.map +1 -0
  288. package/dist/document/JinaDocumentParser.d.ts +40 -0
  289. package/dist/document/JinaDocumentParser.js +129 -0
  290. package/dist/document/JinaDocumentParser.js.map +1 -0
  291. package/dist/document/index.d.ts +7 -0
  292. package/dist/document/index.js +26 -0
  293. package/dist/document/index.js.map +1 -0
  294. package/dist/edge/DdnsManager.d.ts +53 -0
  295. package/dist/edge/DdnsManager.js +153 -0
  296. package/dist/edge/DdnsManager.js.map +1 -0
  297. package/dist/edge/Dns01CertificateProvisioner.d.ts +27 -0
  298. package/dist/edge/Dns01CertificateProvisioner.js +160 -0
  299. package/dist/edge/Dns01CertificateProvisioner.js.map +1 -0
  300. package/dist/edge/Dns01CertificateProvisioner.jsonld +148 -0
  301. package/dist/edge/EdgeNodeAgent.d.ts +56 -0
  302. package/dist/edge/EdgeNodeAgent.js +230 -0
  303. package/dist/edge/EdgeNodeAgent.js.map +1 -0
  304. package/dist/edge/EdgeNodeAgent.jsonld +89 -0
  305. package/dist/edge/EdgeNodeAgentInitializer.d.ts +25 -0
  306. package/dist/edge/EdgeNodeAgentInitializer.js +64 -0
  307. package/dist/edge/EdgeNodeAgentInitializer.js.map +1 -0
  308. package/dist/edge/EdgeNodeCapabilityDetector.d.ts +98 -0
  309. package/dist/edge/EdgeNodeCapabilityDetector.js +425 -0
  310. package/dist/edge/EdgeNodeCapabilityDetector.js.map +1 -0
  311. package/dist/edge/EdgeNodeCertificateProvisioner.d.ts +3 -0
  312. package/dist/edge/EdgeNodeCertificateProvisioner.js +3 -0
  313. package/dist/edge/EdgeNodeCertificateProvisioner.js.map +1 -0
  314. package/dist/edge/EdgeNodeCertificateProvisioner.jsonld +21 -0
  315. package/dist/edge/EdgeNodeDnsCoordinator.d.ts +38 -0
  316. package/dist/edge/EdgeNodeDnsCoordinator.js +201 -0
  317. package/dist/edge/EdgeNodeDnsCoordinator.js.map +1 -0
  318. package/dist/edge/EdgeNodeDnsCoordinator.jsonld +212 -0
  319. package/dist/edge/EdgeNodeHealthProbeService.d.ts +25 -0
  320. package/dist/edge/EdgeNodeHealthProbeService.js +208 -0
  321. package/dist/edge/EdgeNodeHealthProbeService.js.map +1 -0
  322. package/dist/edge/EdgeNodeHealthProbeService.jsonld +176 -0
  323. package/dist/edge/EdgeNodeModeDetector.d.ts +50 -0
  324. package/dist/edge/EdgeNodeModeDetector.js +194 -0
  325. package/dist/edge/EdgeNodeModeDetector.js.map +1 -0
  326. package/dist/edge/EdgeNodeModeDetector.jsonld +114 -0
  327. package/dist/edge/EdgeNodeTunnelManager.d.ts +23 -0
  328. package/dist/edge/EdgeNodeTunnelManager.js +99 -0
  329. package/dist/edge/EdgeNodeTunnelManager.js.map +1 -0
  330. package/dist/edge/EdgeNodeTunnelManager.jsonld +128 -0
  331. package/dist/edge/FrpTunnelManager.d.ts +30 -0
  332. package/dist/edge/FrpTunnelManager.js +151 -0
  333. package/dist/edge/FrpTunnelManager.js.map +1 -0
  334. package/dist/edge/FrpTunnelManager.jsonld +192 -0
  335. package/dist/edge/LocalNetworkManager.d.ts +41 -0
  336. package/dist/edge/LocalNetworkManager.js +115 -0
  337. package/dist/edge/LocalNetworkManager.js.map +1 -0
  338. package/dist/edge/acme/AcmeCertificateManager.d.ts +65 -0
  339. package/dist/edge/acme/AcmeCertificateManager.js +233 -0
  340. package/dist/edge/acme/AcmeCertificateManager.js.map +1 -0
  341. package/dist/edge/acme/AcmeCertificateManager.jsonld +373 -0
  342. package/dist/edge/acme/ClusterCertificateManager.d.ts +40 -0
  343. package/dist/edge/acme/ClusterCertificateManager.js +184 -0
  344. package/dist/edge/acme/ClusterCertificateManager.js.map +1 -0
  345. package/dist/edge/acme/DnsChallengeClient.d.ts +15 -0
  346. package/dist/edge/acme/DnsChallengeClient.js +40 -0
  347. package/dist/edge/acme/DnsChallengeClient.js.map +1 -0
  348. package/dist/edge/acme/utils.d.ts +4 -0
  349. package/dist/edge/acme/utils.js +17 -0
  350. package/dist/edge/acme/utils.js.map +1 -0
  351. package/dist/edge/frp/FrpRelay.d.ts +11 -0
  352. package/dist/edge/frp/FrpRelay.js +29 -0
  353. package/dist/edge/frp/FrpRelay.js.map +1 -0
  354. package/dist/edge/frp/FrpcProcessManager.d.ts +51 -0
  355. package/dist/edge/frp/FrpcProcessManager.js +174 -0
  356. package/dist/edge/frp/FrpcProcessManager.js.map +1 -0
  357. package/dist/edge/interfaces/EdgeNodeTunnelManager.d.ts +6 -0
  358. package/dist/edge/interfaces/EdgeNodeTunnelManager.js +3 -0
  359. package/dist/edge/interfaces/EdgeNodeTunnelManager.js.map +1 -0
  360. package/dist/edge/interfaces/EdgeNodeTunnelManager.jsonld +21 -0
  361. package/dist/embedding/CredentialReader.d.ts +7 -0
  362. package/dist/embedding/CredentialReader.js +10 -0
  363. package/dist/embedding/CredentialReader.js.map +1 -0
  364. package/dist/embedding/CredentialReader.jsonld +22 -0
  365. package/dist/embedding/CredentialReaderImpl.d.ts +6 -0
  366. package/dist/embedding/CredentialReaderImpl.js +55 -0
  367. package/dist/embedding/CredentialReaderImpl.js.map +1 -0
  368. package/dist/embedding/CredentialReaderImpl.jsonld +31 -0
  369. package/dist/embedding/EmbeddingService.d.ts +8 -0
  370. package/dist/embedding/EmbeddingService.js +10 -0
  371. package/dist/embedding/EmbeddingService.js.map +1 -0
  372. package/dist/embedding/EmbeddingService.jsonld +26 -0
  373. package/dist/embedding/EmbeddingServiceImpl.d.ts +11 -0
  374. package/dist/embedding/EmbeddingServiceImpl.js +73 -0
  375. package/dist/embedding/EmbeddingServiceImpl.js.map +1 -0
  376. package/dist/embedding/EmbeddingServiceImpl.jsonld +53 -0
  377. package/dist/embedding/ProviderRegistry.d.ts +26 -0
  378. package/dist/embedding/ProviderRegistry.js +10 -0
  379. package/dist/embedding/ProviderRegistry.js.map +1 -0
  380. package/dist/embedding/ProviderRegistry.jsonld +30 -0
  381. package/dist/embedding/ProviderRegistryImpl.d.ts +14 -0
  382. package/dist/embedding/ProviderRegistryImpl.js +112 -0
  383. package/dist/embedding/ProviderRegistryImpl.js.map +1 -0
  384. package/dist/embedding/ProviderRegistryImpl.jsonld +40 -0
  385. package/dist/embedding/index.d.ts +5 -0
  386. package/dist/embedding/index.js +22 -0
  387. package/dist/embedding/index.js.map +1 -0
  388. package/dist/embedding/schema/index.d.ts +1 -0
  389. package/dist/embedding/schema/index.js +18 -0
  390. package/dist/embedding/schema/index.js.map +1 -0
  391. package/dist/embedding/schema/tables.d.ts +70 -0
  392. package/dist/embedding/schema/tables.js +102 -0
  393. package/dist/embedding/schema/tables.js.map +1 -0
  394. package/dist/embedding/types.d.ts +12 -0
  395. package/dist/embedding/types.js +6 -0
  396. package/dist/embedding/types.js.map +1 -0
  397. package/dist/gateway/port-finder.d.ts +4 -0
  398. package/dist/gateway/port-finder.js +15 -0
  399. package/dist/gateway/port-finder.js.map +1 -0
  400. package/dist/gateway/proxy.d.ts +22 -0
  401. package/dist/gateway/proxy.js +149 -0
  402. package/dist/gateway/proxy.js.map +1 -0
  403. package/dist/gateway/supervisor.d.ts +2 -0
  404. package/dist/gateway/supervisor.js +7 -0
  405. package/dist/gateway/supervisor.js.map +1 -0
  406. package/dist/gateway/types.d.ts +1 -0
  407. package/dist/gateway/types.js +3 -0
  408. package/dist/gateway/types.js.map +1 -0
  409. package/dist/http/AppStaticAssetHandler.d.ts +8 -0
  410. package/dist/http/AppStaticAssetHandler.js +27 -0
  411. package/dist/http/AppStaticAssetHandler.js.map +1 -0
  412. package/dist/http/AppStaticAssetHandler.jsonld +26 -0
  413. package/dist/http/ClusterIngressRouter.d.ts +93 -0
  414. package/dist/http/ClusterIngressRouter.js +355 -0
  415. package/dist/http/ClusterIngressRouter.js.map +1 -0
  416. package/dist/http/ClusterIngressRouter.jsonld +227 -0
  417. package/dist/http/ClusterWebSocketConfigurator.d.ts +59 -0
  418. package/dist/http/ClusterWebSocketConfigurator.js +226 -0
  419. package/dist/http/ClusterWebSocketConfigurator.js.map +1 -0
  420. package/dist/http/ClusterWebSocketConfigurator.jsonld +145 -0
  421. package/dist/http/EdgeNodeDirectDebugHttpHandler.d.ts +25 -0
  422. package/dist/http/EdgeNodeDirectDebugHttpHandler.js +126 -0
  423. package/dist/http/EdgeNodeDirectDebugHttpHandler.js.map +1 -0
  424. package/dist/http/EdgeNodeDirectDebugHttpHandler.jsonld +151 -0
  425. package/dist/http/EdgeNodeProxyHttpHandler.d.ts +28 -0
  426. package/dist/http/EdgeNodeProxyHttpHandler.js +190 -0
  427. package/dist/http/EdgeNodeProxyHttpHandler.js.map +1 -0
  428. package/dist/http/EdgeNodeProxyHttpHandler.jsonld +162 -0
  429. package/dist/http/PodRoutingHttpHandler.d.ts +64 -0
  430. package/dist/http/PodRoutingHttpHandler.js +233 -0
  431. package/dist/http/PodRoutingHttpHandler.js.map +1 -0
  432. package/dist/http/PodRoutingHttpHandler.jsonld +171 -0
  433. package/dist/http/RequestIdHttpHandler.d.ts +15 -0
  434. package/dist/http/RequestIdHttpHandler.js +59 -0
  435. package/dist/http/RequestIdHttpHandler.js.map +1 -0
  436. package/dist/http/RouterHttpHandler.d.ts +21 -0
  437. package/dist/http/RouterHttpHandler.js +49 -0
  438. package/dist/http/RouterHttpHandler.js.map +1 -0
  439. package/dist/http/RouterHttpHandler.jsonld +80 -0
  440. package/dist/http/RouterHttpRoute.d.ts +6 -0
  441. package/dist/http/RouterHttpRoute.js +11 -0
  442. package/dist/http/RouterHttpRoute.js.map +1 -0
  443. package/dist/http/RouterHttpRoute.jsonld +48 -0
  444. package/dist/http/SignalInterceptHttpHandler.d.ts +24 -0
  445. package/dist/http/SignalInterceptHttpHandler.js +47 -0
  446. package/dist/http/SignalInterceptHttpHandler.js.map +1 -0
  447. package/dist/http/SignalInterceptHttpHandler.jsonld +103 -0
  448. package/dist/http/SubgraphSparqlHttpHandler.d.ts +70 -0
  449. package/dist/http/SubgraphSparqlHttpHandler.js +640 -0
  450. package/dist/http/SubgraphSparqlHttpHandler.js.map +1 -0
  451. package/dist/http/SubgraphSparqlHttpHandler.jsonld +363 -0
  452. package/dist/http/TracingHandler.d.ts +19 -0
  453. package/dist/http/TracingHandler.js +60 -0
  454. package/dist/http/TracingHandler.js.map +1 -0
  455. package/dist/http/TracingHandler.jsonld +37 -0
  456. package/dist/http/admin/EdgeNodeAdminHttpHandler.d.ts +45 -0
  457. package/dist/http/admin/EdgeNodeAdminHttpHandler.js +292 -0
  458. package/dist/http/admin/EdgeNodeAdminHttpHandler.js.map +1 -0
  459. package/dist/http/admin/EdgeNodeCertificateHttpHandler.d.ts +33 -0
  460. package/dist/http/admin/EdgeNodeCertificateHttpHandler.js +172 -0
  461. package/dist/http/admin/EdgeNodeCertificateHttpHandler.js.map +1 -0
  462. package/dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld +182 -0
  463. package/dist/http/admin/EdgeNodeSignalHttpHandler.d.ts +71 -0
  464. package/dist/http/admin/EdgeNodeSignalHttpHandler.js +674 -0
  465. package/dist/http/admin/EdgeNodeSignalHttpHandler.js.map +1 -0
  466. package/dist/http/admin/EdgeNodeSignalHttpHandler.jsonld +406 -0
  467. package/dist/http/cluster/PodMigrationHttpHandler.d.ts +52 -0
  468. package/dist/http/cluster/PodMigrationHttpHandler.js +208 -0
  469. package/dist/http/cluster/PodMigrationHttpHandler.js.map +1 -0
  470. package/dist/http/cluster/PodMigrationHttpHandler.jsonld +169 -0
  471. package/dist/http/quota/QuotaAdminHttpHandler.d.ts +34 -0
  472. package/dist/http/quota/QuotaAdminHttpHandler.js +241 -0
  473. package/dist/http/quota/QuotaAdminHttpHandler.js.map +1 -0
  474. package/dist/http/quota/QuotaAdminHttpHandler.jsonld +171 -0
  475. package/dist/http/search/SearchHttpHandler.d.ts +59 -0
  476. package/dist/http/search/SearchHttpHandler.js +312 -0
  477. package/dist/http/search/SearchHttpHandler.js.map +1 -0
  478. package/dist/http/search/index.d.ts +1 -0
  479. package/dist/http/search/index.js +18 -0
  480. package/dist/http/search/index.js.map +1 -0
  481. package/dist/http/terminal/TerminalHttpHandler.d.ts +45 -0
  482. package/dist/http/terminal/TerminalHttpHandler.js +306 -0
  483. package/dist/http/terminal/TerminalHttpHandler.js.map +1 -0
  484. package/dist/http/terminal/TerminalHttpHandler.jsonld +232 -0
  485. package/dist/http/terminal/index.d.ts +1 -0
  486. package/dist/http/terminal/index.js +18 -0
  487. package/dist/http/terminal/index.js.map +1 -0
  488. package/dist/http/vector/VectorHttpHandler.d.ts +42 -0
  489. package/dist/http/vector/VectorHttpHandler.js +301 -0
  490. package/dist/http/vector/VectorHttpHandler.js.map +1 -0
  491. package/dist/http/vector/VectorHttpHandler.jsonld +157 -0
  492. package/dist/http/vector/index.d.ts +1 -0
  493. package/dist/http/vector/index.js +18 -0
  494. package/dist/http/vector/index.js.map +1 -0
  495. package/dist/ice/IceServerProvider.d.ts +85 -0
  496. package/dist/ice/IceServerProvider.js +122 -0
  497. package/dist/ice/IceServerProvider.js.map +1 -0
  498. package/dist/ice/index.d.ts +8 -0
  499. package/dist/ice/index.js +25 -0
  500. package/dist/ice/index.js.map +1 -0
  501. package/dist/identity/CenterNodeRegistrationService.d.ts +102 -0
  502. package/dist/identity/CenterNodeRegistrationService.js +266 -0
  503. package/dist/identity/CenterNodeRegistrationService.js.map +1 -0
  504. package/dist/identity/CenterNodeRegistrationService.jsonld +251 -0
  505. package/dist/identity/ReactAppViewHandler.d.ts +31 -0
  506. package/dist/identity/ReactAppViewHandler.js +79 -0
  507. package/dist/identity/ReactAppViewHandler.js.map +1 -0
  508. package/dist/identity/ReactAppViewHandler.jsonld +99 -0
  509. package/dist/identity/drizzle/AccountRepository.d.ts +31 -0
  510. package/dist/identity/drizzle/AccountRepository.js +130 -0
  511. package/dist/identity/drizzle/AccountRepository.js.map +1 -0
  512. package/dist/identity/drizzle/AccountRoleRepository.d.ts +23 -0
  513. package/dist/identity/drizzle/AccountRoleRepository.js +233 -0
  514. package/dist/identity/drizzle/AccountRoleRepository.js.map +1 -0
  515. package/dist/identity/drizzle/DdnsRepository.d.ts +87 -0
  516. package/dist/identity/drizzle/DdnsRepository.js +284 -0
  517. package/dist/identity/drizzle/DdnsRepository.js.map +1 -0
  518. package/dist/identity/drizzle/DrizzleIndexedStorage.d.ts +26 -0
  519. package/dist/identity/drizzle/DrizzleIndexedStorage.js +159 -0
  520. package/dist/identity/drizzle/DrizzleIndexedStorage.js.map +1 -0
  521. package/dist/identity/drizzle/DrizzleIndexedStorage.jsonld +130 -0
  522. package/dist/identity/drizzle/EdgeNodeRepository.d.ts +155 -0
  523. package/dist/identity/drizzle/EdgeNodeRepository.js +555 -0
  524. package/dist/identity/drizzle/EdgeNodeRepository.js.map +1 -0
  525. package/dist/identity/drizzle/PodLookupRepository.d.ts +59 -0
  526. package/dist/identity/drizzle/PodLookupRepository.js +153 -0
  527. package/dist/identity/drizzle/PodLookupRepository.js.map +1 -0
  528. package/dist/identity/drizzle/WebIdProfileRepository.d.ts +58 -0
  529. package/dist/identity/drizzle/WebIdProfileRepository.js +157 -0
  530. package/dist/identity/drizzle/WebIdProfileRepository.js.map +1 -0
  531. package/dist/identity/drizzle/db.d.ts +60 -0
  532. package/dist/identity/drizzle/db.js +269 -0
  533. package/dist/identity/drizzle/db.js.map +1 -0
  534. package/dist/identity/drizzle/schema.d.ts +1 -0
  535. package/dist/identity/drizzle/schema.js +20 -0
  536. package/dist/identity/drizzle/schema.js.map +1 -0
  537. package/dist/identity/drizzle/schema.pg.d.ts +20 -0
  538. package/dist/identity/drizzle/schema.pg.js +103 -0
  539. package/dist/identity/drizzle/schema.pg.js.map +1 -0
  540. package/dist/identity/drizzle/schema.sqlite.d.ts +872 -0
  541. package/dist/identity/drizzle/schema.sqlite.js +100 -0
  542. package/dist/identity/drizzle/schema.sqlite.js.map +1 -0
  543. package/dist/identity/oidc/AutoDetectIdentityProviderHandler.d.ts +43 -0
  544. package/dist/identity/oidc/AutoDetectIdentityProviderHandler.js +92 -0
  545. package/dist/identity/oidc/AutoDetectIdentityProviderHandler.js.map +1 -0
  546. package/dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld +122 -0
  547. package/dist/identity/oidc/AutoDetectOidcHandler.d.ts +55 -0
  548. package/dist/identity/oidc/AutoDetectOidcHandler.js +137 -0
  549. package/dist/identity/oidc/AutoDetectOidcHandler.js.map +1 -0
  550. package/dist/identity/oidc/AutoDetectOidcHandler.jsonld +138 -0
  551. package/dist/identity/oidc/DisabledIdentityProviderHandler.d.ts +51 -0
  552. package/dist/identity/oidc/DisabledIdentityProviderHandler.js +104 -0
  553. package/dist/identity/oidc/DisabledIdentityProviderHandler.js.map +1 -0
  554. package/dist/identity/oidc/DisabledIdentityProviderHandler.jsonld +111 -0
  555. package/dist/identity/oidc/DisabledOidcHandler.d.ts +55 -0
  556. package/dist/identity/oidc/DisabledOidcHandler.js +132 -0
  557. package/dist/identity/oidc/DisabledOidcHandler.js.map +1 -0
  558. package/dist/identity/oidc/DisabledOidcHandler.jsonld +157 -0
  559. package/dist/index.d.ts +80 -0
  560. package/dist/index.js +155 -0
  561. package/dist/index.js.map +1 -0
  562. package/dist/legacy/DrizzleClientCredentialsStore.d.ts +51 -0
  563. package/dist/legacy/DrizzleClientCredentialsStore.js +142 -0
  564. package/dist/legacy/DrizzleClientCredentialsStore.js.map +1 -0
  565. package/dist/legacy/DrizzleIndexedStorage.d.ts +26 -0
  566. package/dist/legacy/DrizzleIndexedStorage.js +159 -0
  567. package/dist/legacy/DrizzleIndexedStorage.js.map +1 -0
  568. package/dist/legacy/DrizzleQuotaService.d.ts +16 -0
  569. package/dist/legacy/DrizzleQuotaService.js +37 -0
  570. package/dist/legacy/DrizzleQuotaService.js.map +1 -0
  571. package/dist/libs/backends/index.d.ts +6 -0
  572. package/dist/libs/backends/index.js +31 -0
  573. package/dist/libs/backends/index.js.map +1 -0
  574. package/dist/libs/backends/sqlup.d.ts +44 -0
  575. package/dist/libs/backends/sqlup.js +437 -0
  576. package/dist/libs/backends/sqlup.js.map +1 -0
  577. package/dist/logging/ConfigurableLoggerFactory.d.ts +24 -0
  578. package/dist/logging/ConfigurableLoggerFactory.js +77 -0
  579. package/dist/logging/ConfigurableLoggerFactory.js.map +1 -0
  580. package/dist/logging/ConfigurableLoggerFactory.jsonld +169 -0
  581. package/dist/logging/LogContext.d.ts +5 -0
  582. package/dist/logging/LogContext.js +6 -0
  583. package/dist/logging/LogContext.js.map +1 -0
  584. package/dist/main.d.ts +2 -0
  585. package/dist/main.js +148 -0
  586. package/dist/main.js.map +1 -0
  587. package/dist/network/LocalNetworkDetector.d.ts +65 -0
  588. package/dist/network/LocalNetworkDetector.js +185 -0
  589. package/dist/network/LocalNetworkDetector.js.map +1 -0
  590. package/dist/network/index.d.ts +4 -0
  591. package/dist/network/index.js +21 -0
  592. package/dist/network/index.js.map +1 -0
  593. package/dist/pods/ReservedSuffixIdentifierGenerator.d.ts +13 -0
  594. package/dist/pods/ReservedSuffixIdentifierGenerator.js +26 -0
  595. package/dist/pods/ReservedSuffixIdentifierGenerator.js.map +1 -0
  596. package/dist/pods/ReservedSuffixIdentifierGenerator.jsonld +75 -0
  597. package/dist/quota/DefaultQuotaService.d.ts +16 -0
  598. package/dist/quota/DefaultQuotaService.js +37 -0
  599. package/dist/quota/DefaultQuotaService.js.map +1 -0
  600. package/dist/quota/DefaultQuotaService.jsonld +85 -0
  601. package/dist/quota/DrizzleQuotaService.d.ts +16 -0
  602. package/dist/quota/DrizzleQuotaService.js +37 -0
  603. package/dist/quota/DrizzleQuotaService.js.map +1 -0
  604. package/dist/quota/DrizzleQuotaService.jsonld +87 -0
  605. package/dist/quota/NoopQuotaService.d.ts +7 -0
  606. package/dist/quota/NoopQuotaService.js +15 -0
  607. package/dist/quota/NoopQuotaService.js.map +1 -0
  608. package/dist/quota/NoopQuotaService.jsonld +36 -0
  609. package/dist/quota/QuotaService.d.ts +6 -0
  610. package/dist/quota/QuotaService.js +3 -0
  611. package/dist/quota/QuotaService.js.map +1 -0
  612. package/dist/quota/QuotaService.jsonld +33 -0
  613. package/dist/sdk/SignalingClientAdapter.d.ts +38 -0
  614. package/dist/sdk/SignalingClientAdapter.js +99 -0
  615. package/dist/sdk/SignalingClientAdapter.js.map +1 -0
  616. package/dist/sdk/createFetch.d.ts +23 -0
  617. package/dist/sdk/createFetch.js +258 -0
  618. package/dist/sdk/createFetch.js.map +1 -0
  619. package/dist/sdk/index.d.ts +29 -0
  620. package/dist/sdk/index.js +34 -0
  621. package/dist/sdk/index.js.map +1 -0
  622. package/dist/sdk/xpodFetch.d.ts +112 -0
  623. package/dist/sdk/xpodFetch.js +251 -0
  624. package/dist/sdk/xpodFetch.js.map +1 -0
  625. package/dist/service/EdgeNodeCertificateService.d.ts +45 -0
  626. package/dist/service/EdgeNodeCertificateService.js +164 -0
  627. package/dist/service/EdgeNodeCertificateService.js.map +1 -0
  628. package/dist/service/EdgeNodeCertificateService.jsonld +216 -0
  629. package/dist/service/EdgeNodeHeartbeatService.d.ts +68 -0
  630. package/dist/service/EdgeNodeHeartbeatService.js +262 -0
  631. package/dist/service/EdgeNodeHeartbeatService.js.map +1 -0
  632. package/dist/service/PodMigrationService.d.ts +43 -0
  633. package/dist/service/PodMigrationService.js +72 -0
  634. package/dist/service/PodMigrationService.js.map +1 -0
  635. package/dist/service/PodMigrationService.jsonld +76 -0
  636. package/dist/signaling/SignalingClient.d.ts +142 -0
  637. package/dist/signaling/SignalingClient.js +305 -0
  638. package/dist/signaling/SignalingClient.js.map +1 -0
  639. package/dist/signaling/SignalingService.d.ts +104 -0
  640. package/dist/signaling/SignalingService.js +440 -0
  641. package/dist/signaling/SignalingService.js.map +1 -0
  642. package/dist/signaling/index.d.ts +11 -0
  643. package/dist/signaling/index.js +28 -0
  644. package/dist/signaling/index.js.map +1 -0
  645. package/dist/signaling/types.d.ts +237 -0
  646. package/dist/signaling/types.js +18 -0
  647. package/dist/signaling/types.js.map +1 -0
  648. package/dist/storage/DrizzleCompat.d.ts +15 -0
  649. package/dist/storage/DrizzleCompat.js +60 -0
  650. package/dist/storage/DrizzleCompat.js.map +1 -0
  651. package/dist/storage/LockingResourceStore.d.ts +8 -0
  652. package/dist/storage/LockingResourceStore.js +68 -0
  653. package/dist/storage/LockingResourceStore.js.map +1 -0
  654. package/dist/storage/MigratableDataAccessor.d.ts +63 -0
  655. package/dist/storage/MigratableDataAccessor.js +11 -0
  656. package/dist/storage/MigratableDataAccessor.js.map +1 -0
  657. package/dist/storage/MigratableDataAccessor.jsonld +60 -0
  658. package/dist/storage/ObservableResourceStore.d.ts +89 -0
  659. package/dist/storage/ObservableResourceStore.js +125 -0
  660. package/dist/storage/ObservableResourceStore.js.map +1 -0
  661. package/dist/storage/RepresentationPartialConvertingStore.d.ts +22 -0
  662. package/dist/storage/RepresentationPartialConvertingStore.js +94 -0
  663. package/dist/storage/RepresentationPartialConvertingStore.js.map +1 -0
  664. package/dist/storage/RepresentationPartialConvertingStore.jsonld +332 -0
  665. package/dist/storage/SparqlUpdateResourceStore.d.ts +30 -0
  666. package/dist/storage/SparqlUpdateResourceStore.js +292 -0
  667. package/dist/storage/SparqlUpdateResourceStore.js.map +1 -0
  668. package/dist/storage/SparqlUpdateResourceStore.jsonld +112 -0
  669. package/dist/storage/SqliteCompat.d.ts +60 -0
  670. package/dist/storage/SqliteCompat.js +158 -0
  671. package/dist/storage/SqliteCompat.js.map +1 -0
  672. package/dist/storage/accessors/MinioDataAccessor.d.ts +127 -0
  673. package/dist/storage/accessors/MinioDataAccessor.js +249 -0
  674. package/dist/storage/accessors/MinioDataAccessor.js.map +1 -0
  675. package/dist/storage/accessors/MinioDataAccessor.jsonld +138 -0
  676. package/dist/storage/accessors/MixDataAccessor.d.ts +43 -0
  677. package/dist/storage/accessors/MixDataAccessor.js +130 -0
  678. package/dist/storage/accessors/MixDataAccessor.js.map +1 -0
  679. package/dist/storage/accessors/MixDataAccessor.jsonld +101 -0
  680. package/dist/storage/accessors/QuadstoreSparqlDataAccessor.d.ts +146 -0
  681. package/dist/storage/accessors/QuadstoreSparqlDataAccessor.js +415 -0
  682. package/dist/storage/accessors/QuadstoreSparqlDataAccessor.js.map +1 -0
  683. package/dist/storage/accessors/QuadstoreSparqlDataAccessor.jsonld +180 -0
  684. package/dist/storage/accessors/QuintStoreSparqlDataAccessor.d.ts +95 -0
  685. package/dist/storage/accessors/QuintStoreSparqlDataAccessor.js +376 -0
  686. package/dist/storage/accessors/QuintStoreSparqlDataAccessor.js.map +1 -0
  687. package/dist/storage/accessors/QuintStoreSparqlDataAccessor.jsonld +168 -0
  688. package/dist/storage/accessors/TieredMinioDataAccessor.d.ts +150 -0
  689. package/dist/storage/accessors/TieredMinioDataAccessor.js +582 -0
  690. package/dist/storage/accessors/TieredMinioDataAccessor.js.map +1 -0
  691. package/dist/storage/accessors/TieredMinioDataAccessor.jsonld +333 -0
  692. package/dist/storage/database/PostgresPoolManager.d.ts +56 -0
  693. package/dist/storage/database/PostgresPoolManager.js +117 -0
  694. package/dist/storage/database/PostgresPoolManager.js.map +1 -0
  695. package/dist/storage/keyvalue/PostgresKeyValueStorage.d.ts +34 -0
  696. package/dist/storage/keyvalue/PostgresKeyValueStorage.js +146 -0
  697. package/dist/storage/keyvalue/PostgresKeyValueStorage.js.map +1 -0
  698. package/dist/storage/keyvalue/PostgresKeyValueStorage.jsonld +192 -0
  699. package/dist/storage/keyvalue/RedisKeyValueStorage.d.ts +30 -0
  700. package/dist/storage/keyvalue/RedisKeyValueStorage.js +133 -0
  701. package/dist/storage/keyvalue/RedisKeyValueStorage.js.map +1 -0
  702. package/dist/storage/keyvalue/RedisKeyValueStorage.jsonld +237 -0
  703. package/dist/storage/keyvalue/SqliteKeyValueStorage.d.ts +30 -0
  704. package/dist/storage/keyvalue/SqliteKeyValueStorage.js +164 -0
  705. package/dist/storage/keyvalue/SqliteKeyValueStorage.js.map +1 -0
  706. package/dist/storage/keyvalue/SqliteKeyValueStorage.jsonld +167 -0
  707. package/dist/storage/quint/BaseQuintStore.d.ts +80 -0
  708. package/dist/storage/quint/BaseQuintStore.js +535 -0
  709. package/dist/storage/quint/BaseQuintStore.js.map +1 -0
  710. package/dist/storage/quint/BaseQuintStore.jsonld +175 -0
  711. package/dist/storage/quint/PgQuintStore.d.ts +61 -0
  712. package/dist/storage/quint/PgQuintStore.drizzle.d.ts +45 -0
  713. package/dist/storage/quint/PgQuintStore.drizzle.js +327 -0
  714. package/dist/storage/quint/PgQuintStore.drizzle.js.map +1 -0
  715. package/dist/storage/quint/PgQuintStore.js +275 -0
  716. package/dist/storage/quint/PgQuintStore.js.map +1 -0
  717. package/dist/storage/quint/PgQuintStore.jsonld +258 -0
  718. package/dist/storage/quint/SqliteQuintStore.d.ts +55 -0
  719. package/dist/storage/quint/SqliteQuintStore.js +630 -0
  720. package/dist/storage/quint/SqliteQuintStore.js.map +1 -0
  721. package/dist/storage/quint/SqliteQuintStore.jsonld +157 -0
  722. package/dist/storage/quint/index.d.ts +11 -0
  723. package/dist/storage/quint/index.js +30 -0
  724. package/dist/storage/quint/index.js.map +1 -0
  725. package/dist/storage/quint/schema.d.ts +82 -0
  726. package/dist/storage/quint/schema.js +33 -0
  727. package/dist/storage/quint/schema.js.map +1 -0
  728. package/dist/storage/quint/serialization.d.ts +56 -0
  729. package/dist/storage/quint/serialization.js +198 -0
  730. package/dist/storage/quint/serialization.js.map +1 -0
  731. package/dist/storage/quint/types.d.ts +152 -0
  732. package/dist/storage/quint/types.js +27 -0
  733. package/dist/storage/quint/types.js.map +1 -0
  734. package/dist/storage/quint/types.jsonld +78 -0
  735. package/dist/storage/quota/PerAccountQuotaStrategy.d.ts +19 -0
  736. package/dist/storage/quota/PerAccountQuotaStrategy.js +63 -0
  737. package/dist/storage/quota/PerAccountQuotaStrategy.js.map +1 -0
  738. package/dist/storage/quota/PerAccountQuotaStrategy.jsonld +113 -0
  739. package/dist/storage/quota/UsageRepository.d.ts +46 -0
  740. package/dist/storage/quota/UsageRepository.js +278 -0
  741. package/dist/storage/quota/UsageRepository.js.map +1 -0
  742. package/dist/storage/quota/UsageTrackingStore.d.ts +37 -0
  743. package/dist/storage/quota/UsageTrackingStore.js +355 -0
  744. package/dist/storage/quota/UsageTrackingStore.js.map +1 -0
  745. package/dist/storage/quota/UsageTrackingStore.jsonld +193 -0
  746. package/dist/storage/sparql/AlgebraUtils.d.ts +48 -0
  747. package/dist/storage/sparql/AlgebraUtils.js +118 -0
  748. package/dist/storage/sparql/AlgebraUtils.js.map +1 -0
  749. package/dist/storage/sparql/ComunicaOptimizedEngine.d.ts +59 -0
  750. package/dist/storage/sparql/ComunicaOptimizedEngine.js +254 -0
  751. package/dist/storage/sparql/ComunicaOptimizedEngine.js.map +1 -0
  752. package/dist/storage/sparql/ComunicaQuintEngine.d.ts +134 -0
  753. package/dist/storage/sparql/ComunicaQuintEngine.js +727 -0
  754. package/dist/storage/sparql/ComunicaQuintEngine.js.map +1 -0
  755. package/dist/storage/sparql/ExpressionEvaluator.d.ts +54 -0
  756. package/dist/storage/sparql/ExpressionEvaluator.js +340 -0
  757. package/dist/storage/sparql/ExpressionEvaluator.js.map +1 -0
  758. package/dist/storage/sparql/FilterPushdownExtractor.d.ts +74 -0
  759. package/dist/storage/sparql/FilterPushdownExtractor.js +409 -0
  760. package/dist/storage/sparql/FilterPushdownExtractor.js.map +1 -0
  761. package/dist/storage/sparql/OptimizedQuadstoreEngine.d.ts +65 -0
  762. package/dist/storage/sparql/OptimizedQuadstoreEngine.js +327 -0
  763. package/dist/storage/sparql/OptimizedQuadstoreEngine.js.map +1 -0
  764. package/dist/storage/sparql/OptimizedQuadstoreSource.d.ts +46 -0
  765. package/dist/storage/sparql/OptimizedQuadstoreSource.js +118 -0
  766. package/dist/storage/sparql/OptimizedQuadstoreSource.js.map +1 -0
  767. package/dist/storage/sparql/PatternBuilder.d.ts +41 -0
  768. package/dist/storage/sparql/PatternBuilder.js +118 -0
  769. package/dist/storage/sparql/PatternBuilder.js.map +1 -0
  770. package/dist/storage/sparql/QueryOptimizer.d.ts +125 -0
  771. package/dist/storage/sparql/QueryOptimizer.js +363 -0
  772. package/dist/storage/sparql/QueryOptimizer.js.map +1 -0
  773. package/dist/storage/sparql/QuintEngine.d.ts +92 -0
  774. package/dist/storage/sparql/QuintEngine.js +150 -0
  775. package/dist/storage/sparql/QuintEngine.js.map +1 -0
  776. package/dist/storage/sparql/QuintQuerySource.d.ts +227 -0
  777. package/dist/storage/sparql/QuintQuerySource.js +918 -0
  778. package/dist/storage/sparql/QuintQuerySource.js.map +1 -0
  779. package/dist/storage/sparql/SimpleSparqlExecutor.d.ts +40 -0
  780. package/dist/storage/sparql/SimpleSparqlExecutor.js +131 -0
  781. package/dist/storage/sparql/SimpleSparqlExecutor.js.map +1 -0
  782. package/dist/storage/sparql/SubgraphQueryEngine.d.ts +74 -0
  783. package/dist/storage/sparql/SubgraphQueryEngine.js +248 -0
  784. package/dist/storage/sparql/SubgraphQueryEngine.js.map +1 -0
  785. package/dist/storage/sparql/SubgraphQueryEngine.jsonld +250 -0
  786. package/dist/storage/vector/PostgresVectorStore.d.ts +46 -0
  787. package/dist/storage/vector/PostgresVectorStore.js +291 -0
  788. package/dist/storage/vector/PostgresVectorStore.js.map +1 -0
  789. package/dist/storage/vector/PostgresVectorStore.jsonld +142 -0
  790. package/dist/storage/vector/SqliteVectorStore.d.ts +44 -0
  791. package/dist/storage/vector/SqliteVectorStore.js +282 -0
  792. package/dist/storage/vector/SqliteVectorStore.js.map +1 -0
  793. package/dist/storage/vector/SqliteVectorStore.jsonld +137 -0
  794. package/dist/storage/vector/VectorIndexingListener.d.ts +114 -0
  795. package/dist/storage/vector/VectorIndexingListener.js +351 -0
  796. package/dist/storage/vector/VectorIndexingListener.js.map +1 -0
  797. package/dist/storage/vector/VectorStore.d.ts +42 -0
  798. package/dist/storage/vector/VectorStore.js +50 -0
  799. package/dist/storage/vector/VectorStore.js.map +1 -0
  800. package/dist/storage/vector/VectorStore.jsonld +87 -0
  801. package/dist/storage/vector/VectorStoreInit.d.ts +28 -0
  802. package/dist/storage/vector/VectorStoreInit.js +104 -0
  803. package/dist/storage/vector/VectorStoreInit.js.map +1 -0
  804. package/dist/storage/vector/index.d.ts +5 -0
  805. package/dist/storage/vector/index.js +22 -0
  806. package/dist/storage/vector/index.js.map +1 -0
  807. package/dist/storage/vector/types.d.ts +39 -0
  808. package/dist/storage/vector/types.js +8 -0
  809. package/dist/storage/vector/types.js.map +1 -0
  810. package/dist/subdomain/SubdomainClient.d.ts +156 -0
  811. package/dist/subdomain/SubdomainClient.js +220 -0
  812. package/dist/subdomain/SubdomainClient.js.map +1 -0
  813. package/dist/subdomain/SubdomainService.d.ts +114 -0
  814. package/dist/subdomain/SubdomainService.js +212 -0
  815. package/dist/subdomain/SubdomainService.js.map +1 -0
  816. package/dist/subdomain/SubdomainService.jsonld +261 -0
  817. package/dist/subdomain/index.d.ts +2 -0
  818. package/dist/subdomain/index.js +9 -0
  819. package/dist/subdomain/index.js.map +1 -0
  820. package/dist/supervisor/Supervisor.d.ts +20 -0
  821. package/dist/supervisor/Supervisor.js +174 -0
  822. package/dist/supervisor/Supervisor.js.map +1 -0
  823. package/dist/supervisor/index.d.ts +2 -0
  824. package/dist/supervisor/index.js +6 -0
  825. package/dist/supervisor/index.js.map +1 -0
  826. package/dist/supervisor/types.d.ts +19 -0
  827. package/dist/supervisor/types.js +3 -0
  828. package/dist/supervisor/types.js.map +1 -0
  829. package/dist/task/DrizzleTaskQueue.d.ts +60 -0
  830. package/dist/task/DrizzleTaskQueue.js +171 -0
  831. package/dist/task/DrizzleTaskQueue.js.map +1 -0
  832. package/dist/task/TaskExecutor.d.ts +82 -0
  833. package/dist/task/TaskExecutor.js +198 -0
  834. package/dist/task/TaskExecutor.js.map +1 -0
  835. package/dist/task/index.d.ts +10 -0
  836. package/dist/task/index.js +20 -0
  837. package/dist/task/index.js.map +1 -0
  838. package/dist/task/schema.d.ts +53 -0
  839. package/dist/task/schema.js +71 -0
  840. package/dist/task/schema.js.map +1 -0
  841. package/dist/task/types.d.ts +186 -0
  842. package/dist/task/types.js +12 -0
  843. package/dist/task/types.js.map +1 -0
  844. package/dist/terminal/AclPermissionService.d.ts +28 -0
  845. package/dist/terminal/AclPermissionService.js +141 -0
  846. package/dist/terminal/AclPermissionService.js.map +1 -0
  847. package/dist/terminal/BubblewrapSandbox.d.ts +51 -0
  848. package/dist/terminal/BubblewrapSandbox.js +147 -0
  849. package/dist/terminal/BubblewrapSandbox.js.map +1 -0
  850. package/dist/terminal/TerminalSession.d.ts +33 -0
  851. package/dist/terminal/TerminalSession.js +164 -0
  852. package/dist/terminal/TerminalSession.js.map +1 -0
  853. package/dist/terminal/TerminalSessionManager.d.ts +69 -0
  854. package/dist/terminal/TerminalSessionManager.js +196 -0
  855. package/dist/terminal/TerminalSessionManager.js.map +1 -0
  856. package/dist/terminal/index.d.ts +5 -0
  857. package/dist/terminal/index.js +22 -0
  858. package/dist/terminal/index.js.map +1 -0
  859. package/dist/terminal/sandbox/BubblewrapSandbox.d.ts +8 -0
  860. package/dist/terminal/sandbox/BubblewrapSandbox.js +105 -0
  861. package/dist/terminal/sandbox/BubblewrapSandbox.js.map +1 -0
  862. package/dist/terminal/sandbox/MacOSSandbox.d.ts +19 -0
  863. package/dist/terminal/sandbox/MacOSSandbox.js +120 -0
  864. package/dist/terminal/sandbox/MacOSSandbox.js.map +1 -0
  865. package/dist/terminal/sandbox/index.d.ts +29 -0
  866. package/dist/terminal/sandbox/index.js +113 -0
  867. package/dist/terminal/sandbox/index.js.map +1 -0
  868. package/dist/terminal/sandbox/types.d.ts +38 -0
  869. package/dist/terminal/sandbox/types.js +3 -0
  870. package/dist/terminal/sandbox/types.js.map +1 -0
  871. package/dist/terminal/types.d.ts +80 -0
  872. package/dist/terminal/types.js +16 -0
  873. package/dist/terminal/types.js.map +1 -0
  874. package/dist/tunnel/CloudflareTunnelProvider.d.ts +120 -0
  875. package/dist/tunnel/CloudflareTunnelProvider.js +376 -0
  876. package/dist/tunnel/CloudflareTunnelProvider.js.map +1 -0
  877. package/dist/tunnel/CloudflareTunnelProvider.jsonld +204 -0
  878. package/dist/tunnel/LocalTunnelProvider.d.ts +85 -0
  879. package/dist/tunnel/LocalTunnelProvider.js +295 -0
  880. package/dist/tunnel/LocalTunnelProvider.js.map +1 -0
  881. package/dist/tunnel/LocalTunnelProvider.jsonld +142 -0
  882. package/dist/tunnel/SakuraFrpTunnelProvider.d.ts +59 -0
  883. package/dist/tunnel/SakuraFrpTunnelProvider.js +207 -0
  884. package/dist/tunnel/SakuraFrpTunnelProvider.js.map +1 -0
  885. package/dist/tunnel/TunnelProvider.d.ts +91 -0
  886. package/dist/tunnel/TunnelProvider.js +10 -0
  887. package/dist/tunnel/TunnelProvider.js.map +1 -0
  888. package/dist/tunnel/TunnelProvider.jsonld +144 -0
  889. package/dist/tunnel/index.d.ts +3 -0
  890. package/dist/tunnel/index.js +8 -0
  891. package/dist/tunnel/index.js.map +1 -0
  892. package/dist/util/LockContext.d.ts +3 -0
  893. package/dist/util/LockContext.js +6 -0
  894. package/dist/util/LockContext.js.map +1 -0
  895. package/dist/util/ResourceStoreFetch.d.ts +11 -0
  896. package/dist/util/ResourceStoreFetch.js +147 -0
  897. package/dist/util/ResourceStoreFetch.js.map +1 -0
  898. package/dist/util/database/DatabaseMaintenance.d.ts +23 -0
  899. package/dist/util/database/DatabaseMaintenance.js +82 -0
  900. package/dist/util/database/DatabaseMaintenance.js.map +1 -0
  901. package/dist/util/identifiers/ClusterIdentifierStrategy.d.ts +23 -0
  902. package/dist/util/identifiers/ClusterIdentifierStrategy.js +73 -0
  903. package/dist/util/identifiers/ClusterIdentifierStrategy.js.map +1 -0
  904. package/dist/util/identifiers/ClusterIdentifierStrategy.jsonld +90 -0
  905. package/dist/util/identifiers/MultiDomainIdentifierStrategy.d.ts +40 -0
  906. package/dist/util/identifiers/MultiDomainIdentifierStrategy.js +73 -0
  907. package/dist/util/identifiers/MultiDomainIdentifierStrategy.js.map +1 -0
  908. package/dist/util/identifiers/MultiDomainIdentifierStrategy.jsonld +90 -0
  909. package/dist/util/identifiers/PathBasedPodIdentifierStrategy.d.ts +78 -0
  910. package/dist/util/identifiers/PathBasedPodIdentifierStrategy.js +182 -0
  911. package/dist/util/identifiers/PathBasedPodIdentifierStrategy.js.map +1 -0
  912. package/dist/util/identifiers/PathBasedPodIdentifierStrategy.jsonld +88 -0
  913. package/dist/util/identifiers/SubdomainPodIdentifierStrategy.d.ts +68 -0
  914. package/dist/util/identifiers/SubdomainPodIdentifierStrategy.js +149 -0
  915. package/dist/util/identifiers/SubdomainPodIdentifierStrategy.js.map +1 -0
  916. package/dist/util/identifiers/SubdomainPodIdentifierStrategy.jsonld +84 -0
  917. package/dist/util/locking/DebugRedisLocker.d.ts +8 -0
  918. package/dist/util/locking/DebugRedisLocker.js +33 -0
  919. package/dist/util/locking/DebugRedisLocker.js.map +1 -0
  920. package/dist/util/logger.d.ts +13 -0
  921. package/dist/util/logger.js +36 -0
  922. package/dist/util/logger.js.map +1 -0
  923. package/dist/util/stream/BandwidthThrottleTransform.d.ts +8 -0
  924. package/dist/util/stream/BandwidthThrottleTransform.js +55 -0
  925. package/dist/util/stream/BandwidthThrottleTransform.js.map +1 -0
  926. package/dist/vocab/external.d.ts +216 -0
  927. package/dist/vocab/external.js +276 -0
  928. package/dist/vocab/external.js.map +1 -0
  929. package/dist/vocab/index.d.ts +26 -0
  930. package/dist/vocab/index.js +46 -0
  931. package/dist/vocab/index.js.map +1 -0
  932. package/dist/vocab/udfs.d.ts +184 -0
  933. package/dist/vocab/udfs.js +217 -0
  934. package/dist/vocab/udfs.js.map +1 -0
  935. package/dist/webrtc/WebRTCClient.d.ts +109 -0
  936. package/dist/webrtc/WebRTCClient.js +344 -0
  937. package/dist/webrtc/WebRTCClient.js.map +1 -0
  938. package/dist/webrtc/WebRTCPeerManager.d.ts +112 -0
  939. package/dist/webrtc/WebRTCPeerManager.js +289 -0
  940. package/dist/webrtc/WebRTCPeerManager.js.map +1 -0
  941. package/dist/webrtc/WeriftPeerConnectionFactory.d.ts +13 -0
  942. package/dist/webrtc/WeriftPeerConnectionFactory.js +255 -0
  943. package/dist/webrtc/WeriftPeerConnectionFactory.js.map +1 -0
  944. package/dist/webrtc/index.d.ts +13 -0
  945. package/dist/webrtc/index.js +30 -0
  946. package/dist/webrtc/index.js.map +1 -0
  947. package/dist/webrtc/types.d.ts +169 -0
  948. package/dist/webrtc/types.js +6 -0
  949. package/dist/webrtc/types.js.map +1 -0
  950. package/dist/xpod.single.cjs +826 -0
  951. package/dist/xpod.single.cjs.map +7 -0
  952. package/package.json +173 -0
  953. package/static/app/assets/index.css +1 -0
  954. package/static/app/assets/main.js +11 -0
  955. package/static/app/auth.html +21 -0
  956. package/static/app/index.html +14 -0
  957. package/static/app/vite.svg +1 -0
  958. package/static/dashboard/assets/dashboard-G96F8267.js +52 -0
  959. package/static/dashboard/assets/dashboard-PJyGDppf.css +1 -0
  960. package/static/dashboard/auth.html +21 -0
  961. package/static/dashboard/index.html +13 -0
  962. package/static/dashboard/vite.svg +1 -0
  963. package/static/landing/index.html +165 -0
  964. package/templates/identity/index.html.ejs +12 -0
  965. package/templates/identity/login.html.ejs +49 -0
  966. package/templates/identity/oidc/consent.html.ejs +103 -0
  967. package/templates/identity/password/forgot.html.ejs +49 -0
  968. package/templates/identity/password/login.html.ejs +58 -0
  969. package/templates/identity/password/register.html.ejs +65 -0
  970. package/templates/main.html.ejs +1 -0
@@ -0,0 +1,1962 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^6.0.0/components/context.jsonld",
4
+ {
5
+ "npmd": "https://linkedsoftwaredependencies.org/bundles/npm/",
6
+ "undefineds": "npmd:@undefineds.co/xpod/^0.0.0/",
7
+ "SparqlEngine": {
8
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#SparqlEngine",
9
+ "@prefix": true,
10
+ "@context": {}
11
+ },
12
+ "SubgraphQueryEngine": {
13
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#SubgraphQueryEngine",
14
+ "@prefix": true,
15
+ "@context": {
16
+ "engine": {
17
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#SubgraphQueryEngine_engine"
18
+ }
19
+ }
20
+ },
21
+ "QuadstoreSparqlEngine": {
22
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#QuadstoreSparqlEngine",
23
+ "@prefix": true,
24
+ "@context": {
25
+ "endpoint": {
26
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#QuadstoreSparqlEngine_endpoint"
27
+ }
28
+ }
29
+ },
30
+ "QuintstoreSparqlEngine": {
31
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#QuintstoreSparqlEngine",
32
+ "@prefix": true,
33
+ "@context": {
34
+ "store": {
35
+ "@id": "undefineds:dist/storage/sparql/SubgraphQueryEngine.jsonld#QuintstoreSparqlEngine_store"
36
+ }
37
+ }
38
+ },
39
+ "MigratableDataAccessor": {
40
+ "@id": "undefineds:dist/storage/MigratableDataAccessor.jsonld#MigratableDataAccessor",
41
+ "@prefix": true,
42
+ "@context": {}
43
+ },
44
+ "MigrationProgress": {
45
+ "@id": "undefineds:dist/storage/MigratableDataAccessor.jsonld#MigrationProgress",
46
+ "@prefix": true,
47
+ "@context": {}
48
+ },
49
+ "DnsProvider": {
50
+ "@id": "undefineds:dist/dns/DnsProvider.jsonld#DnsProvider",
51
+ "@prefix": true,
52
+ "@context": {}
53
+ },
54
+ "ListDnsRecordsInput": {
55
+ "@id": "undefineds:dist/dns/DnsProvider.jsonld#ListDnsRecordsInput",
56
+ "@prefix": true,
57
+ "@context": {}
58
+ },
59
+ "ListableDnsProvider": {
60
+ "@id": "undefineds:dist/dns/DnsProvider.jsonld#ListableDnsProvider",
61
+ "@prefix": true,
62
+ "@context": {}
63
+ },
64
+ "DeleteDnsRecordInput": {
65
+ "@id": "undefineds:dist/dns/DnsProvider.jsonld#DeleteDnsRecordInput",
66
+ "@prefix": true,
67
+ "@context": {}
68
+ },
69
+ "DnsRecordSummary": {
70
+ "@id": "undefineds:dist/dns/DnsProvider.jsonld#DnsRecordSummary",
71
+ "@prefix": true,
72
+ "@context": {}
73
+ },
74
+ "UpsertDnsRecordInput": {
75
+ "@id": "undefineds:dist/dns/DnsProvider.jsonld#UpsertDnsRecordInput",
76
+ "@prefix": true,
77
+ "@context": {}
78
+ },
79
+ "EdgeNodeCertificateProvisioner": {
80
+ "@id": "undefineds:dist/edge/EdgeNodeCertificateProvisioner.jsonld#EdgeNodeCertificateProvisioner",
81
+ "@prefix": true,
82
+ "@context": {}
83
+ },
84
+ "EdgeNodeTunnelManager": {
85
+ "@id": "undefineds:dist/edge/interfaces/EdgeNodeTunnelManager.jsonld#EdgeNodeTunnelManager",
86
+ "@prefix": true,
87
+ "@context": {}
88
+ },
89
+ "QuotaService": {
90
+ "@id": "undefineds:dist/quota/QuotaService.jsonld#QuotaService",
91
+ "@prefix": true,
92
+ "@context": {}
93
+ },
94
+ "TunnelProvider": {
95
+ "@id": "undefineds:dist/tunnel/TunnelProvider.jsonld#TunnelProvider",
96
+ "@prefix": true,
97
+ "@context": {}
98
+ },
99
+ "TunnelConfig": {
100
+ "@id": "undefineds:dist/tunnel/TunnelProvider.jsonld#TunnelConfig",
101
+ "@prefix": true,
102
+ "@context": {}
103
+ },
104
+ "TunnelSetupOptions": {
105
+ "@id": "undefineds:dist/tunnel/TunnelProvider.jsonld#TunnelSetupOptions",
106
+ "@prefix": true,
107
+ "@context": {}
108
+ },
109
+ "TunnelStatus": {
110
+ "@id": "undefineds:dist/tunnel/TunnelProvider.jsonld#TunnelStatus",
111
+ "@prefix": true,
112
+ "@context": {}
113
+ },
114
+ "SubdomainRegistration": {
115
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainRegistration",
116
+ "@prefix": true,
117
+ "@context": {}
118
+ },
119
+ "ConnectivityResult": {
120
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#ConnectivityResult",
121
+ "@prefix": true,
122
+ "@context": {}
123
+ },
124
+ "SubdomainServiceOptions": {
125
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainServiceOptions",
126
+ "@prefix": true,
127
+ "@context": {}
128
+ },
129
+ "SubdomainService": {
130
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService",
131
+ "@prefix": true,
132
+ "@context": {
133
+ "options_baseDomain": {
134
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_baseDomain"
135
+ },
136
+ "options_dnsProvider": {
137
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_dnsProvider"
138
+ },
139
+ "options_tunnelProvider": {
140
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_tunnelProvider"
141
+ },
142
+ "options_connectivityCheckEndpoint": {
143
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_connectivityCheckEndpoint"
144
+ },
145
+ "options_reservedSubdomains": {
146
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_reservedSubdomains",
147
+ "@container": "@list"
148
+ },
149
+ "baseDomain": {
150
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_baseDomain"
151
+ },
152
+ "dnsProvider": {
153
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_dnsProvider"
154
+ },
155
+ "tunnelProvider": {
156
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_tunnelProvider"
157
+ },
158
+ "connectivityCheckEndpoint": {
159
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_connectivityCheckEndpoint"
160
+ },
161
+ "reservedSubdomains": {
162
+ "@id": "undefineds:dist/subdomain/SubdomainService.jsonld#SubdomainService_options_reservedSubdomains",
163
+ "@container": "@list"
164
+ }
165
+ }
166
+ },
167
+ "AppStaticAssetHandler": {
168
+ "@id": "undefineds:dist/http/AppStaticAssetHandler.jsonld#AppStaticAssetHandler",
169
+ "@prefix": true,
170
+ "@context": {}
171
+ },
172
+ "RepresentationPartialConvertingStore": {
173
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore",
174
+ "@prefix": true,
175
+ "@context": {
176
+ "source": {
177
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_source"
178
+ },
179
+ "metadataStrategy": {
180
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_metadataStrategy"
181
+ },
182
+ "options_outConverter": {
183
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_outConverter"
184
+ },
185
+ "options_inConverter": {
186
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inConverter"
187
+ },
188
+ "options_inPreferences_type": {
189
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_type",
190
+ "@container": "@list"
191
+ },
192
+ "options_inPreferences_charset": {
193
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_charset",
194
+ "@container": "@list"
195
+ },
196
+ "options_inPreferences_datetime": {
197
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_datetime",
198
+ "@container": "@list"
199
+ },
200
+ "options_inPreferences_encoding": {
201
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_encoding",
202
+ "@container": "@list"
203
+ },
204
+ "options_inPreferences_language": {
205
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_language",
206
+ "@container": "@list"
207
+ },
208
+ "options_inPreferences_range_unit": {
209
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_range_unit"
210
+ },
211
+ "options_inPreferences_range_parts": {
212
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_range_parts",
213
+ "@container": "@list"
214
+ },
215
+ "Strategy": {
216
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_metadataStrategy"
217
+ },
218
+ "outConverter": {
219
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_outConverter"
220
+ },
221
+ "inConverter": {
222
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inConverter"
223
+ },
224
+ "inPreferences_type": {
225
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_type",
226
+ "@container": "@list"
227
+ },
228
+ "inPreferences_charset": {
229
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_charset",
230
+ "@container": "@list"
231
+ },
232
+ "inPreferences_datetime": {
233
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_datetime",
234
+ "@container": "@list"
235
+ },
236
+ "inPreferences_encoding": {
237
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_encoding",
238
+ "@container": "@list"
239
+ },
240
+ "inPreferences_language": {
241
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_language",
242
+ "@container": "@list"
243
+ },
244
+ "inPreferences_range_unit": {
245
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_range_unit"
246
+ },
247
+ "inPreferences_range_parts": {
248
+ "@id": "undefineds:dist/storage/RepresentationPartialConvertingStore.jsonld#RepresentationPartialConvertingStore_options_inPreferences_range_parts",
249
+ "@container": "@list"
250
+ }
251
+ }
252
+ },
253
+ "MinioDataAccessor": {
254
+ "@id": "undefineds:dist/storage/accessors/MinioDataAccessor.jsonld#MinioDataAccessor",
255
+ "@prefix": true,
256
+ "@context": {
257
+ "accessKey": {
258
+ "@id": "undefineds:dist/storage/accessors/MinioDataAccessor.jsonld#MinioDataAccessor_accessKey"
259
+ },
260
+ "secretKey": {
261
+ "@id": "undefineds:dist/storage/accessors/MinioDataAccessor.jsonld#MinioDataAccessor_secretKey"
262
+ },
263
+ "endpoint": {
264
+ "@id": "undefineds:dist/storage/accessors/MinioDataAccessor.jsonld#MinioDataAccessor_endpoint"
265
+ },
266
+ "bucketName": {
267
+ "@id": "undefineds:dist/storage/accessors/MinioDataAccessor.jsonld#MinioDataAccessor_bucketName"
268
+ },
269
+ "resourceMapper": {
270
+ "@id": "undefineds:dist/storage/accessors/MinioDataAccessor.jsonld#MinioDataAccessor_resourceMapper"
271
+ }
272
+ }
273
+ },
274
+ "QuadstoreSparqlDataAccessor": {
275
+ "@id": "undefineds:dist/storage/accessors/QuadstoreSparqlDataAccessor.jsonld#QuadstoreSparqlDataAccessor",
276
+ "@prefix": true,
277
+ "@context": {
278
+ "endpoint": {
279
+ "@id": "undefineds:dist/storage/accessors/QuadstoreSparqlDataAccessor.jsonld#QuadstoreSparqlDataAccessor_endpoint"
280
+ },
281
+ "identifierStrategy": {
282
+ "@id": "undefineds:dist/storage/accessors/QuadstoreSparqlDataAccessor.jsonld#QuadstoreSparqlDataAccessor_identifierStrategy"
283
+ }
284
+ }
285
+ },
286
+ "QuintStoreSparqlDataAccessor": {
287
+ "@id": "undefineds:dist/storage/accessors/QuintStoreSparqlDataAccessor.jsonld#QuintStoreSparqlDataAccessor",
288
+ "@prefix": true,
289
+ "@context": {
290
+ "store": {
291
+ "@id": "undefineds:dist/storage/accessors/QuintStoreSparqlDataAccessor.jsonld#QuintStoreSparqlDataAccessor_store"
292
+ },
293
+ "identifierStrategy": {
294
+ "@id": "undefineds:dist/storage/accessors/QuintStoreSparqlDataAccessor.jsonld#QuintStoreSparqlDataAccessor_identifierStrategy"
295
+ }
296
+ }
297
+ },
298
+ "MixDataAccessor": {
299
+ "@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor",
300
+ "@prefix": true,
301
+ "@context": {
302
+ "structuredDataAccessor": {
303
+ "@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_structuredDataAccessor"
304
+ },
305
+ "unstructuredDataAccessor": {
306
+ "@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_unstructuredDataAccessor"
307
+ }
308
+ }
309
+ },
310
+ "ConfigurableLoggerFactory": {
311
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory",
312
+ "@prefix": true,
313
+ "@context": {
314
+ "level": {
315
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_level"
316
+ },
317
+ "options_fileName": {
318
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_fileName"
319
+ },
320
+ "options_maxSize": {
321
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_maxSize"
322
+ },
323
+ "options_maxFiles": {
324
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_maxFiles"
325
+ },
326
+ "options_format": {
327
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_format"
328
+ },
329
+ "options_showLocation": {
330
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_showLocation"
331
+ },
332
+ "fileName": {
333
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_fileName"
334
+ },
335
+ "maxSize": {
336
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_maxSize"
337
+ },
338
+ "maxFiles": {
339
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_maxFiles"
340
+ },
341
+ "format": {
342
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_format"
343
+ },
344
+ "showLocation": {
345
+ "@id": "undefineds:dist/logging/ConfigurableLoggerFactory.jsonld#ConfigurableLoggerFactory_options_showLocation"
346
+ }
347
+ }
348
+ },
349
+ "SparqlUpdateResourceStore": {
350
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore",
351
+ "@prefix": true,
352
+ "@context": {
353
+ "options_accessor": {
354
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_accessor"
355
+ },
356
+ "options_identifierStrategy": {
357
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_identifierStrategy"
358
+ },
359
+ "options_auxiliaryStrategy": {
360
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_auxiliaryStrategy"
361
+ },
362
+ "options_metadataStrategy": {
363
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_metadataStrategy"
364
+ },
365
+ "accessor": {
366
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_accessor"
367
+ },
368
+ "identifierStrategy": {
369
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_identifierStrategy"
370
+ },
371
+ "auxiliaryStrategy": {
372
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_auxiliaryStrategy"
373
+ },
374
+ "metadataStrategy": {
375
+ "@id": "undefineds:dist/storage/SparqlUpdateResourceStore.jsonld#SparqlUpdateResourceStore_options_metadataStrategy"
376
+ }
377
+ }
378
+ },
379
+ "SubgraphSparqlHttpHandler": {
380
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler",
381
+ "@prefix": true,
382
+ "@context": {
383
+ "options_resourceSuffix": {
384
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_resourceSuffix"
385
+ },
386
+ "queryEngine": {
387
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_queryEngine"
388
+ },
389
+ "options_containerSuffix": {
390
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_containerSuffix"
391
+ },
392
+ "options_sidecarPath": {
393
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_sidecarPath"
394
+ },
395
+ "options_identityDbUrl": {
396
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_identityDbUrl"
397
+ },
398
+ "options_usageDbUrl": {
399
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_usageDbUrl"
400
+ },
401
+ "options_defaultAccountBandwidthLimitBps": {
402
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_defaultAccountBandwidthLimitBps"
403
+ },
404
+ "credentialsExtractor": {
405
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_credentialsExtractor"
406
+ },
407
+ "permissionReader": {
408
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_permissionReader"
409
+ },
410
+ "authorizer": {
411
+ "@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_authorizer"
412
+ }
413
+ }
414
+ },
415
+ "QuotaAdminHttpHandler": {
416
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler",
417
+ "@prefix": true,
418
+ "@context": {
419
+ "options_identityDbUrl": {
420
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_identityDbUrl"
421
+ },
422
+ "options_basePath": {
423
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_basePath"
424
+ },
425
+ "options_roleRepository": {
426
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_roleRepository"
427
+ },
428
+ "options_quotaService": {
429
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_quotaService"
430
+ },
431
+ "identityDbUrl": {
432
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_identityDbUrl"
433
+ },
434
+ "basePath": {
435
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_basePath"
436
+ },
437
+ "roleRepository": {
438
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_roleRepository"
439
+ },
440
+ "quotaService": {
441
+ "@id": "undefineds:dist/http/quota/QuotaAdminHttpHandler.jsonld#QuotaAdminHttpHandler_options_quotaService"
442
+ }
443
+ }
444
+ },
445
+ "EdgeNodeSignalHttpHandler": {
446
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler",
447
+ "@prefix": true,
448
+ "@context": {
449
+ "options_identityDbUrl": {
450
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_identityDbUrl"
451
+ },
452
+ "options_basePath": {
453
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_basePath"
454
+ },
455
+ "options_edgeNodesEnabled": {
456
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_edgeNodesEnabled"
457
+ },
458
+ "options_repository": {
459
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_repository"
460
+ },
461
+ "options_dnsCoordinator": {
462
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_dnsCoordinator"
463
+ },
464
+ "options_certificateProvisioner": {
465
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_certificateProvisioner"
466
+ },
467
+ "options_tunnelManager": {
468
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_tunnelManager"
469
+ },
470
+ "options_healthProbeService": {
471
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_healthProbeService"
472
+ },
473
+ "options_modeDetector": {
474
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_modeDetector"
475
+ },
476
+ "options_capabilityDetector": {
477
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_capabilityDetector"
478
+ },
479
+ "options_clusterBaseDomain": {
480
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_clusterBaseDomain"
481
+ },
482
+ "identityDbUrl": {
483
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_identityDbUrl"
484
+ },
485
+ "basePath": {
486
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_basePath"
487
+ },
488
+ "edgeNodesEnabled": {
489
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_edgeNodesEnabled"
490
+ },
491
+ "repository": {
492
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_repository"
493
+ },
494
+ "dnsCoordinator": {
495
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_dnsCoordinator"
496
+ },
497
+ "certificateProvisioner": {
498
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_certificateProvisioner"
499
+ },
500
+ "tunnelManager": {
501
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_tunnelManager"
502
+ },
503
+ "healthProbeService": {
504
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_healthProbeService"
505
+ },
506
+ "modeDetector": {
507
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_modeDetector"
508
+ },
509
+ "capabilityDetector": {
510
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_capabilityDetector"
511
+ },
512
+ "clusterBaseDomain": {
513
+ "@id": "undefineds:dist/http/admin/EdgeNodeSignalHttpHandler.jsonld#EdgeNodeSignalHttpHandler_options_clusterBaseDomain"
514
+ }
515
+ }
516
+ },
517
+ "ClusterIngressRouter": {
518
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter",
519
+ "@prefix": true,
520
+ "@context": {
521
+ "options_identityDbUrl": {
522
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_identityDbUrl"
523
+ },
524
+ "options_edgeNodesEnabled": {
525
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_edgeNodesEnabled"
526
+ },
527
+ "options_repository": {
528
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_repository"
529
+ },
530
+ "options_clusterIngressDomain": {
531
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_clusterIngressDomain"
532
+ },
533
+ "options_skipAuthRedirect": {
534
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_skipAuthRedirect"
535
+ },
536
+ "options_fetchImpl": {
537
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_fetchImpl"
538
+ },
539
+ "identityDbUrl": {
540
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_identityDbUrl"
541
+ },
542
+ "edgeNodesEnabled": {
543
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_edgeNodesEnabled"
544
+ },
545
+ "repository": {
546
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_repository"
547
+ },
548
+ "clusterIngressDomain": {
549
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_clusterIngressDomain"
550
+ },
551
+ "skipAuthRedirect": {
552
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_skipAuthRedirect"
553
+ },
554
+ "fetchImpl": {
555
+ "@id": "undefineds:dist/http/ClusterIngressRouter.jsonld#ClusterIngressRouter_options_fetchImpl"
556
+ }
557
+ }
558
+ },
559
+ "ClusterWebSocketConfigurator": {
560
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator",
561
+ "@prefix": true,
562
+ "@context": {
563
+ "options_identityDbUrl": {
564
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_identityDbUrl"
565
+ },
566
+ "options_edgeNodesEnabled": {
567
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_edgeNodesEnabled"
568
+ },
569
+ "options_repository": {
570
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_repository"
571
+ },
572
+ "options_clusterIngressDomain": {
573
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_clusterIngressDomain"
574
+ },
575
+ "identityDbUrl": {
576
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_identityDbUrl"
577
+ },
578
+ "edgeNodesEnabled": {
579
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_edgeNodesEnabled"
580
+ },
581
+ "repository": {
582
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_repository"
583
+ },
584
+ "clusterIngressDomain": {
585
+ "@id": "undefineds:dist/http/ClusterWebSocketConfigurator.jsonld#ClusterWebSocketConfigurator_options_clusterIngressDomain"
586
+ }
587
+ }
588
+ },
589
+ "EdgeNodeDirectDebugHttpHandler": {
590
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler",
591
+ "@prefix": true,
592
+ "@context": {
593
+ "options_identityDbUrl": {
594
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_identityDbUrl"
595
+ },
596
+ "options_edgeNodesEnabled": {
597
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_edgeNodesEnabled"
598
+ },
599
+ "options_skipPrefixes": {
600
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_skipPrefixes",
601
+ "@container": "@list"
602
+ },
603
+ "options_nodeRepository": {
604
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_nodeRepository"
605
+ },
606
+ "identityDbUrl": {
607
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_identityDbUrl"
608
+ },
609
+ "edgeNodesEnabled": {
610
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_edgeNodesEnabled"
611
+ },
612
+ "skipPrefixes": {
613
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_skipPrefixes",
614
+ "@container": "@list"
615
+ },
616
+ "nodeRepository": {
617
+ "@id": "undefineds:dist/http/EdgeNodeDirectDebugHttpHandler.jsonld#EdgeNodeDirectDebugHttpHandler_options_nodeRepository"
618
+ }
619
+ }
620
+ },
621
+ "EdgeNodeProxyHttpHandler": {
622
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler",
623
+ "@prefix": true,
624
+ "@context": {
625
+ "options_identityDbUrl": {
626
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_identityDbUrl"
627
+ },
628
+ "options_edgeNodesEnabled": {
629
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_edgeNodesEnabled"
630
+ },
631
+ "options_repository": {
632
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_repository"
633
+ },
634
+ "options_fetchImpl": {
635
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_fetchImpl"
636
+ },
637
+ "identityDbUrl": {
638
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_identityDbUrl"
639
+ },
640
+ "edgeNodesEnabled": {
641
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_edgeNodesEnabled"
642
+ },
643
+ "repository": {
644
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_repository"
645
+ },
646
+ "fetchImpl": {
647
+ "@id": "undefineds:dist/http/EdgeNodeProxyHttpHandler.jsonld#EdgeNodeProxyHttpHandler_options_fetchImpl"
648
+ }
649
+ }
650
+ },
651
+ "SignalInterceptHttpHandler": {
652
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler",
653
+ "@prefix": true,
654
+ "@context": {
655
+ "options_signalHandler": {
656
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler_options_signalHandler"
657
+ },
658
+ "options_fallback": {
659
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler_options_fallback"
660
+ },
661
+ "options_basePath": {
662
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler_options_basePath"
663
+ },
664
+ "signalHandler": {
665
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler_options_signalHandler"
666
+ },
667
+ "fallback": {
668
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler_options_fallback"
669
+ },
670
+ "basePath": {
671
+ "@id": "undefineds:dist/http/SignalInterceptHttpHandler.jsonld#SignalInterceptHttpHandler_options_basePath"
672
+ }
673
+ }
674
+ },
675
+ "RouterHttpHandler": {
676
+ "@id": "undefineds:dist/http/RouterHttpHandler.jsonld#RouterHttpHandler",
677
+ "@prefix": true,
678
+ "@context": {
679
+ "options_routes": {
680
+ "@id": "undefineds:dist/http/RouterHttpHandler.jsonld#RouterHttpHandler_options_routes",
681
+ "@container": "@list"
682
+ },
683
+ "options_fallback": {
684
+ "@id": "undefineds:dist/http/RouterHttpHandler.jsonld#RouterHttpHandler_options_fallback"
685
+ },
686
+ "routes": {
687
+ "@id": "undefineds:dist/http/RouterHttpHandler.jsonld#RouterHttpHandler_options_routes",
688
+ "@container": "@list"
689
+ },
690
+ "fallback": {
691
+ "@id": "undefineds:dist/http/RouterHttpHandler.jsonld#RouterHttpHandler_options_fallback"
692
+ }
693
+ }
694
+ },
695
+ "RouterHttpRoute": {
696
+ "@id": "undefineds:dist/http/RouterHttpRoute.jsonld#RouterHttpRoute",
697
+ "@prefix": true,
698
+ "@context": {
699
+ "basePath": {
700
+ "@id": "undefineds:dist/http/RouterHttpRoute.jsonld#RouterHttpRoute_basePath"
701
+ },
702
+ "handler": {
703
+ "@id": "undefineds:dist/http/RouterHttpRoute.jsonld#RouterHttpRoute_handler"
704
+ }
705
+ }
706
+ },
707
+ "TracingHandler": {
708
+ "@id": "undefineds:dist/http/TracingHandler.jsonld#TracingHandler",
709
+ "@prefix": true,
710
+ "@context": {}
711
+ },
712
+ "EdgeNodeCertificateHttpHandler": {
713
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler",
714
+ "@prefix": true,
715
+ "@context": {
716
+ "options_identityDbUrl": {
717
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_identityDbUrl"
718
+ },
719
+ "options_edgeNodesEnabled": {
720
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_edgeNodesEnabled"
721
+ },
722
+ "options_repository": {
723
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_repository"
724
+ },
725
+ "options_certificateService": {
726
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_certificateService"
727
+ },
728
+ "options_basePath": {
729
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_basePath"
730
+ },
731
+ "identityDbUrl": {
732
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_identityDbUrl"
733
+ },
734
+ "edgeNodesEnabled": {
735
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_edgeNodesEnabled"
736
+ },
737
+ "repository": {
738
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_repository"
739
+ },
740
+ "certificateService": {
741
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_certificateService"
742
+ },
743
+ "basePath": {
744
+ "@id": "undefineds:dist/http/admin/EdgeNodeCertificateHttpHandler.jsonld#EdgeNodeCertificateHttpHandler_options_basePath"
745
+ }
746
+ }
747
+ },
748
+ "TerminalHttpHandler": {
749
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler",
750
+ "@prefix": true,
751
+ "@context": {
752
+ "options_sidecarPath": {
753
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_sidecarPath"
754
+ },
755
+ "options_credentialsExtractor": {
756
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_credentialsExtractor"
757
+ },
758
+ "options_maxSessionsPerUser": {
759
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_maxSessionsPerUser"
760
+ },
761
+ "options_maxTotalSessions": {
762
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_maxTotalSessions"
763
+ },
764
+ "options_defaultTimeout": {
765
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_defaultTimeout"
766
+ },
767
+ "options_maxTimeout": {
768
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_maxTimeout"
769
+ },
770
+ "options_defaultWorkdir": {
771
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_defaultWorkdir"
772
+ },
773
+ "sidecarPath": {
774
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_sidecarPath"
775
+ },
776
+ "credentialsExtractor": {
777
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_credentialsExtractor"
778
+ },
779
+ "maxSessionsPerUser": {
780
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_maxSessionsPerUser"
781
+ },
782
+ "maxTotalSessions": {
783
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_maxTotalSessions"
784
+ },
785
+ "defaultTimeout": {
786
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_defaultTimeout"
787
+ },
788
+ "maxTimeout": {
789
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_maxTimeout"
790
+ },
791
+ "defaultWorkdir": {
792
+ "@id": "undefineds:dist/http/terminal/TerminalHttpHandler.jsonld#TerminalHttpHandler_options_defaultWorkdir"
793
+ }
794
+ }
795
+ },
796
+ "ReservedSuffixIdentifierGenerator": {
797
+ "@id": "undefineds:dist/pods/ReservedSuffixIdentifierGenerator.jsonld#ReservedSuffixIdentifierGenerator",
798
+ "@prefix": true,
799
+ "@context": {
800
+ "options_baseUrl": {
801
+ "@id": "undefineds:dist/pods/ReservedSuffixIdentifierGenerator.jsonld#ReservedSuffixIdentifierGenerator_options_baseUrl"
802
+ },
803
+ "options_reserved": {
804
+ "@id": "undefineds:dist/pods/ReservedSuffixIdentifierGenerator.jsonld#ReservedSuffixIdentifierGenerator_options_reserved",
805
+ "@container": "@list"
806
+ },
807
+ "baseUrl": {
808
+ "@id": "undefineds:dist/pods/ReservedSuffixIdentifierGenerator.jsonld#ReservedSuffixIdentifierGenerator_options_baseUrl"
809
+ },
810
+ "reserved": {
811
+ "@id": "undefineds:dist/pods/ReservedSuffixIdentifierGenerator.jsonld#ReservedSuffixIdentifierGenerator_options_reserved",
812
+ "@container": "@list"
813
+ }
814
+ }
815
+ },
816
+ "DrizzleIndexedStorage": {
817
+ "@id": "undefineds:dist/identity/drizzle/DrizzleIndexedStorage.jsonld#DrizzleIndexedStorage",
818
+ "@prefix": true,
819
+ "@context": {
820
+ "connectionString": {
821
+ "@id": "undefineds:dist/identity/drizzle/DrizzleIndexedStorage.jsonld#DrizzleIndexedStorage_connectionString"
822
+ },
823
+ "tablePrefix": {
824
+ "@id": "undefineds:dist/identity/drizzle/DrizzleIndexedStorage.jsonld#DrizzleIndexedStorage_tablePrefix"
825
+ }
826
+ }
827
+ },
828
+ "PostgresKeyValueStorage": {
829
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage",
830
+ "@prefix": true,
831
+ "@context": {
832
+ "options_connectionString": {
833
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_connectionString"
834
+ },
835
+ "options_tableName": {
836
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_tableName"
837
+ },
838
+ "options_namespace": {
839
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_namespace"
840
+ },
841
+ "options_pool": {
842
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_pool"
843
+ },
844
+ "connectionString": {
845
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_connectionString"
846
+ },
847
+ "tableName": {
848
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_tableName"
849
+ },
850
+ "namespace": {
851
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_namespace"
852
+ },
853
+ "pool": {
854
+ "@id": "undefineds:dist/storage/keyvalue/PostgresKeyValueStorage.jsonld#PostgresKeyValueStorage_options_pool"
855
+ }
856
+ }
857
+ },
858
+ "RedisKeyValueStorage": {
859
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage",
860
+ "@prefix": true,
861
+ "@context": {
862
+ "options_client": {
863
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_client"
864
+ },
865
+ "options_username": {
866
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_username"
867
+ },
868
+ "options_password": {
869
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_password"
870
+ },
871
+ "options_database": {
872
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_database"
873
+ },
874
+ "options_namespace": {
875
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_namespace"
876
+ },
877
+ "options_tls": {
878
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_tls"
879
+ },
880
+ "options_scanCount": {
881
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_scanCount"
882
+ },
883
+ "client": {
884
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_client"
885
+ },
886
+ "username": {
887
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_username"
888
+ },
889
+ "password": {
890
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_password"
891
+ },
892
+ "database": {
893
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_database"
894
+ },
895
+ "namespace": {
896
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_namespace"
897
+ },
898
+ "tls": {
899
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_tls"
900
+ },
901
+ "scanCount": {
902
+ "@id": "undefineds:dist/storage/keyvalue/RedisKeyValueStorage.jsonld#RedisKeyValueStorage_options_scanCount"
903
+ }
904
+ }
905
+ },
906
+ "SqliteKeyValueStorage": {
907
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage",
908
+ "@prefix": true,
909
+ "@context": {
910
+ "options_path": {
911
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage_options_path"
912
+ },
913
+ "options_tableName": {
914
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage_options_tableName"
915
+ },
916
+ "options_namespace": {
917
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage_options_namespace"
918
+ },
919
+ "path": {
920
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage_options_path"
921
+ },
922
+ "tableName": {
923
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage_options_tableName"
924
+ },
925
+ "namespace": {
926
+ "@id": "undefineds:dist/storage/keyvalue/SqliteKeyValueStorage.jsonld#SqliteKeyValueStorage_options_namespace"
927
+ }
928
+ }
929
+ },
930
+ "DefaultQuotaService": {
931
+ "@id": "undefineds:dist/quota/DefaultQuotaService.jsonld#DefaultQuotaService",
932
+ "@prefix": true,
933
+ "@context": {
934
+ "options_defaultAccountQuotaBytes": {
935
+ "@id": "undefineds:dist/quota/DefaultQuotaService.jsonld#DefaultQuotaService_options_defaultAccountQuotaBytes"
936
+ }
937
+ }
938
+ },
939
+ "DrizzleQuotaService": {
940
+ "@id": "undefineds:dist/quota/DrizzleQuotaService.jsonld#DrizzleQuotaService",
941
+ "@prefix": true,
942
+ "@context": {
943
+ "options_identityDbUrl": {
944
+ "@id": "undefineds:dist/quota/DrizzleQuotaService.jsonld#DrizzleQuotaService_options_identityDbUrl"
945
+ },
946
+ "options_defaultAccountQuotaBytes": {
947
+ "@id": "undefineds:dist/quota/DrizzleQuotaService.jsonld#DrizzleQuotaService_options_defaultAccountQuotaBytes"
948
+ },
949
+ "identityDbUrl": {
950
+ "@id": "undefineds:dist/quota/DrizzleQuotaService.jsonld#DrizzleQuotaService_options_identityDbUrl"
951
+ },
952
+ "defaultAccountQuotaBytes": {
953
+ "@id": "undefineds:dist/quota/DrizzleQuotaService.jsonld#DrizzleQuotaService_options_defaultAccountQuotaBytes"
954
+ }
955
+ }
956
+ },
957
+ "NoopQuotaService": {
958
+ "@id": "undefineds:dist/quota/NoopQuotaService.jsonld#NoopQuotaService",
959
+ "@prefix": true,
960
+ "@context": {}
961
+ },
962
+ "PerAccountQuotaStrategy": {
963
+ "@id": "undefineds:dist/storage/quota/PerAccountQuotaStrategy.jsonld#PerAccountQuotaStrategy",
964
+ "@prefix": true,
965
+ "@context": {
966
+ "options_identityDbUrl": {
967
+ "@id": "undefineds:dist/storage/quota/PerAccountQuotaStrategy.jsonld#PerAccountQuotaStrategy_options_identityDbUrl"
968
+ },
969
+ "options_defaultAccountQuotaBytes": {
970
+ "@id": "undefineds:dist/storage/quota/PerAccountQuotaStrategy.jsonld#PerAccountQuotaStrategy_options_defaultAccountQuotaBytes"
971
+ },
972
+ "options_quotaService": {
973
+ "@id": "undefineds:dist/storage/quota/PerAccountQuotaStrategy.jsonld#PerAccountQuotaStrategy_options_quotaService"
974
+ },
975
+ "reporter": {
976
+ "@id": "undefineds:dist/storage/quota/PerAccountQuotaStrategy.jsonld#PerAccountQuotaStrategy_reporter"
977
+ }
978
+ }
979
+ },
980
+ "TencentDnsProvider": {
981
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider",
982
+ "@prefix": true,
983
+ "@context": {
984
+ "options_tokenId": {
985
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_tokenId"
986
+ },
987
+ "options_token": {
988
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_token"
989
+ },
990
+ "options_baseUrl": {
991
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_baseUrl"
992
+ },
993
+ "options_defaultLineId": {
994
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_defaultLineId"
995
+ },
996
+ "options_timeoutMs": {
997
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_timeoutMs"
998
+ },
999
+ "options_userAgent": {
1000
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_userAgent"
1001
+ },
1002
+ "tokenId": {
1003
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_tokenId"
1004
+ },
1005
+ "token": {
1006
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_token"
1007
+ },
1008
+ "baseUrl": {
1009
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_baseUrl"
1010
+ },
1011
+ "defaultLineId": {
1012
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_defaultLineId"
1013
+ },
1014
+ "timeoutMs": {
1015
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_timeoutMs"
1016
+ },
1017
+ "userAgent": {
1018
+ "@id": "undefineds:dist/dns/tencent/TencentDnsProvider.jsonld#TencentDnsProvider_options_userAgent"
1019
+ }
1020
+ }
1021
+ },
1022
+ "EdgeNodeDnsCoordinator": {
1023
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator",
1024
+ "@prefix": true,
1025
+ "@context": {
1026
+ "options_provider": {
1027
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_provider"
1028
+ },
1029
+ "options_rootDomain": {
1030
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_rootDomain"
1031
+ },
1032
+ "options_defaultRecordType": {
1033
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_defaultRecordType"
1034
+ },
1035
+ "options_ttl": {
1036
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_ttl"
1037
+ },
1038
+ "options_clusterIp": {
1039
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_clusterIp"
1040
+ },
1041
+ "provider": {
1042
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_provider"
1043
+ },
1044
+ "rootDomain": {
1045
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_rootDomain"
1046
+ },
1047
+ "defaultRecordType": {
1048
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_defaultRecordType"
1049
+ },
1050
+ "ttl": {
1051
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_ttl"
1052
+ },
1053
+ "clusterIp": {
1054
+ "@id": "undefineds:dist/edge/EdgeNodeDnsCoordinator.jsonld#EdgeNodeDnsCoordinator_options_clusterIp"
1055
+ }
1056
+ }
1057
+ },
1058
+ "Dns01CertificateProvisioner": {
1059
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner",
1060
+ "@prefix": true,
1061
+ "@context": {
1062
+ "options_provider": {
1063
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner_options_provider"
1064
+ },
1065
+ "options_rootDomain": {
1066
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner_options_rootDomain"
1067
+ },
1068
+ "options_ttl": {
1069
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner_options_ttl"
1070
+ },
1071
+ "provider": {
1072
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner_options_provider"
1073
+ },
1074
+ "rootDomain": {
1075
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner_options_rootDomain"
1076
+ },
1077
+ "ttl": {
1078
+ "@id": "undefineds:dist/edge/Dns01CertificateProvisioner.jsonld#Dns01CertificateProvisioner_options_ttl"
1079
+ }
1080
+ }
1081
+ },
1082
+ "SimpleEdgeNodeTunnelManager": {
1083
+ "@id": "undefineds:dist/edge/EdgeNodeTunnelManager.jsonld#SimpleEdgeNodeTunnelManager",
1084
+ "@prefix": true,
1085
+ "@context": {
1086
+ "options_entrypoints": {
1087
+ "@id": "undefineds:dist/edge/EdgeNodeTunnelManager.jsonld#SimpleEdgeNodeTunnelManager_options_entrypoints"
1088
+ },
1089
+ "options_enabled": {
1090
+ "@id": "undefineds:dist/edge/EdgeNodeTunnelManager.jsonld#SimpleEdgeNodeTunnelManager_options_enabled"
1091
+ },
1092
+ "entrypoints": {
1093
+ "@id": "undefineds:dist/edge/EdgeNodeTunnelManager.jsonld#SimpleEdgeNodeTunnelManager_options_entrypoints"
1094
+ },
1095
+ "enabled": {
1096
+ "@id": "undefineds:dist/edge/EdgeNodeTunnelManager.jsonld#SimpleEdgeNodeTunnelManager_options_enabled"
1097
+ }
1098
+ }
1099
+ },
1100
+ "NoopEdgeNodeTunnelManager": {
1101
+ "@id": "undefineds:dist/edge/EdgeNodeTunnelManager.jsonld#NoopEdgeNodeTunnelManager",
1102
+ "@prefix": true,
1103
+ "@context": {}
1104
+ },
1105
+ "FrpTunnelManager": {
1106
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager",
1107
+ "@prefix": true,
1108
+ "@context": {
1109
+ "options_serverHost": {
1110
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_serverHost"
1111
+ },
1112
+ "options_serverPort": {
1113
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_serverPort"
1114
+ },
1115
+ "options_protocol": {
1116
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_protocol"
1117
+ },
1118
+ "options_token": {
1119
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_token"
1120
+ },
1121
+ "serverHost": {
1122
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_serverHost"
1123
+ },
1124
+ "serverPort": {
1125
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_serverPort"
1126
+ },
1127
+ "protocol": {
1128
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_protocol"
1129
+ },
1130
+ "token": {
1131
+ "@id": "undefineds:dist/edge/FrpTunnelManager.jsonld#FrpTunnelManager_options_token"
1132
+ }
1133
+ }
1134
+ },
1135
+ "EdgeNodeHealthProbeService": {
1136
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService",
1137
+ "@prefix": true,
1138
+ "@context": {
1139
+ "options_repository": {
1140
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_repository"
1141
+ },
1142
+ "options_identityDbUrl": {
1143
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_identityDbUrl"
1144
+ },
1145
+ "options_enabled": {
1146
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_enabled"
1147
+ },
1148
+ "options_timeoutMs": {
1149
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_timeoutMs"
1150
+ },
1151
+ "options_locations": {
1152
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_locations"
1153
+ },
1154
+ "repository": {
1155
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_repository"
1156
+ },
1157
+ "identityDbUrl": {
1158
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_identityDbUrl"
1159
+ },
1160
+ "enabled": {
1161
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_enabled"
1162
+ },
1163
+ "timeoutMs": {
1164
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_timeoutMs"
1165
+ },
1166
+ "locations": {
1167
+ "@id": "undefineds:dist/edge/EdgeNodeHealthProbeService.jsonld#EdgeNodeHealthProbeService_options_locations"
1168
+ }
1169
+ }
1170
+ },
1171
+ "EdgeNodeAgent": {
1172
+ "@id": "undefineds:dist/edge/EdgeNodeAgent.jsonld#EdgeNodeAgent",
1173
+ "@prefix": true,
1174
+ "@context": {}
1175
+ },
1176
+ "EdgeNodeCertificateService": {
1177
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService",
1178
+ "@prefix": true,
1179
+ "@context": {
1180
+ "options_identityDbUrl": {
1181
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_identityDbUrl"
1182
+ },
1183
+ "options_repository": {
1184
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_repository"
1185
+ },
1186
+ "options_provisioner": {
1187
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_provisioner"
1188
+ },
1189
+ "options_accountKeyPath": {
1190
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_accountKeyPath"
1191
+ },
1192
+ "options_certificateStorePath": {
1193
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_certificateStorePath"
1194
+ },
1195
+ "options_directoryUrl": {
1196
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_directoryUrl"
1197
+ },
1198
+ "options_email": {
1199
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_email"
1200
+ },
1201
+ "options_propagationDelayMs": {
1202
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_propagationDelayMs"
1203
+ },
1204
+ "identityDbUrl": {
1205
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_identityDbUrl"
1206
+ },
1207
+ "repository": {
1208
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_repository"
1209
+ },
1210
+ "provisioner": {
1211
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_provisioner"
1212
+ },
1213
+ "accountKeyPath": {
1214
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_accountKeyPath"
1215
+ },
1216
+ "certificateStorePath": {
1217
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_certificateStorePath"
1218
+ },
1219
+ "directoryUrl": {
1220
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_directoryUrl"
1221
+ },
1222
+ "email": {
1223
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_email"
1224
+ },
1225
+ "propagationDelayMs": {
1226
+ "@id": "undefineds:dist/service/EdgeNodeCertificateService.jsonld#EdgeNodeCertificateService_options_propagationDelayMs"
1227
+ }
1228
+ }
1229
+ },
1230
+ "AcmeCertificateManager": {
1231
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager",
1232
+ "@prefix": true,
1233
+ "@context": {
1234
+ "options_signalEndpoint": {
1235
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_signalEndpoint"
1236
+ },
1237
+ "options_nodeId": {
1238
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_nodeId"
1239
+ },
1240
+ "options_nodeToken": {
1241
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_nodeToken"
1242
+ },
1243
+ "options_dnsProvider": {
1244
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_dnsProvider"
1245
+ },
1246
+ "options_rootDomain": {
1247
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_rootDomain"
1248
+ },
1249
+ "options_dnsChallengeHandler": {
1250
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_dnsChallengeHandler"
1251
+ },
1252
+ "options_email": {
1253
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_email"
1254
+ },
1255
+ "options_domains": {
1256
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_domains",
1257
+ "@container": "@list"
1258
+ },
1259
+ "options_directoryUrl": {
1260
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_directoryUrl"
1261
+ },
1262
+ "options_fallbackDirectoryUrls": {
1263
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_fallbackDirectoryUrls",
1264
+ "@container": "@list"
1265
+ },
1266
+ "options_accountKeyPath": {
1267
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_accountKeyPath"
1268
+ },
1269
+ "options_certificateKeyPath": {
1270
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_certificateKeyPath"
1271
+ },
1272
+ "options_certificatePath": {
1273
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_certificatePath"
1274
+ },
1275
+ "options_fullChainPath": {
1276
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_fullChainPath"
1277
+ },
1278
+ "options_renewBeforeDays": {
1279
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_renewBeforeDays"
1280
+ },
1281
+ "options_propagationDelayMs": {
1282
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_propagationDelayMs"
1283
+ },
1284
+ "signalEndpoint": {
1285
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_signalEndpoint"
1286
+ },
1287
+ "nodeId": {
1288
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_nodeId"
1289
+ },
1290
+ "nodeToken": {
1291
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_nodeToken"
1292
+ },
1293
+ "dnsProvider": {
1294
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_dnsProvider"
1295
+ },
1296
+ "rootDomain": {
1297
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_rootDomain"
1298
+ },
1299
+ "dnsChallengeHandler": {
1300
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_dnsChallengeHandler"
1301
+ },
1302
+ "email": {
1303
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_email"
1304
+ },
1305
+ "domains": {
1306
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_domains",
1307
+ "@container": "@list"
1308
+ },
1309
+ "directoryUrl": {
1310
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_directoryUrl"
1311
+ },
1312
+ "fallbackDirectoryUrls": {
1313
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_fallbackDirectoryUrls",
1314
+ "@container": "@list"
1315
+ },
1316
+ "accountKeyPath": {
1317
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_accountKeyPath"
1318
+ },
1319
+ "certificateKeyPath": {
1320
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_certificateKeyPath"
1321
+ },
1322
+ "certificatePath": {
1323
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_certificatePath"
1324
+ },
1325
+ "fullChainPath": {
1326
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_fullChainPath"
1327
+ },
1328
+ "renewBeforeDays": {
1329
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_renewBeforeDays"
1330
+ },
1331
+ "propagationDelayMs": {
1332
+ "@id": "undefineds:dist/edge/acme/AcmeCertificateManager.jsonld#AcmeCertificateManager_options_propagationDelayMs"
1333
+ }
1334
+ }
1335
+ },
1336
+ "EdgeNodeModeDetector": {
1337
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector",
1338
+ "@prefix": true,
1339
+ "@context": {
1340
+ "options_baseDomain": {
1341
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector_options_baseDomain"
1342
+ },
1343
+ "options_connectivityTimeoutMs": {
1344
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector_options_connectivityTimeoutMs"
1345
+ },
1346
+ "options_maxDirectModeAttempts": {
1347
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector_options_maxDirectModeAttempts"
1348
+ },
1349
+ "baseDomain": {
1350
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector_options_baseDomain"
1351
+ },
1352
+ "connectivityTimeoutMs": {
1353
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector_options_connectivityTimeoutMs"
1354
+ },
1355
+ "maxDirectModeAttempts": {
1356
+ "@id": "undefineds:dist/edge/EdgeNodeModeDetector.jsonld#EdgeNodeModeDetector_options_maxDirectModeAttempts"
1357
+ }
1358
+ }
1359
+ },
1360
+ "ClusterIdentifierStrategy": {
1361
+ "@id": "undefineds:dist/util/identifiers/ClusterIdentifierStrategy.jsonld#ClusterIdentifierStrategy",
1362
+ "@prefix": true,
1363
+ "@context": {
1364
+ "options_baseUrl": {
1365
+ "@id": "undefineds:dist/util/identifiers/ClusterIdentifierStrategy.jsonld#ClusterIdentifierStrategy_options_baseUrl"
1366
+ },
1367
+ "options_allowedHosts": {
1368
+ "@id": "undefineds:dist/util/identifiers/ClusterIdentifierStrategy.jsonld#ClusterIdentifierStrategy_options_allowedHosts"
1369
+ },
1370
+ "baseUrl": {
1371
+ "@id": "undefineds:dist/util/identifiers/ClusterIdentifierStrategy.jsonld#ClusterIdentifierStrategy_options_baseUrl"
1372
+ },
1373
+ "allowedHosts": {
1374
+ "@id": "undefineds:dist/util/identifiers/ClusterIdentifierStrategy.jsonld#ClusterIdentifierStrategy_options_allowedHosts"
1375
+ }
1376
+ }
1377
+ },
1378
+ "UsageTrackingStore": {
1379
+ "@id": "undefineds:dist/storage/quota/UsageTrackingStore.jsonld#UsageTrackingStore",
1380
+ "@prefix": true,
1381
+ "@context": {
1382
+ "source": {
1383
+ "@id": "undefineds:dist/storage/quota/UsageTrackingStore.jsonld#UsageTrackingStore_source"
1384
+ },
1385
+ "options_identityDbUrl": {
1386
+ "@id": "undefineds:dist/storage/quota/UsageTrackingStore.jsonld#UsageTrackingStore_options_identityDbUrl"
1387
+ },
1388
+ "options_defaultAccountBandwidthLimitBps": {
1389
+ "@id": "undefineds:dist/storage/quota/UsageTrackingStore.jsonld#UsageTrackingStore_options_defaultAccountBandwidthLimitBps"
1390
+ }
1391
+ }
1392
+ },
1393
+ "CenterNodeRegistrationService": {
1394
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService",
1395
+ "@prefix": true,
1396
+ "@context": {
1397
+ "config_identityDbUrl": {
1398
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_identityDbUrl"
1399
+ },
1400
+ "config_port": {
1401
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_port"
1402
+ },
1403
+ "config_rootFilePath": {
1404
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_rootFilePath"
1405
+ },
1406
+ "config_nodeId": {
1407
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_nodeId"
1408
+ },
1409
+ "config_displayName": {
1410
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_displayName"
1411
+ },
1412
+ "config_heartbeatInterval": {
1413
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_heartbeatInterval"
1414
+ },
1415
+ "config_enabled": {
1416
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_enabled"
1417
+ },
1418
+ "identityDbUrl": {
1419
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_identityDbUrl"
1420
+ },
1421
+ "port": {
1422
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_port"
1423
+ },
1424
+ "rootFilePath": {
1425
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_rootFilePath"
1426
+ },
1427
+ "nodeId": {
1428
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_nodeId"
1429
+ },
1430
+ "displayName": {
1431
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_displayName"
1432
+ },
1433
+ "heartbeatInterval": {
1434
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_heartbeatInterval"
1435
+ },
1436
+ "enabled": {
1437
+ "@id": "undefineds:dist/identity/CenterNodeRegistrationService.jsonld#CenterNodeRegistrationService_config_enabled"
1438
+ }
1439
+ }
1440
+ },
1441
+ "PodRoutingHttpHandler": {
1442
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler",
1443
+ "@prefix": true,
1444
+ "@context": {
1445
+ "options_identityDbUrl": {
1446
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_identityDbUrl"
1447
+ },
1448
+ "options_nodeId": {
1449
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_nodeId"
1450
+ },
1451
+ "options_enabled": {
1452
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_enabled"
1453
+ },
1454
+ "options_podLookupRepository": {
1455
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_podLookupRepository"
1456
+ },
1457
+ "options_edgeNodeRepository": {
1458
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_edgeNodeRepository"
1459
+ },
1460
+ "identityDbUrl": {
1461
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_identityDbUrl"
1462
+ },
1463
+ "nodeId": {
1464
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_nodeId"
1465
+ },
1466
+ "enabled": {
1467
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_enabled"
1468
+ },
1469
+ "podLookupRepository": {
1470
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_podLookupRepository"
1471
+ },
1472
+ "edgeNodeRepository": {
1473
+ "@id": "undefineds:dist/http/PodRoutingHttpHandler.jsonld#PodRoutingHttpHandler_options_edgeNodeRepository"
1474
+ }
1475
+ }
1476
+ },
1477
+ "TieredMinioDataAccessor": {
1478
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor",
1479
+ "@prefix": true,
1480
+ "@context": {
1481
+ "config_resourceMapper": {
1482
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_resourceMapper"
1483
+ },
1484
+ "config_accessKey": {
1485
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_accessKey"
1486
+ },
1487
+ "config_secretKey": {
1488
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_secretKey"
1489
+ },
1490
+ "config_endpoint": {
1491
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_endpoint"
1492
+ },
1493
+ "config_bucketName": {
1494
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_bucketName"
1495
+ },
1496
+ "config_cachePath": {
1497
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_cachePath"
1498
+ },
1499
+ "config_cacheMaxSize": {
1500
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_cacheMaxSize"
1501
+ },
1502
+ "config_region": {
1503
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_region"
1504
+ },
1505
+ "config_regionBuckets": {
1506
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_regionBuckets",
1507
+ "@container": "@list"
1508
+ },
1509
+ "resourceMapper": {
1510
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_resourceMapper"
1511
+ },
1512
+ "accessKey": {
1513
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_accessKey"
1514
+ },
1515
+ "secretKey": {
1516
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_secretKey"
1517
+ },
1518
+ "endpoint": {
1519
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_endpoint"
1520
+ },
1521
+ "bucketName": {
1522
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_bucketName"
1523
+ },
1524
+ "cachePath": {
1525
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_cachePath"
1526
+ },
1527
+ "cacheMaxSize": {
1528
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_cacheMaxSize"
1529
+ },
1530
+ "region": {
1531
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_region"
1532
+ },
1533
+ "regionBuckets": {
1534
+ "@id": "undefineds:dist/storage/accessors/TieredMinioDataAccessor.jsonld#TieredMinioDataAccessor_config_regionBuckets",
1535
+ "@container": "@list"
1536
+ }
1537
+ }
1538
+ },
1539
+ "PodMigrationHttpHandler": {
1540
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler",
1541
+ "@prefix": true,
1542
+ "@context": {
1543
+ "options_identityDbUrl": {
1544
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_identityDbUrl"
1545
+ },
1546
+ "options_currentNodeId": {
1547
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_currentNodeId"
1548
+ },
1549
+ "options_basePath": {
1550
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_basePath"
1551
+ },
1552
+ "options_enabled": {
1553
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_enabled"
1554
+ },
1555
+ "identityDbUrl": {
1556
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_identityDbUrl"
1557
+ },
1558
+ "currentNodeId": {
1559
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_currentNodeId"
1560
+ },
1561
+ "basePath": {
1562
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_basePath"
1563
+ },
1564
+ "enabled": {
1565
+ "@id": "undefineds:dist/http/cluster/PodMigrationHttpHandler.jsonld#PodMigrationHttpHandler_options_enabled"
1566
+ }
1567
+ }
1568
+ },
1569
+ "PodMigrationService": {
1570
+ "@id": "undefineds:dist/service/PodMigrationService.jsonld#PodMigrationService",
1571
+ "@prefix": true,
1572
+ "@context": {
1573
+ "config_identityDbUrl": {
1574
+ "@id": "undefineds:dist/service/PodMigrationService.jsonld#PodMigrationService_config_identityDbUrl"
1575
+ },
1576
+ "config_currentNodeId": {
1577
+ "@id": "undefineds:dist/service/PodMigrationService.jsonld#PodMigrationService_config_currentNodeId"
1578
+ },
1579
+ "identityDbUrl": {
1580
+ "@id": "undefineds:dist/service/PodMigrationService.jsonld#PodMigrationService_config_identityDbUrl"
1581
+ },
1582
+ "currentNodeId": {
1583
+ "@id": "undefineds:dist/service/PodMigrationService.jsonld#PodMigrationService_config_currentNodeId"
1584
+ }
1585
+ }
1586
+ },
1587
+ "ReactAppViewHandler": {
1588
+ "@id": "undefineds:dist/identity/ReactAppViewHandler.jsonld#ReactAppViewHandler",
1589
+ "@prefix": true,
1590
+ "@context": {
1591
+ "htmlFile": {
1592
+ "@id": "undefineds:dist/identity/ReactAppViewHandler.jsonld#ReactAppViewHandler_htmlFile"
1593
+ },
1594
+ "templateEngine": {
1595
+ "@id": "undefineds:dist/identity/ReactAppViewHandler.jsonld#ReactAppViewHandler_templateEngine"
1596
+ },
1597
+ "templates": {
1598
+ "@id": "undefineds:dist/identity/ReactAppViewHandler.jsonld#ReactAppViewHandler_templates",
1599
+ "@container": "@list"
1600
+ },
1601
+ "index": {
1602
+ "@id": "undefineds:dist/identity/ReactAppViewHandler.jsonld#ReactAppViewHandler_index"
1603
+ }
1604
+ }
1605
+ },
1606
+ "QuintStore": {
1607
+ "@id": "undefineds:dist/storage/quint/types.jsonld#QuintStore",
1608
+ "@prefix": true,
1609
+ "@context": {}
1610
+ },
1611
+ "SqliteQuintStore": {
1612
+ "@id": "undefineds:dist/storage/quint/SqliteQuintStore.jsonld#SqliteQuintStore",
1613
+ "@prefix": true,
1614
+ "@context": {
1615
+ "options_path": {
1616
+ "@id": "undefineds:dist/storage/quint/SqliteQuintStore.jsonld#SqliteQuintStore_options_path"
1617
+ },
1618
+ "options_debug": {
1619
+ "@id": "undefineds:dist/storage/quint/SqliteQuintStore.jsonld#SqliteQuintStore_options_debug"
1620
+ },
1621
+ "path": {
1622
+ "@id": "undefineds:dist/storage/quint/SqliteQuintStore.jsonld#SqliteQuintStore_options_path"
1623
+ },
1624
+ "debug": {
1625
+ "@id": "undefineds:dist/storage/quint/SqliteQuintStore.jsonld#SqliteQuintStore_options_debug"
1626
+ }
1627
+ }
1628
+ },
1629
+ "PgQuintStore": {
1630
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore",
1631
+ "@prefix": true,
1632
+ "@context": {
1633
+ "options_driver": {
1634
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_driver"
1635
+ },
1636
+ "options_dataDir": {
1637
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_dataDir"
1638
+ },
1639
+ "options_connectionString": {
1640
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_connectionString"
1641
+ },
1642
+ "options_host": {
1643
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_host"
1644
+ },
1645
+ "options_port": {
1646
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_port"
1647
+ },
1648
+ "options_database": {
1649
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_database"
1650
+ },
1651
+ "options_user": {
1652
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_user"
1653
+ },
1654
+ "options_password": {
1655
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_password"
1656
+ },
1657
+ "options_pool": {
1658
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_pool"
1659
+ },
1660
+ "options_debug": {
1661
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_debug"
1662
+ },
1663
+ "driver": {
1664
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_driver"
1665
+ },
1666
+ "dataDir": {
1667
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_dataDir"
1668
+ },
1669
+ "connectionString": {
1670
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_connectionString"
1671
+ },
1672
+ "host": {
1673
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_host"
1674
+ },
1675
+ "port": {
1676
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_port"
1677
+ },
1678
+ "database": {
1679
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_database"
1680
+ },
1681
+ "user": {
1682
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_user"
1683
+ },
1684
+ "password": {
1685
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_password"
1686
+ },
1687
+ "pool": {
1688
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_pool"
1689
+ },
1690
+ "debug": {
1691
+ "@id": "undefineds:dist/storage/quint/PgQuintStore.jsonld#PgQuintStore_options_debug"
1692
+ }
1693
+ }
1694
+ },
1695
+ "BaseQuintStore": {
1696
+ "@id": "undefineds:dist/storage/quint/BaseQuintStore.jsonld#BaseQuintStore",
1697
+ "@prefix": true,
1698
+ "@context": {
1699
+ "options_debug": {
1700
+ "@id": "undefineds:dist/storage/quint/BaseQuintStore.jsonld#BaseQuintStore_options_debug"
1701
+ }
1702
+ }
1703
+ },
1704
+ "VectorStore": {
1705
+ "@id": "undefineds:dist/storage/vector/VectorStore.jsonld#VectorStore",
1706
+ "@prefix": true,
1707
+ "@context": {}
1708
+ },
1709
+ "SqliteVectorStore": {
1710
+ "@id": "undefineds:dist/storage/vector/SqliteVectorStore.jsonld#SqliteVectorStore",
1711
+ "@prefix": true,
1712
+ "@context": {
1713
+ "options_connectionString": {
1714
+ "@id": "undefineds:dist/storage/vector/SqliteVectorStore.jsonld#SqliteVectorStore_options_connectionString"
1715
+ }
1716
+ }
1717
+ },
1718
+ "PostgresVectorStore": {
1719
+ "@id": "undefineds:dist/storage/vector/PostgresVectorStore.jsonld#PostgresVectorStore",
1720
+ "@prefix": true,
1721
+ "@context": {
1722
+ "options_connectionString": {
1723
+ "@id": "undefineds:dist/storage/vector/PostgresVectorStore.jsonld#PostgresVectorStore_options_connectionString"
1724
+ }
1725
+ }
1726
+ },
1727
+ "VectorHttpHandler": {
1728
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler",
1729
+ "@prefix": true,
1730
+ "@context": {
1731
+ "options_sidecarPath": {
1732
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_options_sidecarPath"
1733
+ },
1734
+ "vectorStore": {
1735
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_vectorStore"
1736
+ },
1737
+ "credentialsExtractor": {
1738
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_credentialsExtractor"
1739
+ },
1740
+ "permissionReader": {
1741
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_permissionReader"
1742
+ },
1743
+ "authorizer": {
1744
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_authorizer"
1745
+ },
1746
+ "ecarPath": {
1747
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_options_sidecarPath"
1748
+ },
1749
+ "": {
1750
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_vectorStore"
1751
+ },
1752
+ "Extractor": {
1753
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_credentialsExtractor"
1754
+ },
1755
+ "eader": {
1756
+ "@id": "undefineds:dist/http/vector/VectorHttpHandler.jsonld#VectorHttpHandler_permissionReader"
1757
+ }
1758
+ }
1759
+ },
1760
+ "ProviderRegistry": {
1761
+ "@id": "undefineds:dist/embedding/ProviderRegistry.jsonld#ProviderRegistry",
1762
+ "@prefix": true,
1763
+ "@context": {}
1764
+ },
1765
+ "ProviderRegistryImpl": {
1766
+ "@id": "undefineds:dist/embedding/ProviderRegistryImpl.jsonld#ProviderRegistryImpl",
1767
+ "@prefix": true,
1768
+ "@context": {}
1769
+ },
1770
+ "EmbeddingService": {
1771
+ "@id": "undefineds:dist/embedding/EmbeddingService.jsonld#EmbeddingService",
1772
+ "@prefix": true,
1773
+ "@context": {}
1774
+ },
1775
+ "EmbeddingServiceImpl": {
1776
+ "@id": "undefineds:dist/embedding/EmbeddingServiceImpl.jsonld#EmbeddingServiceImpl",
1777
+ "@prefix": true,
1778
+ "@context": {
1779
+ "providerRegistry": {
1780
+ "@id": "undefineds:dist/embedding/EmbeddingServiceImpl.jsonld#EmbeddingServiceImpl_providerRegistry"
1781
+ }
1782
+ }
1783
+ },
1784
+ "CredentialReader": {
1785
+ "@id": "undefineds:dist/embedding/CredentialReader.jsonld#CredentialReader",
1786
+ "@prefix": true,
1787
+ "@context": {}
1788
+ },
1789
+ "CredentialReaderImpl": {
1790
+ "@id": "undefineds:dist/embedding/CredentialReaderImpl.jsonld#CredentialReaderImpl",
1791
+ "@prefix": true,
1792
+ "@context": {}
1793
+ },
1794
+ "CloudflareTunnelProvider": {
1795
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider",
1796
+ "@prefix": true,
1797
+ "@context": {
1798
+ "options_apiToken": {
1799
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_apiToken"
1800
+ },
1801
+ "options_accountId": {
1802
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_accountId"
1803
+ },
1804
+ "options_baseDomain": {
1805
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_baseDomain"
1806
+ },
1807
+ "options_cloudflaredPath": {
1808
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_cloudflaredPath"
1809
+ },
1810
+ "apiToken": {
1811
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_apiToken"
1812
+ },
1813
+ "accountId": {
1814
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_accountId"
1815
+ },
1816
+ "baseDomain": {
1817
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_baseDomain"
1818
+ },
1819
+ "cloudflaredPath": {
1820
+ "@id": "undefineds:dist/tunnel/CloudflareTunnelProvider.jsonld#CloudflareTunnelProvider_options_cloudflaredPath"
1821
+ }
1822
+ }
1823
+ },
1824
+ "LocalTunnelProvider": {
1825
+ "@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider",
1826
+ "@prefix": true,
1827
+ "@context": {
1828
+ "options_tunnelToken": {
1829
+ "@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_tunnelToken"
1830
+ },
1831
+ "options_cloudflaredPath": {
1832
+ "@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_cloudflaredPath"
1833
+ },
1834
+ "tunnelToken": {
1835
+ "@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_tunnelToken"
1836
+ },
1837
+ "cloudflaredPath": {
1838
+ "@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_cloudflaredPath"
1839
+ }
1840
+ }
1841
+ },
1842
+ "MultiDomainIdentifierStrategy": {
1843
+ "@id": "undefineds:dist/util/identifiers/MultiDomainIdentifierStrategy.jsonld#MultiDomainIdentifierStrategy",
1844
+ "@prefix": true,
1845
+ "@context": {
1846
+ "primaryBaseUrl": {
1847
+ "@id": "undefineds:dist/util/identifiers/MultiDomainIdentifierStrategy.jsonld#MultiDomainIdentifierStrategy_primaryBaseUrl"
1848
+ },
1849
+ "additionalBaseUrls": {
1850
+ "@id": "undefineds:dist/util/identifiers/MultiDomainIdentifierStrategy.jsonld#MultiDomainIdentifierStrategy_additionalBaseUrls",
1851
+ "@container": "@list"
1852
+ }
1853
+ }
1854
+ },
1855
+ "SubdomainPodIdentifierStrategy": {
1856
+ "@id": "undefineds:dist/util/identifiers/SubdomainPodIdentifierStrategy.jsonld#SubdomainPodIdentifierStrategy",
1857
+ "@prefix": true,
1858
+ "@context": {
1859
+ "options_baseDomain": {
1860
+ "@id": "undefineds:dist/util/identifiers/SubdomainPodIdentifierStrategy.jsonld#SubdomainPodIdentifierStrategy_options_baseDomain"
1861
+ }
1862
+ }
1863
+ },
1864
+ "DisabledOidcHandler": {
1865
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler",
1866
+ "@prefix": true,
1867
+ "@context": {
1868
+ "options_externalJwksUrl": {
1869
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_externalJwksUrl"
1870
+ },
1871
+ "options_message": {
1872
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_message"
1873
+ },
1874
+ "options_cacheMs": {
1875
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_cacheMs"
1876
+ },
1877
+ "options_fullyDisabled": {
1878
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_fullyDisabled"
1879
+ },
1880
+ "externalJwksUrl": {
1881
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_externalJwksUrl"
1882
+ },
1883
+ "message": {
1884
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_message"
1885
+ },
1886
+ "cacheMs": {
1887
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_cacheMs"
1888
+ },
1889
+ "fullyDisabled": {
1890
+ "@id": "undefineds:dist/identity/oidc/DisabledOidcHandler.jsonld#DisabledOidcHandler_options_fullyDisabled"
1891
+ }
1892
+ }
1893
+ },
1894
+ "DisabledIdentityProviderHandler": {
1895
+ "@id": "undefineds:dist/identity/oidc/DisabledIdentityProviderHandler.jsonld#DisabledIdentityProviderHandler",
1896
+ "@prefix": true,
1897
+ "@context": {
1898
+ "options_message": {
1899
+ "@id": "undefineds:dist/identity/oidc/DisabledIdentityProviderHandler.jsonld#DisabledIdentityProviderHandler_options_message"
1900
+ },
1901
+ "options_allowReadOnly": {
1902
+ "@id": "undefineds:dist/identity/oidc/DisabledIdentityProviderHandler.jsonld#DisabledIdentityProviderHandler_options_allowReadOnly"
1903
+ },
1904
+ "message": {
1905
+ "@id": "undefineds:dist/identity/oidc/DisabledIdentityProviderHandler.jsonld#DisabledIdentityProviderHandler_options_message"
1906
+ },
1907
+ "allowReadOnly": {
1908
+ "@id": "undefineds:dist/identity/oidc/DisabledIdentityProviderHandler.jsonld#DisabledIdentityProviderHandler_options_allowReadOnly"
1909
+ }
1910
+ }
1911
+ },
1912
+ "AutoDetectOidcHandler": {
1913
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler",
1914
+ "@prefix": true,
1915
+ "@context": {
1916
+ "options_idpUrl": {
1917
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler_options_idpUrl"
1918
+ },
1919
+ "options_message": {
1920
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler_options_message"
1921
+ },
1922
+ "options_cacheMs": {
1923
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler_options_cacheMs"
1924
+ },
1925
+ "idpUrl": {
1926
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler_options_idpUrl"
1927
+ },
1928
+ "message": {
1929
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler_options_message"
1930
+ },
1931
+ "cacheMs": {
1932
+ "@id": "undefineds:dist/identity/oidc/AutoDetectOidcHandler.jsonld#AutoDetectOidcHandler_options_cacheMs"
1933
+ }
1934
+ }
1935
+ },
1936
+ "AutoDetectIdentityProviderHandler": {
1937
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler",
1938
+ "@prefix": true,
1939
+ "@context": {
1940
+ "options_idpUrl": {
1941
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler_options_idpUrl"
1942
+ },
1943
+ "options_message": {
1944
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler_options_message"
1945
+ },
1946
+ "options_source": {
1947
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler_options_source"
1948
+ },
1949
+ "idpUrl": {
1950
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler_options_idpUrl"
1951
+ },
1952
+ "message": {
1953
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler_options_message"
1954
+ },
1955
+ "source": {
1956
+ "@id": "undefineds:dist/identity/oidc/AutoDetectIdentityProviderHandler.jsonld#AutoDetectIdentityProviderHandler_options_source"
1957
+ }
1958
+ }
1959
+ }
1960
+ }
1961
+ ]
1962
+ }