@tstdl/base 0.87.13 → 0.88.0-alpha1

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 (740) hide show
  1. package/api/client/client.js +111 -127
  2. package/api/client/index.js +1 -18
  3. package/api/default-error-handlers.js +18 -44
  4. package/api/index.js +14 -20
  5. package/api/response.js +99 -123
  6. package/api/server/api-controller.js +43 -71
  7. package/api/server/api-request-token.provider.js +13 -40
  8. package/api/server/error-handler.js +25 -46
  9. package/api/server/gateway.js +219 -225
  10. package/api/server/index.js +5 -22
  11. package/api/server/middlewares/allowed-methods.middleware.js +17 -40
  12. package/api/server/middlewares/catch-error.middleware.js +12 -33
  13. package/api/server/middlewares/cors.middleware.js +49 -69
  14. package/api/server/middlewares/index.js +4 -21
  15. package/api/server/middlewares/response-time.middleware.js +8 -31
  16. package/api/server/module.js +18 -42
  17. package/api/server/tokens.js +6 -31
  18. package/api/types.js +14 -40
  19. package/api/utils.js +13 -36
  20. package/application/application.js +147 -169
  21. package/application/index.js +1 -18
  22. package/async-iterator-symbol.js +5 -28
  23. package/authentication/authentication.api.js +89 -113
  24. package/authentication/client/api.client.js +29 -57
  25. package/authentication/client/authentication.service.js +214 -235
  26. package/authentication/client/http-client.middleware.js +16 -38
  27. package/authentication/client/index.js +5 -22
  28. package/authentication/client/module.js +22 -45
  29. package/authentication/client/tokens.js +6 -30
  30. package/authentication/errors/index.js +1 -18
  31. package/authentication/errors/secret-requirements.error.js +6 -29
  32. package/authentication/index.js +2 -19
  33. package/authentication/models/authentication-credentials.model.js +37 -66
  34. package/authentication/models/authentication-session.model.js +51 -80
  35. package/authentication/models/index.js +6 -23
  36. package/authentication/models/init-secret-reset-data.model.js +16 -44
  37. package/authentication/models/secret-check-result.model.js +10 -36
  38. package/authentication/models/token-payload-base.model.js +31 -59
  39. package/authentication/models/token.model.js +1 -16
  40. package/authentication/server/authentication-api-request-token.provider.js +25 -52
  41. package/authentication/server/authentication-credentials.repository.js +1 -24
  42. package/authentication/server/authentication-secret-requirements.validator.js +30 -57
  43. package/authentication/server/authentication-secret-reset.handler.js +1 -24
  44. package/authentication/server/authentication-session.repository.js +1 -24
  45. package/authentication/server/authentication-subject.resolver.js +5 -24
  46. package/authentication/server/authentication-token-payload.provider.js +5 -29
  47. package/authentication/server/authentication.api-controller.js +89 -114
  48. package/authentication/server/authentication.service.js +273 -308
  49. package/authentication/server/helper.js +66 -87
  50. package/authentication/server/index.js +11 -28
  51. package/authentication/server/module.js +26 -48
  52. package/authentication/server/mongo/index.js +2 -19
  53. package/authentication/server/mongo/mongo-authentication-credentials.repository.js +54 -84
  54. package/authentication/server/mongo/mongo-authentication-session.repository.js +51 -81
  55. package/browser/browser-context-controller.js +106 -133
  56. package/browser/browser-controller.js +87 -113
  57. package/browser/browser.service.js +87 -117
  58. package/browser/document-controller.js +70 -94
  59. package/browser/element-controller.js +231 -252
  60. package/browser/frame-controller.js +24 -47
  61. package/browser/index.js +10 -27
  62. package/browser/locator-controller.js +36 -59
  63. package/browser/module.js +26 -50
  64. package/browser/page-controller.js +150 -166
  65. package/browser/pdf-options.js +73 -103
  66. package/browser/types.js +1 -16
  67. package/browser/utils.js +94 -128
  68. package/cancellation/index.js +1 -18
  69. package/cancellation/token.js +164 -184
  70. package/collections/awaitable/awaitable-list.js +99 -122
  71. package/collections/awaitable/awaitable-map.js +93 -116
  72. package/collections/awaitable/awaitable-set.js +63 -86
  73. package/collections/awaitable/index.js +3 -20
  74. package/collections/collection.js +1 -16
  75. package/collections/index.js +6 -23
  76. package/collections/keyed-set.js +53 -77
  77. package/collections/list.js +1 -16
  78. package/collections/observable/index.js +8 -25
  79. package/collections/observable/observable-array.js +95 -118
  80. package/collections/observable/observable-collection-base.js +60 -83
  81. package/collections/observable/observable-collection.js +1 -16
  82. package/collections/observable/observable-list-base.js +55 -78
  83. package/collections/observable/observable-list.js +1 -16
  84. package/collections/observable/observable-map.js +56 -79
  85. package/collections/observable/observable-set.js +75 -98
  86. package/collections/observable/observable-sorted-array-list.js +165 -188
  87. package/collections/sorted-array-list.js +156 -179
  88. package/collections/sorted-list.js +1 -16
  89. package/collections/sorted-map.js +70 -93
  90. package/container/decorators.js +1 -34
  91. package/container/index.js +3 -20
  92. package/container/interfaces.js +1 -25
  93. package/container/token.js +1 -26
  94. package/cookie/cookie.js +49 -71
  95. package/cookie/index.js +1 -18
  96. package/core.js +56 -81
  97. package/data-structures/array-dictionary.js +89 -110
  98. package/data-structures/array-list.js +107 -130
  99. package/data-structures/cache.js +41 -64
  100. package/data-structures/circular-buffer.js +200 -220
  101. package/data-structures/collection.js +86 -109
  102. package/data-structures/dictionary.js +51 -75
  103. package/data-structures/distinct-collection.js +49 -73
  104. package/data-structures/index-out-of-bounds.error.js +8 -31
  105. package/data-structures/index.js +16 -33
  106. package/data-structures/iterable-weak-map.js +129 -149
  107. package/data-structures/linked-list.js +368 -385
  108. package/data-structures/list.js +86 -109
  109. package/data-structures/map-dictionary.js +55 -78
  110. package/data-structures/multi-key-map.js +141 -163
  111. package/data-structures/multi-key-set.js +56 -79
  112. package/data-structures/set-collection.js +54 -77
  113. package/data-structures/sorted-array-list.js +140 -166
  114. package/data-structures/weak-ref-map.js +126 -146
  115. package/database/entity-repository.js +2 -26
  116. package/database/entity.js +1 -16
  117. package/database/id.js +8 -29
  118. package/database/index.js +6 -23
  119. package/database/module.js +9 -33
  120. package/database/mongo/classes.js +18 -43
  121. package/database/mongo/index.js +10 -27
  122. package/database/mongo/model/document.js +62 -93
  123. package/database/mongo/model/index.js +1 -18
  124. package/database/mongo/module.js +59 -79
  125. package/database/mongo/mongo-base.repository.js +259 -283
  126. package/database/mongo/mongo-bulk.js +87 -110
  127. package/database/mongo/mongo-entity-repository.js +270 -296
  128. package/database/mongo/operations.js +48 -76
  129. package/database/mongo/query-converter.js +73 -96
  130. package/database/mongo/simple-entity-repository.js +5 -28
  131. package/database/mongo/types.js +2 -25
  132. package/database/query.js +7 -36
  133. package/database/utils.js +2 -25
  134. package/decorators/index.js +1 -18
  135. package/decorators/log.js +29 -51
  136. package/disposable/async-disposer.js +118 -130
  137. package/disposable/disposable.js +9 -36
  138. package/disposable/index.js +3 -20
  139. package/disposable/using.js +15 -37
  140. package/distributed-loop/controller.js +1 -16
  141. package/distributed-loop/distributed-loop.js +77 -105
  142. package/distributed-loop/index.js +3 -20
  143. package/distributed-loop/provider.js +21 -48
  144. package/enumerable/async-enumerable.js +238 -261
  145. package/enumerable/enumerable-methods.js +1 -16
  146. package/enumerable/enumerable.js +177 -200
  147. package/enumerable/index.js +2 -19
  148. package/environment.js +25 -57
  149. package/error/api.error.js +10 -33
  150. package/error/assertion.error.js +6 -29
  151. package/error/bad-request.error.js +6 -29
  152. package/error/custom.error.js +25 -47
  153. package/error/details.error.js +8 -31
  154. package/error/forbidden.error.js +6 -29
  155. package/error/index.js +16 -33
  156. package/error/invalid-token.error.js +6 -29
  157. package/error/max-bytes-exceeded.error.js +9 -32
  158. package/error/method-not-allowed.error.js +6 -29
  159. package/error/multi.error.js +8 -31
  160. package/error/not-found.error.js +6 -29
  161. package/error/not-implemented.error.js +6 -29
  162. package/error/not-supported.error.js +11 -34
  163. package/error/timeout.error.js +6 -29
  164. package/error/unauthorized.error.js +6 -29
  165. package/error/unsupported-media-type.error.js +6 -29
  166. package/examples/api/authentication.js +49 -49
  167. package/examples/api/basic-overview.js +80 -85
  168. package/examples/api/custom-authentication.js +94 -99
  169. package/examples/api/streaming.js +90 -95
  170. package/examples/browser/basic.js +21 -22
  171. package/examples/http/client.js +15 -16
  172. package/examples/mail/basic.js +41 -42
  173. package/examples/mail/templates/hello-name.js +10 -33
  174. package/examples/pdf/basic.js +48 -49
  175. package/examples/pdf/templates/hello-name.js +35 -58
  176. package/examples/reflection/basic.js +53 -84
  177. package/examples/template/basic.js +32 -33
  178. package/examples/template/templates/hello-jsx.js +8 -32
  179. package/examples/template/templates/hello-name.js +18 -41
  180. package/function/index.js +1 -18
  181. package/function/log.js +18 -40
  182. package/http/client/adapters/undici-http-client.adapter.js +92 -111
  183. package/http/client/http-client-options.js +10 -33
  184. package/http/client/http-client-request.js +149 -171
  185. package/http/client/http-client-response.js +33 -56
  186. package/http/client/http-client.adapter.js +1 -24
  187. package/http/client/http-client.js +295 -313
  188. package/http/client/index.js +6 -23
  189. package/http/client/middleware.js +1 -16
  190. package/http/client/module.js +20 -43
  191. package/http/client/tokens.js +2 -25
  192. package/http/cookie-parser.js +19 -42
  193. package/http/http-body.js +52 -75
  194. package/http/http-form.js +14 -37
  195. package/http/http-headers.js +86 -109
  196. package/http/http-query.js +14 -37
  197. package/http/http-url-parameters.js +8 -31
  198. package/http/http-value-map.js +110 -133
  199. package/http/http.error.js +60 -82
  200. package/http/index.js +11 -28
  201. package/http/server/http-server-request.js +24 -47
  202. package/http/server/http-server-response.js +22 -45
  203. package/http/server/http-server.js +2 -25
  204. package/http/server/index.js +3 -20
  205. package/http/server/node/index.js +2 -19
  206. package/http/server/node/module.js +8 -28
  207. package/http/server/node/node-http-server.js +205 -230
  208. package/http/types.js +21 -47
  209. package/http/utils.js +92 -108
  210. package/image-service/image-service.js +59 -91
  211. package/image-service/imgproxy/imgproxy-image-service.js +88 -125
  212. package/image-service/imgproxy/index.js +1 -18
  213. package/image-service/index.js +1 -18
  214. package/import.js +2 -25
  215. package/index.js +1 -18
  216. package/injector/decorators.js +134 -112
  217. package/injector/index.js +11 -28
  218. package/injector/inject.js +104 -103
  219. package/injector/injector.js +481 -497
  220. package/injector/interfaces.js +2 -26
  221. package/injector/provider.js +22 -54
  222. package/injector/resolve-chain.js +91 -117
  223. package/injector/resolve.error.js +11 -36
  224. package/injector/symbols.js +2 -26
  225. package/injector/token.js +17 -38
  226. package/injector/type-info.js +1 -16
  227. package/injector/types.js +1 -16
  228. package/interfaces.js +1 -16
  229. package/json-path/index.js +1 -18
  230. package/json-path/json-path.js +138 -138
  231. package/key-value-store/index.js +2 -19
  232. package/key-value-store/key-value-store.provider.js +1 -24
  233. package/key-value-store/key-value.store.js +6 -29
  234. package/key-value-store/mongo/index.js +6 -23
  235. package/key-value-store/mongo/module.js +17 -35
  236. package/key-value-store/mongo/mongo-key-value-store.provider.js +21 -48
  237. package/key-value-store/mongo/mongo-key-value.model.js +1 -16
  238. package/key-value-store/mongo/mongo-key-value.repository.js +23 -52
  239. package/key-value-store/mongo/mongo-key-value.store.js +60 -89
  240. package/key-value-store/mongo/tokens.js +2 -25
  241. package/lock/index.js +2 -19
  242. package/lock/lock.js +6 -29
  243. package/lock/mongo/index.js +5 -22
  244. package/lock/mongo/lock.js +112 -135
  245. package/lock/mongo/model.js +1 -16
  246. package/lock/mongo/module.js +18 -37
  247. package/lock/mongo/mongo-lock-repository.js +57 -85
  248. package/lock/mongo/provider.js +39 -68
  249. package/lock/provider.js +2 -25
  250. package/lock/web/index.js +3 -20
  251. package/lock/web/module.js +11 -31
  252. package/lock/web/web-lock.js +81 -105
  253. package/lock/web/web-lock.provider.js +28 -57
  254. package/logger/console/index.js +1 -18
  255. package/logger/console/logger.js +55 -81
  256. package/logger/index.js +3 -20
  257. package/logger/level.js +8 -31
  258. package/logger/logger.js +38 -61
  259. package/logger/noop/index.js +1 -18
  260. package/logger/noop/logger.js +20 -42
  261. package/logger/tokens.js +2 -25
  262. package/mail/clients/nodemailer.mail-client.js +64 -91
  263. package/mail/index.js +5 -22
  264. package/mail/mail-log.repository.js +2 -25
  265. package/mail/mail.client.js +35 -63
  266. package/mail/mail.service.js +74 -106
  267. package/mail/models/index.js +6 -23
  268. package/mail/models/mail-address.model.js +1 -16
  269. package/mail/models/mail-content.model.js +1 -16
  270. package/mail/models/mail-data.model.js +1 -16
  271. package/mail/models/mail-log.model.js +1 -16
  272. package/mail/models/mail-send-result.model.js +1 -16
  273. package/mail/models/mail-template.model.js +5 -28
  274. package/mail/module.js +21 -41
  275. package/mail/repositories/mongo-mail-log.repository.js +25 -56
  276. package/mail/tokens.js +2 -25
  277. package/memory/finalization.js +36 -60
  278. package/memory/index.js +2 -19
  279. package/memory/observable-finalization-registry.js +9 -32
  280. package/message-bus/broadcast-channel/broadcast-channel-message-bus-provider.js +24 -53
  281. package/message-bus/broadcast-channel/broadcast-channel-message-bus.js +47 -74
  282. package/message-bus/broadcast-channel/index.js +3 -20
  283. package/message-bus/broadcast-channel/module.js +11 -31
  284. package/message-bus/index.js +3 -20
  285. package/message-bus/local/index.js +3 -20
  286. package/message-bus/local/local-message-bus-provider.js +36 -65
  287. package/message-bus/local/local-message-bus.js +39 -66
  288. package/message-bus/local/module.js +11 -31
  289. package/message-bus/local/types.js +1 -16
  290. package/message-bus/message-bus-base.js +41 -63
  291. package/message-bus/message-bus-provider.js +1 -24
  292. package/message-bus/message-bus.js +6 -29
  293. package/migration/index.js +3 -20
  294. package/migration/migration-state-repository.js +2 -25
  295. package/migration/migration-state.js +1 -16
  296. package/migration/migrator.js +81 -108
  297. package/migration/mongo/index.js +2 -19
  298. package/migration/mongo/migration-state-repository.js +24 -53
  299. package/migration/mongo/module.js +15 -34
  300. package/module/index.js +4 -21
  301. package/module/module-base.js +37 -60
  302. package/module/module-metric-reporter.js +58 -77
  303. package/module/module.js +10 -34
  304. package/module/modules/function.module.js +11 -34
  305. package/module/modules/index.js +2 -19
  306. package/module/modules/web-server.module.js +54 -83
  307. package/module/utils.js +19 -43
  308. package/notification/api.js +22 -50
  309. package/notification/models/index.js +2 -19
  310. package/notification/models/notification-channel-job.model.js +1 -16
  311. package/notification/models/notification.model.js +75 -103
  312. package/notification/module.js +8 -28
  313. package/notification/notification-channel.service.js +1 -24
  314. package/notification/notification.repository.js +1 -24
  315. package/notification/notification.service.js +31 -58
  316. package/object-storage/index.js +3 -20
  317. package/object-storage/object-storage-provider.js +1 -24
  318. package/object-storage/object-storage.js +7 -30
  319. package/object-storage/object.js +7 -30
  320. package/object-storage/s3/index.js +3 -20
  321. package/object-storage/s3/s3.object-storage-provider.js +75 -100
  322. package/object-storage/s3/s3.object-storage.js +134 -160
  323. package/object-storage/s3/s3.object.js +39 -62
  324. package/openid-connect/cached-oidc-configuration.service.js +36 -65
  325. package/openid-connect/index.js +11 -28
  326. package/openid-connect/mongo-oidc-state.repository.js +40 -65
  327. package/openid-connect/oidc-configuration.service.js +39 -66
  328. package/openid-connect/oidc-state.model.js +1 -16
  329. package/openid-connect/oidc-state.repository.js +2 -25
  330. package/openid-connect/oidc.service-model.js +1 -16
  331. package/openid-connect/oidc.service.js +158 -187
  332. package/package.json +7 -5
  333. package/password/have-i-been-pwned.js +21 -39
  334. package/password/index.js +4 -21
  335. package/password/password-check-result.model.js +34 -63
  336. package/password/password-check.js +46 -76
  337. package/password/password-check.localization.js +86 -111
  338. package/pdf/index.js +1 -18
  339. package/pdf/pdf.service.js +172 -206
  340. package/polyfills.js +1 -2
  341. package/pool/index.js +1 -18
  342. package/pool/pool.js +116 -133
  343. package/process-shutdown.js +57 -81
  344. package/promise/cancelable-promise.js +23 -41
  345. package/promise/deferred-promise.js +68 -92
  346. package/promise/index.js +3 -20
  347. package/promise/lazy-promise.js +24 -47
  348. package/queue/enqueue-batch.js +18 -41
  349. package/queue/index.js +3 -20
  350. package/queue/mongo/index.js +4 -21
  351. package/queue/mongo/job.js +1 -16
  352. package/queue/mongo/mongo-job.repository.js +45 -70
  353. package/queue/mongo/queue.js +243 -265
  354. package/queue/mongo/queue.provider.js +47 -72
  355. package/queue/provider.js +1 -24
  356. package/queue/queue.js +15 -41
  357. package/random/index.js +2 -19
  358. package/random/number-generator/index.js +3 -20
  359. package/random/number-generator/mulberry32.js +34 -51
  360. package/random/number-generator/random-number-generator-function.js +1 -24
  361. package/random/number-generator/random-number-generator.js +8 -31
  362. package/random/number-generator/seeded-random-number-generator.js +5 -28
  363. package/random/number-generator/sfc32.js +41 -64
  364. package/random/number-generator/utils.js +2 -25
  365. package/random/series.js +41 -43
  366. package/reflection/decorator-data.js +63 -80
  367. package/reflection/decorators.js +39 -69
  368. package/reflection/index.js +5 -22
  369. package/reflection/reflection-data-map.js +32 -55
  370. package/reflection/registry.js +110 -130
  371. package/reflection/types.js +1 -16
  372. package/reflection/utils.js +96 -124
  373. package/require.js +3 -26
  374. package/rpc/endpoints/message-port.rpc-endpoint.js +29 -48
  375. package/rpc/index.js +4 -21
  376. package/rpc/model.js +7 -30
  377. package/rpc/rpc-endpoint.js +17 -40
  378. package/rpc/rpc-error.js +17 -40
  379. package/rpc/rpc.js +223 -235
  380. package/rxjs/cast.js +4 -28
  381. package/rxjs/index.js +13 -30
  382. package/rxjs/intersection-observer.js +25 -48
  383. package/rxjs/media-query.js +8 -27
  384. package/rxjs/mutation-observer.js +28 -50
  385. package/rxjs/noop.js +4 -28
  386. package/rxjs/performance-observer.js +37 -60
  387. package/rxjs/resize-observer.js +28 -50
  388. package/rxjs/retry-backoff.js +23 -47
  389. package/rxjs/slow-array.js +22 -36
  390. package/rxjs/start-with-provider.js +5 -28
  391. package/rxjs/teardown.js +21 -44
  392. package/rxjs/timing.js +26 -57
  393. package/rxjs/touch.js +11 -30
  394. package/schema/array-constraints/index.js +2 -19
  395. package/schema/array-constraints/maximum-length.js +19 -42
  396. package/schema/array-constraints/minimum-length.js +19 -42
  397. package/schema/coercers/boolean.coercer.js +25 -49
  398. package/schema/coercers/date.coercer.js +14 -38
  399. package/schema/coercers/index.js +6 -23
  400. package/schema/coercers/number.coercer.js +12 -36
  401. package/schema/coercers/regexp.coercer.js +18 -41
  402. package/schema/coercers/string.coercer.js +12 -36
  403. package/schema/coercers/uint8-array.coercer.js +20 -44
  404. package/schema/constraints/enumeration.js +27 -49
  405. package/schema/constraints/generic.js +21 -41
  406. package/schema/constraints/index.js +12 -29
  407. package/schema/constraints/integer.js +20 -44
  408. package/schema/constraints/length.js +14 -36
  409. package/schema/constraints/literal.js +22 -44
  410. package/schema/constraints/maximum-date.js +23 -46
  411. package/schema/constraints/maximum-length.js +22 -45
  412. package/schema/constraints/maximum.js +21 -44
  413. package/schema/constraints/minimum-date.js +23 -46
  414. package/schema/constraints/minimum-length.js +22 -45
  415. package/schema/constraints/minimum.js +21 -44
  416. package/schema/constraints/pattern.js +23 -46
  417. package/schema/decorators/class.js +4 -26
  418. package/schema/decorators/coerce.js +4 -26
  419. package/schema/decorators/constraint.js +6 -28
  420. package/schema/decorators/index.js +6 -23
  421. package/schema/decorators/property.js +16 -38
  422. package/schema/decorators/types.js +1 -16
  423. package/schema/decorators/utils.js +45 -73
  424. package/schema/index.js +10 -27
  425. package/schema/schema.error.js +59 -72
  426. package/schema/schema.js +256 -274
  427. package/schema/schemas/any.js +7 -30
  428. package/schema/schemas/array.js +21 -44
  429. package/schema/schemas/assign.js +23 -46
  430. package/schema/schemas/boolean.js +7 -30
  431. package/schema/schemas/constraint.js +6 -29
  432. package/schema/schemas/date.js +20 -43
  433. package/schema/schemas/defaulted.js +8 -31
  434. package/schema/schemas/enumeration.js +15 -38
  435. package/schema/schemas/index.js +26 -43
  436. package/schema/schemas/instance.js +4 -26
  437. package/schema/schemas/literal.js +15 -38
  438. package/schema/schemas/nullable.js +7 -30
  439. package/schema/schemas/number.js +25 -48
  440. package/schema/schemas/object.js +10 -34
  441. package/schema/schemas/omit.js +14 -37
  442. package/schema/schemas/one-or-many.js +13 -35
  443. package/schema/schemas/optional.js +6 -30
  444. package/schema/schemas/partial.js +16 -39
  445. package/schema/schemas/pick.js +14 -37
  446. package/schema/schemas/readable-stream.js +7 -30
  447. package/schema/schemas/record.js +9 -31
  448. package/schema/schemas/regexp.js +7 -30
  449. package/schema/schemas/string.js +36 -59
  450. package/schema/schemas/transform.js +6 -29
  451. package/schema/schemas/uint8-array.js +27 -50
  452. package/schema/schemas/union.js +11 -34
  453. package/schema/schemas/unknown.js +7 -30
  454. package/schema/transformers/generic.js +16 -39
  455. package/schema/transformers/index.js +4 -21
  456. package/schema/transformers/lowercase.js +10 -33
  457. package/schema/transformers/trim.js +10 -33
  458. package/schema/transformers/uppercase.js +10 -33
  459. package/schema/types/index.js +5 -22
  460. package/schema/types/schema-array-constraint.js +1 -24
  461. package/schema/types/schema-value-coercer.js +1 -24
  462. package/schema/types/schema-value-constraint.js +1 -24
  463. package/schema/types/schema-value-transformer.js +1 -24
  464. package/schema/types/types.js +161 -191
  465. package/schema/utils/index.js +2 -19
  466. package/schema/utils/schema.js +120 -142
  467. package/schema/utils/value-type.js +51 -74
  468. package/search-index/elastic/config.js +21 -50
  469. package/search-index/elastic/index.js +6 -23
  470. package/search-index/elastic/keyword-rewriter.js +17 -40
  471. package/search-index/elastic/model/elastic-query.js +1 -16
  472. package/search-index/elastic/model/index-mapping.js +4 -26
  473. package/search-index/elastic/model/index.js +3 -20
  474. package/search-index/elastic/model/sort.js +1 -16
  475. package/search-index/elastic/module.js +43 -68
  476. package/search-index/elastic/query-builder/boolean-query-builder.js +46 -69
  477. package/search-index/elastic/query-builder/index.js +1 -18
  478. package/search-index/elastic/query-converter.js +174 -192
  479. package/search-index/elastic/search-index.js +132 -153
  480. package/search-index/elastic/sort-converter.js +12 -34
  481. package/search-index/elastic/types.js +1 -16
  482. package/search-index/error.js +12 -35
  483. package/search-index/index.js +3 -20
  484. package/search-index/memory/index.js +1 -18
  485. package/search-index/memory/memory-search-index.js +130 -152
  486. package/search-index/search-index.js +30 -53
  487. package/search-index/search-result.js +1 -16
  488. package/serializer/handlers/binary.js +19 -47
  489. package/serializer/handlers/date.js +4 -28
  490. package/serializer/handlers/error.js +7 -31
  491. package/serializer/handlers/index.js +7 -24
  492. package/serializer/handlers/map.js +16 -40
  493. package/serializer/handlers/regex.js +7 -31
  494. package/serializer/handlers/register.js +36 -59
  495. package/serializer/handlers/set.js +13 -37
  496. package/serializer/index.js +3 -30
  497. package/serializer/serializable.js +43 -68
  498. package/serializer/serializer.js +244 -264
  499. package/serializer/types.js +6 -34
  500. package/signals/api.js +18 -46
  501. package/signals/computed-with-dependencies.js +8 -31
  502. package/signals/effect-with-dependencies.js +8 -31
  503. package/signals/implementation/api.js +33 -33
  504. package/signals/implementation/computed.js +125 -104
  505. package/signals/implementation/configure.js +18 -41
  506. package/signals/implementation/effect.js +48 -66
  507. package/signals/implementation/errors.js +5 -29
  508. package/signals/implementation/graph.js +168 -136
  509. package/signals/implementation/index.js +10 -27
  510. package/signals/implementation/signal.js +91 -101
  511. package/signals/implementation/to-observable.js +21 -38
  512. package/signals/implementation/to-signal.js +44 -60
  513. package/signals/implementation/untracked.js +15 -31
  514. package/signals/implementation/watch.js +58 -73
  515. package/signals/index.js +9 -26
  516. package/signals/lazylize.js +4 -27
  517. package/signals/pipe.js +9 -33
  518. package/signals/switch-map.js +4 -27
  519. package/signals/to-signal-2.js +38 -61
  520. package/signals/types.js +1 -16
  521. package/signals/untracked-operator.js +11 -33
  522. package/sse/index.js +2 -19
  523. package/sse/model.js +1 -16
  524. package/sse/server-sent-events-source.js +54 -76
  525. package/sse/server-sent-events.js +48 -72
  526. package/supports.js +5 -32
  527. package/templates/index.js +9 -26
  528. package/templates/module.js +27 -48
  529. package/templates/providers/file.template-provider.js +41 -82
  530. package/templates/providers/memory.template-provider.js +28 -55
  531. package/templates/renderers/handlebars.template-renderer.js +85 -122
  532. package/templates/renderers/jsx.template-renderer.js +29 -56
  533. package/templates/renderers/mjml.template-renderer.js +43 -82
  534. package/templates/renderers/string.template-renderer.js +25 -52
  535. package/templates/resolvers/file.template-resolver.js +47 -90
  536. package/templates/resolvers/jsx.template-resolver.js +30 -59
  537. package/templates/resolvers/string.template-resolver.js +30 -59
  538. package/templates/template-renderer.provider.js +37 -66
  539. package/templates/template-resolver.provider.js +37 -66
  540. package/templates/template.model.js +40 -69
  541. package/templates/template.provider.js +1 -24
  542. package/templates/template.renderer.js +11 -34
  543. package/templates/template.resolver.js +1 -24
  544. package/templates/template.service.js +50 -82
  545. package/templates/tokens.js +3 -27
  546. package/templates/types/jsx.intrinsic-elements.js +1 -16
  547. package/text/dynamic-text.model.js +42 -71
  548. package/text/index.js +3 -20
  549. package/text/localizable-text.model.js +1 -16
  550. package/text/localization.service.js +197 -229
  551. package/theme/adapters/css-adapter.js +23 -46
  552. package/theme/adapters/tailwind-adapter.js +29 -52
  553. package/theme/index.js +1 -18
  554. package/theme/theme-service.js +109 -147
  555. package/threading/index.js +2 -19
  556. package/threading/thread-pool.js +48 -70
  557. package/threading/thread-worker.js +3 -26
  558. package/tokens.js +2 -25
  559. package/types/geo-json.js +1 -16
  560. package/types.js +2 -16
  561. package/utils/alphabet.js +12 -35
  562. package/utils/any-iterable-iterator.js +4 -27
  563. package/utils/array/array-backtracker.js +42 -65
  564. package/utils/array/array.js +76 -79
  565. package/utils/array/index.js +2 -19
  566. package/utils/async-iterable-helpers/all.js +25 -46
  567. package/utils/async-iterable-helpers/any.js +25 -46
  568. package/utils/async-iterable-helpers/assert.js +22 -43
  569. package/utils/async-iterable-helpers/batch.js +26 -46
  570. package/utils/async-iterable-helpers/buffer.js +47 -64
  571. package/utils/async-iterable-helpers/concat.js +5 -27
  572. package/utils/async-iterable-helpers/default-if-empty.js +9 -32
  573. package/utils/async-iterable-helpers/deferred.js +3 -26
  574. package/utils/async-iterable-helpers/difference.js +24 -48
  575. package/utils/async-iterable-helpers/distinct.js +23 -44
  576. package/utils/async-iterable-helpers/drain.js +4 -26
  577. package/utils/async-iterable-helpers/filter.js +23 -44
  578. package/utils/async-iterable-helpers/first-or-default.js +8 -30
  579. package/utils/async-iterable-helpers/first.js +8 -30
  580. package/utils/async-iterable-helpers/for-each.js +18 -38
  581. package/utils/async-iterable-helpers/group-single.js +3 -26
  582. package/utils/async-iterable-helpers/group-to-map.js +20 -41
  583. package/utils/async-iterable-helpers/group-to-single-map.js +23 -44
  584. package/utils/async-iterable-helpers/group.js +3 -26
  585. package/utils/async-iterable-helpers/includes.js +7 -28
  586. package/utils/async-iterable-helpers/index.js +48 -65
  587. package/utils/async-iterable-helpers/interrupt.js +19 -43
  588. package/utils/async-iterable-helpers/is-async-iterable.js +5 -29
  589. package/utils/async-iterable-helpers/last-or-default.js +13 -36
  590. package/utils/async-iterable-helpers/last.js +13 -36
  591. package/utils/async-iterable-helpers/map-many.js +19 -40
  592. package/utils/async-iterable-helpers/map.js +19 -40
  593. package/utils/async-iterable-helpers/materialize.js +21 -42
  594. package/utils/async-iterable-helpers/metadata.js +36 -54
  595. package/utils/async-iterable-helpers/multiplex.js +23 -44
  596. package/utils/async-iterable-helpers/observable-iterable.js +31 -53
  597. package/utils/async-iterable-helpers/pairwise.js +26 -44
  598. package/utils/async-iterable-helpers/parallel/feed.js +24 -45
  599. package/utils/async-iterable-helpers/parallel/filter.js +8 -31
  600. package/utils/async-iterable-helpers/parallel/for-each.js +21 -44
  601. package/utils/async-iterable-helpers/parallel/group.js +9 -32
  602. package/utils/async-iterable-helpers/parallel/index.js +7 -24
  603. package/utils/async-iterable-helpers/parallel/map.js +6 -29
  604. package/utils/async-iterable-helpers/parallel/tap.js +6 -29
  605. package/utils/async-iterable-helpers/parallel/types.js +1 -16
  606. package/utils/async-iterable-helpers/reduce.js +31 -46
  607. package/utils/async-iterable-helpers/retry.js +43 -58
  608. package/utils/async-iterable-helpers/single-or-default.js +17 -40
  609. package/utils/async-iterable-helpers/single.js +19 -42
  610. package/utils/async-iterable-helpers/skip.js +3 -26
  611. package/utils/async-iterable-helpers/sort.js +6 -29
  612. package/utils/async-iterable-helpers/take-until.js +32 -49
  613. package/utils/async-iterable-helpers/take-while.js +29 -46
  614. package/utils/async-iterable-helpers/take.js +23 -44
  615. package/utils/async-iterable-helpers/tap.js +19 -40
  616. package/utils/async-iterable-helpers/throttle.js +9 -30
  617. package/utils/async-iterable-helpers/to-array.js +10 -33
  618. package/utils/async-iterable-helpers/to-async-iterable-iterator.js +40 -59
  619. package/utils/async-iterable-helpers/to-async-iterator.js +32 -54
  620. package/utils/async-iterable-helpers/to-set.js +10 -33
  621. package/utils/async-iterable-helpers/to-sync-iterable.js +6 -27
  622. package/utils/async-iterable-helpers/types.js +1 -16
  623. package/utils/async-iterable-helpers/while.js +25 -46
  624. package/utils/async-iterator-iterable-iterator.js +41 -62
  625. package/utils/backoff.js +109 -109
  626. package/utils/base64.js +153 -140
  627. package/utils/benchmark.js +114 -107
  628. package/utils/binary-search.js +70 -87
  629. package/utils/binary.js +50 -61
  630. package/utils/clone.js +43 -64
  631. package/utils/comparison.js +76 -98
  632. package/utils/compression.js +107 -118
  633. package/utils/config-parser.js +21 -48
  634. package/utils/crc32.js +20 -42
  635. package/utils/cryptography.js +163 -121
  636. package/utils/date-time.js +102 -138
  637. package/utils/encoding.js +62 -60
  638. package/utils/enum.js +27 -53
  639. package/utils/equals.js +103 -119
  640. package/utils/event-loop.js +19 -39
  641. package/utils/factory-map.js +53 -75
  642. package/utils/feedable-async-iterable.js +47 -70
  643. package/utils/file-reader.js +15 -41
  644. package/utils/format-error.js +36 -57
  645. package/utils/format.js +32 -53
  646. package/utils/function/index.js +2 -19
  647. package/utils/function/memoize.js +38 -53
  648. package/utils/function/throttle.js +26 -48
  649. package/utils/helpers.js +93 -102
  650. package/utils/image.js +62 -88
  651. package/utils/index.js +47 -64
  652. package/utils/iterable-helpers/all.js +8 -31
  653. package/utils/iterable-helpers/any.js +8 -31
  654. package/utils/iterable-helpers/assert.js +7 -30
  655. package/utils/iterable-helpers/batch.js +11 -34
  656. package/utils/iterable-helpers/concat.js +4 -27
  657. package/utils/iterable-helpers/default-if-empty.js +9 -32
  658. package/utils/iterable-helpers/deferred.js +2 -25
  659. package/utils/iterable-helpers/difference.js +21 -45
  660. package/utils/iterable-helpers/distinct.js +9 -32
  661. package/utils/iterable-helpers/drain.js +4 -26
  662. package/utils/iterable-helpers/filter.js +7 -30
  663. package/utils/iterable-helpers/first-or-default.js +8 -30
  664. package/utils/iterable-helpers/first.js +8 -30
  665. package/utils/iterable-helpers/for-each.js +5 -28
  666. package/utils/iterable-helpers/group-single.js +3 -26
  667. package/utils/iterable-helpers/group-to-map.js +9 -32
  668. package/utils/iterable-helpers/group-to-single-map.js +10 -33
  669. package/utils/iterable-helpers/group.js +3 -26
  670. package/utils/iterable-helpers/includes.js +3 -26
  671. package/utils/iterable-helpers/index.js +39 -56
  672. package/utils/iterable-helpers/is-iterable.js +5 -29
  673. package/utils/iterable-helpers/last-or-default.js +13 -36
  674. package/utils/iterable-helpers/last.js +13 -36
  675. package/utils/iterable-helpers/map-many.js +6 -29
  676. package/utils/iterable-helpers/map.js +6 -29
  677. package/utils/iterable-helpers/materialize.js +2 -25
  678. package/utils/iterable-helpers/metadata.js +16 -38
  679. package/utils/iterable-helpers/pairwise.js +11 -33
  680. package/utils/iterable-helpers/range.js +4 -27
  681. package/utils/iterable-helpers/reduce.js +11 -33
  682. package/utils/iterable-helpers/single-or-default.js +14 -37
  683. package/utils/iterable-helpers/single.js +17 -40
  684. package/utils/iterable-helpers/skip.js +6 -29
  685. package/utils/iterable-helpers/sort.js +4 -27
  686. package/utils/iterable-helpers/take-until.js +8 -31
  687. package/utils/iterable-helpers/take-while.js +10 -33
  688. package/utils/iterable-helpers/take.js +10 -33
  689. package/utils/iterable-helpers/tap.js +6 -29
  690. package/utils/iterable-helpers/types.js +1 -16
  691. package/utils/iterable-helpers/while.js +8 -31
  692. package/utils/jwt.js +77 -100
  693. package/utils/map.js +35 -62
  694. package/utils/math.js +102 -64
  695. package/utils/merge.js +26 -45
  696. package/utils/middleware.js +36 -60
  697. package/utils/moving-metric.js +155 -188
  698. package/utils/noop.js +4 -27
  699. package/utils/object/decycle.js +57 -78
  700. package/utils/object/dereference.js +46 -44
  701. package/utils/object/forward-ref.js +59 -73
  702. package/utils/object/index.js +7 -24
  703. package/utils/object/lazy-property.js +81 -96
  704. package/utils/object/merge.js +48 -70
  705. package/utils/object/object.js +106 -136
  706. package/utils/object/property-name.js +69 -72
  707. package/utils/ordered-feedable-async-iterable.js +42 -65
  708. package/utils/patch-worker.js +69 -90
  709. package/utils/patterns.js +7 -29
  710. package/utils/periodic-reporter.js +60 -82
  711. package/utils/periodic-sampler.js +67 -91
  712. package/utils/provider-function-iterable.js +26 -48
  713. package/utils/proxy.js +17 -42
  714. package/utils/random.js +40 -50
  715. package/utils/reflection.js +13 -41
  716. package/utils/repl.js +14 -33
  717. package/utils/set.js +36 -62
  718. package/utils/singleton.js +18 -41
  719. package/utils/sort.js +53 -77
  720. package/utils/stream/finalize-stream.js +43 -62
  721. package/utils/stream/index.js +6 -23
  722. package/utils/stream/readable-stream-adapter.js +35 -57
  723. package/utils/stream/readable-stream-from-promise.js +7 -28
  724. package/utils/stream/size-limited-stream.js +12 -35
  725. package/utils/stream/stream-helper-types.js +1 -16
  726. package/utils/stream/stream-reader.js +30 -52
  727. package/utils/string/hypenate.js +2 -25
  728. package/utils/string/index.js +3 -20
  729. package/utils/string/title-case.js +6 -26
  730. package/utils/string/trim.js +9 -32
  731. package/utils/throw.js +7 -30
  732. package/utils/timer.js +70 -91
  733. package/utils/timing.js +52 -80
  734. package/utils/type-guards.js +253 -1076
  735. package/utils/type-of.js +25 -43
  736. package/utils/units.js +53 -124
  737. package/utils/url-builder.js +47 -68
  738. package/utils/value-or-provider.js +19 -44
  739. package/utils/z-base32.js +42 -63
  740. package/web-types.js +1 -16
@@ -1,527 +1,511 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var injector_exports = {};
20
- __export(injector_exports, {
21
- Injector: () => Injector
22
- });
23
- module.exports = __toCommonJS(injector_exports);
24
- var import_cancellation = require("../cancellation/index.js");
25
- var import_circular_buffer = require("../data-structures/circular-buffer.js");
26
- var import_multi_key_map = require("../data-structures/multi-key-map.js");
27
- var import_disposable = require("../disposable/disposable.js");
28
- var import_deferred_promise = require("../promise/deferred-promise.js");
29
- var import_registry = require("../reflection/registry.js");
30
- var import_array = require("../utils/array/array.js");
31
- var import_factory_map = require("../utils/factory-map.js");
32
- var import_forward_ref = require("../utils/object/forward-ref.js");
33
- var import_object = require("../utils/object/object.js");
34
- var import_type_guards = require("../utils/type-guards.js");
35
- var import_inject = require("./inject.js");
36
- var import_interfaces = require("./interfaces.js");
37
- var import_provider = require("./provider.js");
38
- var import_resolve_chain = require("./resolve-chain.js");
39
- var import_resolve_error = require("./resolve.error.js");
40
- var import_symbols = require("./symbols.js");
41
- var import_token = require("./token.js");
42
- class Injector {
43
- static #globalRegistrations = /* @__PURE__ */ new Map();
44
- #parent;
45
- #children = [];
46
- #disposeToken = new import_cancellation.CancellationToken();
47
- #disposableStack = new AsyncDisposableStack();
48
- #registrations = /* @__PURE__ */ new Map();
49
- #injectorScopedResolutions = new import_multi_key_map.MultiKeyMap();
50
- #addDisposeHandler;
51
- name;
52
- get disposed() {
53
- return this.#disposableStack.disposed;
54
- }
55
- constructor(name, parent = null) {
56
- this.name = name;
57
- this.#parent = parent;
58
- this.register(Injector, { useValue: this });
59
- this.register(import_cancellation.CancellationSignal, { useValue: this.#disposeToken.signal });
60
- this.#addDisposeHandler = (handler) => {
61
- if ((0, import_disposable.isSyncOrAsyncDisposable)(handler)) {
62
- this.#disposableStack.use(handler);
63
- } else {
64
- this.#disposableStack.defer(handler);
65
- }
66
- };
67
- this.#disposableStack.defer(() => this.#registrations.clear());
68
- this.#disposableStack.defer(() => this.#injectorScopedResolutions.clear());
69
- }
70
- /**
71
- * Globally register a provider for a token
72
- * @param token token to register
73
- * @param provider provider used to resolve the token
74
- * @param options registration options
75
- */
76
- static register(token, providers, options = {}) {
77
- for (const provider of (0, import_array.toArray)(providers)) {
78
- const registration = {
79
- token,
80
- provider,
81
- options: { multi: (0, import_type_guards.isArray)(providers), ...options }
82
- };
83
- addRegistration(Injector.#globalRegistrations, registration);
84
- }
85
- }
86
- /**
87
- * Globally register a provider for a token as a singleton. Alias for {@link register} with `singleton` lifecycle
88
- * @param token token to register
89
- * @param provider provider used to resolve the token
90
- * @param options registration options
91
- */
92
- static registerSingleton(token, providers, options) {
93
- Injector.register(token, providers, { ...options, lifecycle: "singleton" });
94
- }
95
- async dispose() {
96
- this.#disposeToken.set();
97
- await this.#disposableStack.disposeAsync();
98
- }
99
- async [Symbol.asyncDispose]() {
100
- await this.dispose();
101
- }
102
- fork(name) {
103
- const child = new Injector(name, this);
104
- this.#children.push(child);
105
- this.#disposableStack.use(child);
106
- return child;
107
- }
108
- /**
109
- * Register a provider for a token
110
- * @param token token to register
111
- * @param provider provider used to resolve the token
112
- * @param options registration options
113
- */
114
- register(token, providers, options = {}) {
115
- this.assertNotDisposed();
116
- for (const provider of (0, import_array.toArray)(providers)) {
117
- const registration = {
118
- token,
119
- provider,
120
- options: { multi: (0, import_type_guards.isArray)(providers), ...options },
121
- resolutions: /* @__PURE__ */ new Map()
122
- };
123
- addRegistration(this.#registrations, registration);
124
- }
125
- }
126
- /**
127
- * Register a provider for a token as a singleton. Alias for {@link register} with `singleton` lifecycle
128
- * @param token token to register
129
- * @param provider provider used to resolve the token
130
- * @param options registration options
131
- */
132
- registerSingleton(token, providers, options) {
133
- this.register(token, providers, { ...options, lifecycle: "singleton" });
134
- }
135
- /**
136
- * Check if token has a registered provider
137
- * @param token token check
138
- */
139
- hasRegistration(token, options) {
140
- const registration = this.tryGetRegistration(token, options);
141
- return (0, import_type_guards.isDefined)(registration);
142
- }
143
- /**
144
- * Try to get registration
145
- * @param token token to get registration for
146
- */
147
- tryGetRegistration(token, options) {
148
- if ((0, import_type_guards.isNull)(this.#parent) && !this.#registrations.has(token) && Injector.#globalRegistrations.has(token)) {
149
- const globalRegistrations = (0, import_array.toArray)(Injector.#globalRegistrations.get(token));
150
- for (const globalRegistration of globalRegistrations) {
151
- this.register(globalRegistration.token, globalRegistration.provider, globalRegistration.options);
152
- }
153
- }
154
- const ownRegistration = options?.skipSelf != true ? this.#registrations.get(token) : void 0;
155
- if ((0, import_type_guards.isDefined)(ownRegistration)) {
156
- return ownRegistration;
157
- }
158
- if (options?.onlySelf == true) {
159
- return void 0;
160
- }
161
- return this.#parent?.tryGetRegistration(token);
162
- }
163
- /**
164
- * Get registration
165
- * @param token token to get registration for
166
- */
167
- getRegistration(token, options) {
168
- const registration = this.tryGetRegistration(token, options);
169
- if ((0, import_type_guards.isUndefined)(registration)) {
170
- const tokenName = (0, import_token.getTokenName)(token);
171
- throw new Error(`No provider for ${tokenName} registered.`);
172
- }
173
- return registration;
174
- }
175
- resolve(token, argument, options = {}) {
176
- const context = newInternalResolveContext();
177
- const value = this._resolve(token, argument, options, context, import_resolve_chain.ResolveChain.startWith(token));
178
- postProcess(context);
179
- context.$done.resolve();
180
- return value;
181
- }
182
- resolveAll(token, argument, options = {}) {
183
- const context = newInternalResolveContext();
184
- const values = this._resolveAll(token, argument, options, context, import_resolve_chain.ResolveChain.startWith(token));
185
- postProcess(context);
186
- context.$done.resolve();
187
- return values;
188
- }
189
- async resolveAsync(token, argument, options = {}) {
190
- const context = newInternalResolveContext();
191
- const value = this._resolve(token, argument, options, context, import_resolve_chain.ResolveChain.startWith(token));
192
- await postProcessAsync(context);
193
- context.$done.resolve();
194
- return value;
195
- }
196
- async resolveAllAsync(token, argument, options = {}) {
197
- const context = newInternalResolveContext();
198
- const values = this._resolveAll(token, argument, options, context, import_resolve_chain.ResolveChain.startWith(token));
199
- await postProcessAsync(context);
200
- context.$done.resolve();
201
- return values;
202
- }
203
- _resolve(token, argument, options, context, chain) {
204
- this.assertNotDisposed();
205
- if ((0, import_type_guards.isDefined)(options.forwardRef) && options.forwardRef != false) {
206
- (0, import_type_guards.assert)(options.optional != true, "ForwardRef does not support optional without resolveAll/injectAll as undefined is not forwardable.");
207
- const forwardRef = import_forward_ref.ForwardRef.create();
208
- const forwardToken = (0, import_type_guards.isFunction)(options.forwardRef) ? options.forwardRef() : token;
209
- context.forwardRefQueue.add(() => import_forward_ref.ForwardRef.setRef(forwardRef, this._resolve(forwardToken, argument, { ...options, forwardRef: false }, context, chain.markAsForwardRef(forwardToken))));
210
- context.forwardRefs.add(forwardRef);
211
- return forwardRef;
212
- }
213
- if ((0, import_type_guards.isUndefined)(token)) {
214
- throw new import_resolve_error.ResolveError("Token is undefined - this might be because of circular dependencies, use alias or forwardRef in this case.", chain);
215
- }
216
- const registration = options.skipSelf == true ? void 0 : this.tryGetRegistration(token);
217
- if ((0, import_type_guards.isUndefined)(registration)) {
218
- if ((0, import_type_guards.isNotNull)(this.#parent) && options.onlySelf != true) {
219
- return this.#parent._resolve(token, argument, { ...options, skipSelf: false }, context, chain);
220
- }
221
- if (options.optional == true) {
222
- return void 0;
223
- }
224
- throw new import_resolve_error.ResolveError(`No provider for ${(0, import_token.getTokenName)(token)} registered.`, chain);
225
- }
226
- const singleRegistration = (0, import_type_guards.isArray)(registration) ? registration[0] : registration;
227
- return this._resolveRegistration(singleRegistration, argument, options, context, chain);
228
- }
229
- _resolveAll(token, argument, options, context, chain) {
230
- this.assertNotDisposed();
231
- if ((0, import_type_guards.isDefined)(options.forwardRef) && options.forwardRef != false) {
232
- const forwardRef = import_forward_ref.ForwardRef.create({ typeHint: options.forwardRefTypeHint });
233
- const forwardToken = (0, import_type_guards.isFunction)(options.forwardRef) ? options.forwardRef() : token;
234
- context.forwardRefQueue.add(() => import_forward_ref.ForwardRef.setRef(forwardRef, this._resolveAll(forwardToken, argument, { ...options, forwardRef: false }, context, chain.markAsForwardRef(forwardToken))));
235
- context.forwardRefs.add(forwardRef);
236
- return forwardRef;
237
- }
238
- if ((0, import_type_guards.isUndefined)(token)) {
239
- throw new import_resolve_error.ResolveError("Token is undefined - this might be because of circular dependencies, use alias or forwardRef in this case.", chain);
240
- }
241
- const registration = options.skipSelf == true ? void 0 : this.tryGetRegistration(token);
242
- if ((0, import_type_guards.isUndefined)(registration)) {
243
- if ((0, import_type_guards.isNotNull)(this.#parent) && options.onlySelf != true) {
244
- return this.#parent._resolveAll(token, argument, { ...options, skipSelf: false }, context, chain);
245
- }
246
- if (options.optional == true) {
247
- return [];
248
- }
249
- throw new import_resolve_error.ResolveError(`No provider for ${(0, import_token.getTokenName)(token)} registered.`, chain);
250
- }
251
- const registrations = (0, import_type_guards.isArray)(registration) ? registration : [registration];
252
- return registrations.map((reg) => this._resolveRegistration(reg, argument, options, context, chain));
253
- }
254
- _resolveRegistration(registration, argument, options, context, chain) {
255
- checkOverflow(chain, context);
256
- const injectionContext = this.getInjectionContext(context, argument, chain);
257
- const previousInjectionContext = (0, import_inject.setCurrentInjectionContext)(injectionContext);
258
- const resolutionTag = Symbol();
259
- try {
260
- const token = registration.token;
261
- const resolutionScoped = registration.options.lifecycle == "resolution";
262
- const injectorScoped = registration.options.lifecycle == "injector";
263
- const singletonScoped = registration.options.lifecycle == "singleton";
264
- const resolveArgument = argument ?? registration.options.defaultArgument ?? registration.options.defaultArgumentProvider?.(this.getResolveContext(resolutionTag, context, chain));
265
- const argumentIdentity = resolveArgumentIdentity(registration, resolveArgument);
266
- if (resolutionScoped && context.resolutionScopedResolutions.hasFlat(token, argumentIdentity)) {
267
- return context.resolutionScopedResolutions.getFlat(token, argumentIdentity).value;
268
- } else if (injectorScoped && this.#injectorScopedResolutions.hasFlat(token, argumentIdentity)) {
269
- return this.#injectorScopedResolutions.getFlat(token, argumentIdentity).value;
270
- } else if (singletonScoped && registration.resolutions.has(argumentIdentity)) {
271
- return registration.resolutions.get(argumentIdentity);
272
- }
273
- const value = this._resolveProvider(resolutionTag, registration, resolveArgument, options, context, injectionContext, chain);
274
- const resolution = {
275
- tag: resolutionTag,
276
- registration,
277
- value,
278
- argument: injectionContext.argument,
279
- afterResolveContext: this.getAfterResolveContext(resolutionTag, context),
280
- chain
281
- };
282
- context.resolutions.push(resolution);
283
- if (resolutionScoped) {
284
- context.resolutionScopedResolutions.setFlat(token, argumentIdentity, resolution);
285
- }
286
- if (injectorScoped) {
287
- this.#injectorScopedResolutions.setFlat(token, argumentIdentity, resolution);
288
- }
289
- if (singletonScoped) {
290
- registration.resolutions.set(argumentIdentity, value);
291
- }
292
- return value;
293
- } finally {
294
- (0, import_inject.setCurrentInjectionContext)(previousInjectionContext);
295
- }
296
- }
297
- _resolveProvider(resolutionTag, registration, resolveArgument, options, context, injectionContext, chain) {
298
- try {
299
- setResolving(registration.token, context, chain);
300
- const provider = registration.provider;
301
- let result;
302
- if ((0, import_provider.isClassProvider)(provider)) {
303
- const typeMetadata = import_registry.reflectionRegistry.getMetadata(provider.useClass);
304
- const arg = resolveArgument ?? provider.defaultArgument ?? provider.defaultArgumentProvider?.();
305
- injectionContext.argument = arg;
306
- if (provider.useClass.length > 0 && ((0, import_type_guards.isUndefined)(typeMetadata) || !typeMetadata.data.has(import_symbols.injectableMetadataSymbol))) {
307
- throw new import_resolve_error.ResolveError(`${provider.useClass.name} has constructor parameters but is not injectable.`, chain);
1
+ import { CancellationSignal, CancellationToken } from '../cancellation/index.js';
2
+ import { CircularBuffer } from '../data-structures/circular-buffer.js';
3
+ import { MultiKeyMap } from '../data-structures/multi-key-map.js';
4
+ import { isAsyncDisposable, isDisposable, isSyncOrAsyncDisposable } from '../disposable/disposable.js';
5
+ import { DeferredPromise } from '../promise/deferred-promise.js';
6
+ import { reflectionRegistry } from '../reflection/registry.js';
7
+ import { toArray } from '../utils/array/array.js';
8
+ import { FactoryMap } from '../utils/factory-map.js';
9
+ import { ForwardRef } from '../utils/object/forward-ref.js';
10
+ import { objectEntries } from '../utils/object/object.js';
11
+ import { assert, isArray, isBoolean, isDefined, isFunction, isNotNull, isNull, isPromise, isUndefined } from '../utils/type-guards.js';
12
+ import { setCurrentInjectionContext } from './inject.js';
13
+ import { afterResolve } from './interfaces.js';
14
+ import { isClassProvider, isFactoryProvider, isProviderWithInitializer, isTokenProvider, isValueProvider } from './provider.js';
15
+ import { ResolveChain } from './resolve-chain.js';
16
+ import { ResolveError } from './resolve.error.js';
17
+ import { injectMetadataSymbol, injectableMetadataSymbol } from './symbols.js';
18
+ import { getTokenName } from './token.js';
19
+ export class Injector {
20
+ static #globalRegistrations = new Map();
21
+ #parent;
22
+ #children = [];
23
+ #disposeToken = new CancellationToken();
24
+ #disposableStack = new AsyncDisposableStack();
25
+ #registrations = new Map();
26
+ #injectorScopedResolutions = new MultiKeyMap();
27
+ #addDisposeHandler;
28
+ name;
29
+ get disposed() {
30
+ return this.#disposableStack.disposed;
31
+ }
32
+ constructor(name, parent = null) {
33
+ this.name = name;
34
+ this.#parent = parent;
35
+ this.register(Injector, { useValue: this });
36
+ this.register(CancellationSignal, { useValue: this.#disposeToken.signal });
37
+ this.#addDisposeHandler = (handler) => {
38
+ if (isSyncOrAsyncDisposable(handler)) {
39
+ this.#disposableStack.use(handler);
40
+ }
41
+ else {
42
+ this.#disposableStack.defer(handler);
43
+ }
44
+ };
45
+ this.#disposableStack.defer(() => this.#registrations.clear());
46
+ this.#disposableStack.defer(() => this.#injectorScopedResolutions.clear());
47
+ }
48
+ /**
49
+ * Globally register a provider for a token
50
+ * @param token token to register
51
+ * @param provider provider used to resolve the token
52
+ * @param options registration options
53
+ */
54
+ static register(token, providers, options = {}) {
55
+ for (const provider of toArray(providers)) {
56
+ const registration = {
57
+ token,
58
+ provider,
59
+ options: { multi: isArray(providers), ...options }
60
+ };
61
+ addRegistration(Injector.#globalRegistrations, registration);
62
+ }
63
+ }
64
+ /**
65
+ * Globally register a provider for a token as a singleton. Alias for {@link register} with `singleton` lifecycle
66
+ * @param token token to register
67
+ * @param provider provider used to resolve the token
68
+ * @param options registration options
69
+ */
70
+ static registerSingleton(token, providers, options) {
71
+ Injector.register(token, providers, { ...options, lifecycle: 'singleton' });
72
+ }
73
+ async dispose() {
74
+ this.#disposeToken.set();
75
+ await this.#disposableStack.disposeAsync();
76
+ }
77
+ async [Symbol.asyncDispose]() {
78
+ await this.dispose();
79
+ }
80
+ fork(name) {
81
+ const child = new Injector(name, this);
82
+ this.#children.push(child);
83
+ this.#disposableStack.use(child);
84
+ return child;
85
+ }
86
+ /**
87
+ * Register a provider for a token
88
+ * @param token token to register
89
+ * @param provider provider used to resolve the token
90
+ * @param options registration options
91
+ */
92
+ register(token, providers, options = {}) {
93
+ this.assertNotDisposed();
94
+ for (const provider of toArray(providers)) {
95
+ const registration = {
96
+ token,
97
+ provider,
98
+ options: { multi: isArray(providers), ...options },
99
+ resolutions: new Map()
100
+ };
101
+ addRegistration(this.#registrations, registration);
308
102
  }
309
- const parameters = (typeMetadata?.parameters ?? []).map((metadata) => this.resolveClassInjection(resolutionTag, context, provider.useClass, metadata, arg, chain));
310
- result = { value: new provider.useClass(...parameters) };
311
- }
312
- if ((0, import_provider.isValueProvider)(provider)) {
313
- result = { value: provider.useValue };
314
- }
315
- if ((0, import_provider.isTokenProvider)(provider)) {
316
- const innerToken = provider.useToken ?? provider.useTokenProvider();
317
- const arg = resolveArgument ?? provider.defaultArgument ?? provider.defaultArgumentProvider?.();
318
- injectionContext.argument = arg;
319
- if (provider.resolveAll == true) {
320
- return this._resolveAll(innerToken, arg, options, context, chain.addToken(innerToken));
103
+ }
104
+ /**
105
+ * Register a provider for a token as a singleton. Alias for {@link register} with `singleton` lifecycle
106
+ * @param token token to register
107
+ * @param provider provider used to resolve the token
108
+ * @param options registration options
109
+ */
110
+ registerSingleton(token, providers, options) {
111
+ this.register(token, providers, { ...options, lifecycle: 'singleton' });
112
+ }
113
+ /**
114
+ * Check if token has a registered provider
115
+ * @param token token check
116
+ */
117
+ hasRegistration(token, options) {
118
+ const registration = this.tryGetRegistration(token, options);
119
+ return isDefined(registration);
120
+ }
121
+ /**
122
+ * Try to get registration
123
+ * @param token token to get registration for
124
+ */
125
+ tryGetRegistration(token, options) {
126
+ if (isNull(this.#parent) && !this.#registrations.has(token) && Injector.#globalRegistrations.has(token)) {
127
+ const globalRegistrations = toArray(Injector.#globalRegistrations.get(token));
128
+ for (const globalRegistration of globalRegistrations) {
129
+ this.register(globalRegistration.token, globalRegistration.provider, globalRegistration.options);
130
+ }
131
+ }
132
+ const ownRegistration = (options?.skipSelf != true) ? this.#registrations.get(token) : undefined;
133
+ if (isDefined(ownRegistration)) {
134
+ return ownRegistration;
135
+ }
136
+ if (options?.onlySelf == true) {
137
+ return undefined;
321
138
  }
322
- result = { value: this._resolve(innerToken, arg, options, context, chain.addToken(innerToken)) };
323
- }
324
- if ((0, import_provider.isFactoryProvider)(provider)) {
325
- const arg = resolveArgument ?? provider.defaultArgument ?? provider.defaultArgumentProvider?.();
326
- injectionContext.argument = arg;
139
+ return this.#parent?.tryGetRegistration(token);
140
+ }
141
+ /**
142
+ * Get registration
143
+ * @param token token to get registration for
144
+ */
145
+ getRegistration(token, options) {
146
+ const registration = this.tryGetRegistration(token, options);
147
+ if (isUndefined(registration)) {
148
+ const tokenName = getTokenName(token);
149
+ throw new Error(`No provider for ${tokenName} registered.`);
150
+ }
151
+ return registration;
152
+ }
153
+ resolve(token, argument, options = {}) {
154
+ const context = newInternalResolveContext();
155
+ const value = this._resolve(token, argument, options, context, ResolveChain.startWith(token));
156
+ postProcess(context);
157
+ context.$done.resolve();
158
+ return value;
159
+ }
160
+ resolveAll(token, argument, options = {}) {
161
+ const context = newInternalResolveContext();
162
+ const values = this._resolveAll(token, argument, options, context, ResolveChain.startWith(token));
163
+ postProcess(context);
164
+ context.$done.resolve();
165
+ return values;
166
+ }
167
+ async resolveAsync(token, argument, options = {}) {
168
+ const context = newInternalResolveContext();
169
+ const value = this._resolve(token, argument, options, context, ResolveChain.startWith(token));
170
+ await postProcessAsync(context);
171
+ context.$done.resolve();
172
+ return value;
173
+ }
174
+ async resolveAllAsync(token, argument, options = {}) {
175
+ const context = newInternalResolveContext();
176
+ const values = this._resolveAll(token, argument, options, context, ResolveChain.startWith(token));
177
+ await postProcessAsync(context);
178
+ context.$done.resolve();
179
+ return values;
180
+ }
181
+ _resolve(token, argument, options, context, chain) {
182
+ this.assertNotDisposed();
183
+ if (isDefined(options.forwardRef) && (options.forwardRef != false)) {
184
+ assert(options.optional != true, 'ForwardRef does not support optional without resolveAll/injectAll as undefined is not forwardable.');
185
+ const forwardRef = ForwardRef.create();
186
+ const forwardToken = isFunction(options.forwardRef) ? options.forwardRef() : token;
187
+ context.forwardRefQueue.add(() => ForwardRef.setRef(forwardRef, this._resolve(forwardToken, argument, { ...options, forwardRef: false }, context, chain.markAsForwardRef(forwardToken))));
188
+ context.forwardRefs.add(forwardRef);
189
+ return forwardRef;
190
+ }
191
+ if (isUndefined(token)) {
192
+ throw new ResolveError('Token is undefined - this might be because of circular dependencies, use alias or forwardRef in this case.', chain);
193
+ }
194
+ const registration = (options.skipSelf == true) ? undefined : this.tryGetRegistration(token);
195
+ if (isUndefined(registration)) {
196
+ if (isNotNull(this.#parent) && (options.onlySelf != true)) {
197
+ return this.#parent._resolve(token, argument, { ...options, skipSelf: false }, context, chain);
198
+ }
199
+ if (options.optional == true) {
200
+ return undefined;
201
+ }
202
+ throw new ResolveError(`No provider for ${getTokenName(token)} registered.`, chain);
203
+ }
204
+ const singleRegistration = isArray(registration) ? registration[0] : registration;
205
+ return this._resolveRegistration(singleRegistration, argument, options, context, chain);
206
+ }
207
+ _resolveAll(token, argument, options, context, chain) {
208
+ this.assertNotDisposed();
209
+ if (isDefined(options.forwardRef) && (options.forwardRef != false)) {
210
+ const forwardRef = ForwardRef.create({ typeHint: options.forwardRefTypeHint });
211
+ const forwardToken = isFunction(options.forwardRef) ? options.forwardRef() : token;
212
+ context.forwardRefQueue.add(() => ForwardRef.setRef(forwardRef, this._resolveAll(forwardToken, argument, { ...options, forwardRef: false }, context, chain.markAsForwardRef(forwardToken))));
213
+ context.forwardRefs.add(forwardRef);
214
+ return forwardRef;
215
+ }
216
+ if (isUndefined(token)) {
217
+ throw new ResolveError('Token is undefined - this might be because of circular dependencies, use alias or forwardRef in this case.', chain);
218
+ }
219
+ const registration = (options.skipSelf == true) ? undefined : this.tryGetRegistration(token);
220
+ if (isUndefined(registration)) {
221
+ if (isNotNull(this.#parent) && (options.onlySelf != true)) {
222
+ return this.#parent._resolveAll(token, argument, { ...options, skipSelf: false }, context, chain);
223
+ }
224
+ if (options.optional == true) {
225
+ return [];
226
+ }
227
+ throw new ResolveError(`No provider for ${getTokenName(token)} registered.`, chain);
228
+ }
229
+ const registrations = isArray(registration) ? registration : [registration];
230
+ return registrations.map((reg) => this._resolveRegistration(reg, argument, options, context, chain));
231
+ }
232
+ _resolveRegistration(registration, argument, options, context, chain) {
233
+ checkOverflow(chain, context);
234
+ const injectionContext = this.getInjectionContext(context, argument, chain);
235
+ const previousInjectionContext = setCurrentInjectionContext(injectionContext);
236
+ const resolutionTag = Symbol(); // eslint-disable-line symbol-description
327
237
  try {
328
- result = { value: provider.useFactory(arg, this.getResolveContext(resolutionTag, context, chain)) };
329
- } catch (error) {
330
- throw new import_resolve_error.ResolveError("Error in provider factory.", chain, error);
238
+ const token = registration.token;
239
+ const resolutionScoped = registration.options.lifecycle == 'resolution';
240
+ const injectorScoped = registration.options.lifecycle == 'injector';
241
+ const singletonScoped = registration.options.lifecycle == 'singleton';
242
+ const resolveArgument = argument ?? registration.options.defaultArgument ?? (registration.options.defaultArgumentProvider?.(this.getResolveContext(resolutionTag, context, chain)));
243
+ const argumentIdentity = resolveArgumentIdentity(registration, resolveArgument);
244
+ if (resolutionScoped && context.resolutionScopedResolutions.hasFlat(token, argumentIdentity)) {
245
+ return context.resolutionScopedResolutions.getFlat(token, argumentIdentity).value;
246
+ }
247
+ else if (injectorScoped && this.#injectorScopedResolutions.hasFlat(token, argumentIdentity)) {
248
+ return this.#injectorScopedResolutions.getFlat(token, argumentIdentity).value;
249
+ }
250
+ else if (singletonScoped && registration.resolutions.has(argumentIdentity)) {
251
+ return registration.resolutions.get(argumentIdentity);
252
+ }
253
+ const value = this._resolveProvider(resolutionTag, registration, resolveArgument, options, context, injectionContext, chain);
254
+ const resolution = {
255
+ tag: resolutionTag,
256
+ registration,
257
+ value,
258
+ argument: injectionContext.argument,
259
+ afterResolveContext: this.getAfterResolveContext(resolutionTag, context),
260
+ chain
261
+ };
262
+ context.resolutions.push(resolution);
263
+ if (resolutionScoped) {
264
+ context.resolutionScopedResolutions.setFlat(token, argumentIdentity, resolution);
265
+ }
266
+ if (injectorScoped) {
267
+ this.#injectorScopedResolutions.setFlat(token, argumentIdentity, resolution);
268
+ }
269
+ if (singletonScoped) {
270
+ registration.resolutions.set(argumentIdentity, value);
271
+ }
272
+ return value;
331
273
  }
332
- }
333
- if ((0, import_type_guards.isUndefined)(result)) {
334
- throw new Error("Unsupported provider.");
335
- }
336
- if ((0, import_disposable.isDisposable)(result.value) || (0, import_disposable.isAsyncDisposable)(result.value)) {
337
- this.#disposableStack.use(result.value);
338
- }
339
- return result.value;
340
- } finally {
341
- deleteResolving(registration.token, context);
342
- }
343
- }
344
- resolveClassInjection(resolutionTag, context, constructor, metadata, resolveArgument, chain) {
345
- const getChain = (injectToken2) => chain.addParameter(constructor, metadata.index, injectToken2);
346
- const injectMetadata = metadata.data.tryGet(import_symbols.injectMetadataSymbol) ?? {};
347
- const injectToken = injectMetadata.injectToken ?? metadata.type;
348
- if ((0, import_type_guards.isDefined)(injectMetadata.injectArgumentMapper) && (!this.hasRegistration(injectToken) || (0, import_type_guards.isDefined)(resolveArgument) || (0, import_type_guards.isUndefined)(injectToken))) {
349
- return injectMetadata.injectArgumentMapper(resolveArgument);
350
- }
351
- const parameterResolveArgument = injectMetadata.forwardArgumentMapper?.(resolveArgument) ?? injectMetadata.resolveArgumentProvider?.(this.getResolveContext(resolutionTag, context, getChain(injectToken)));
352
- const forwardRef = injectMetadata.forwardRef;
353
- if ((0, import_type_guards.isDefined)(forwardRef)) {
354
- context.forwardRefQueue.add(() => {
355
- const forwardToken = (0, import_type_guards.isFunction)(forwardRef) ? forwardRef() : (0, import_type_guards.isBoolean)(forwardRef) ? injectToken : forwardRef;
356
- if ((0, import_type_guards.isDefined)(injectMetadata.mapper)) {
357
- throw new import_resolve_error.ResolveError("Cannot use inject mapper with forwardRef.", getChain(forwardToken));
274
+ finally {
275
+ setCurrentInjectionContext(previousInjectionContext);
276
+ }
277
+ }
278
+ _resolveProvider(resolutionTag, registration, resolveArgument, options, context, injectionContext, chain) {
279
+ try {
280
+ setResolving(registration.token, context, chain);
281
+ const provider = registration.provider;
282
+ let result;
283
+ if (isClassProvider(provider)) {
284
+ const typeMetadata = reflectionRegistry.getMetadata(provider.useClass);
285
+ const arg = resolveArgument ?? provider.defaultArgument ?? provider.defaultArgumentProvider?.();
286
+ injectionContext.argument = arg;
287
+ if ((provider.useClass.length > 0) && (isUndefined(typeMetadata) || !typeMetadata.data.has(injectableMetadataSymbol))) {
288
+ throw new ResolveError(`${provider.useClass.name} has constructor parameters but is not injectable.`, chain);
289
+ }
290
+ const parameters = (typeMetadata?.parameters ?? []).map((metadata) => this.resolveClassInjection(resolutionTag, context, provider.useClass, metadata, arg, chain));
291
+ result = { value: new provider.useClass(...parameters) };
292
+ }
293
+ if (isValueProvider(provider)) {
294
+ result = { value: provider.useValue };
295
+ }
296
+ if (isTokenProvider(provider)) {
297
+ const innerToken = (provider.useToken ?? provider.useTokenProvider());
298
+ const arg = resolveArgument ?? provider.defaultArgument ?? provider.defaultArgumentProvider?.();
299
+ injectionContext.argument = arg;
300
+ if (provider.resolveAll == true) {
301
+ return this._resolveAll(innerToken, arg, options, context, chain.addToken(innerToken));
302
+ }
303
+ result = { value: this._resolve(innerToken, arg, options, context, chain.addToken(innerToken)) };
304
+ }
305
+ if (isFactoryProvider(provider)) {
306
+ const arg = resolveArgument ?? provider.defaultArgument ?? provider.defaultArgumentProvider?.();
307
+ injectionContext.argument = arg;
308
+ try {
309
+ result = { value: provider.useFactory(arg, this.getResolveContext(resolutionTag, context, chain)) };
310
+ }
311
+ catch (error) {
312
+ throw new ResolveError('Error in provider factory.', chain, error);
313
+ }
314
+ }
315
+ if (isUndefined(result)) {
316
+ throw new Error('Unsupported provider.');
317
+ }
318
+ if (isDisposable(result.value) || isAsyncDisposable(result.value)) {
319
+ this.#disposableStack.use(result.value);
320
+ }
321
+ return result.value;
322
+ }
323
+ finally {
324
+ deleteResolving(registration.token, context);
325
+ }
326
+ }
327
+ resolveClassInjection(resolutionTag, context, constructor, metadata, resolveArgument, chain) {
328
+ const getChain = (injectToken) => chain.addParameter(constructor, metadata.index, injectToken);
329
+ const injectMetadata = metadata.data.tryGet(injectMetadataSymbol) ?? {};
330
+ const injectToken = (injectMetadata.injectToken ?? metadata.type);
331
+ if (isDefined(injectMetadata.injectArgumentMapper) && (!this.hasRegistration(injectToken) || isDefined(resolveArgument) || isUndefined(injectToken))) {
332
+ return injectMetadata.injectArgumentMapper(resolveArgument);
333
+ }
334
+ const parameterResolveArgument = injectMetadata.forwardArgumentMapper?.(resolveArgument) ?? injectMetadata.resolveArgumentProvider?.(this.getResolveContext(resolutionTag, context, getChain(injectToken)));
335
+ const forwardRef = injectMetadata.forwardRef;
336
+ if (isDefined(forwardRef)) {
337
+ context.forwardRefQueue.add(() => {
338
+ const forwardToken = isFunction(forwardRef) ? forwardRef() : isBoolean(forwardRef) ? injectToken : forwardRef;
339
+ if (isDefined(injectMetadata.mapper)) {
340
+ throw new ResolveError('Cannot use inject mapper with forwardRef.', getChain(forwardToken));
341
+ }
342
+ });
343
+ }
344
+ const resolveFn = (injectMetadata.resolveAll == true) ? '_resolveAll' : '_resolve';
345
+ const resolved = this[resolveFn](injectToken, parameterResolveArgument, { optional: injectMetadata.optional, forwardRef, forwardRefTypeHint: injectMetadata.forwardRefTypeHint }, context, getChain(injectToken));
346
+ return isDefined(injectMetadata.mapper) ? injectMetadata.mapper(resolved) : resolved;
347
+ }
348
+ resolveInjection(token, argument, options, context, injectIndex, chain) {
349
+ return this._resolve(token, argument, options, context, chain.addInject(token, injectIndex));
350
+ }
351
+ async resolveInjectionAsync(token, argument, options, context, injectIndex, chain) {
352
+ const value = this.resolveInjection(token, argument, options, context, injectIndex, chain);
353
+ await context.$done;
354
+ return value;
355
+ }
356
+ resolveInjectionAll(token, argument, options, context, injectIndex, chain) {
357
+ return this._resolveAll(token, argument, options, context, chain.addInject(token, injectIndex));
358
+ }
359
+ async resolveInjectionAllAsync(token, argument, options, context, injectIndex, chain) {
360
+ const values = this.resolveInjectionAll(token, argument, options, context, injectIndex, chain);
361
+ await context.$done;
362
+ return values;
363
+ }
364
+ getResolveContext(resolutionTag, resolveContext, chain) {
365
+ const context = {
366
+ resolve: (token, argument, options) => this._resolve(token, argument, options ?? {}, resolveContext, chain.addToken(token)),
367
+ resolveAll: (token, argument, options) => this._resolveAll(token, argument, options ?? {}, resolveContext, chain.addToken(token)),
368
+ cancellationSignal: this.#disposeToken,
369
+ addDisposeHandler: this.#addDisposeHandler,
370
+ get data() {
371
+ return resolveContext.resolutionContextData.get(resolutionTag);
372
+ }
373
+ };
374
+ return context;
375
+ }
376
+ getAfterResolveContext(resolutionTag, resolveContext) {
377
+ const context = {
378
+ cancellationSignal: this.#disposeToken,
379
+ addDisposeHandler: this.#addDisposeHandler,
380
+ get data() {
381
+ return resolveContext.resolutionContextData.get(resolutionTag);
382
+ }
383
+ };
384
+ return context;
385
+ }
386
+ getInjectionContext(resolveContext, resolveArgument, chain) {
387
+ let injectIndex = 0;
388
+ const context = {
389
+ injector: this,
390
+ argument: resolveArgument,
391
+ inject: (token, argument, options) => this.resolveInjection(token, argument, options ?? {}, resolveContext, injectIndex++, chain),
392
+ injectAll: (token, argument, options) => this.resolveInjectionAll(token, argument, options ?? {}, resolveContext, injectIndex++, chain),
393
+ injectAsync: async (token, argument, options) => this.resolveInjectionAsync(token, argument, options ?? {}, resolveContext, injectIndex++, chain),
394
+ injectAllAsync: async (token, argument, options) => this.resolveInjectionAllAsync(token, argument, options ?? {}, resolveContext, injectIndex++, chain)
395
+ };
396
+ return context;
397
+ }
398
+ assertNotDisposed() {
399
+ if (this.disposed) {
400
+ throw new Error('Injector is disposed.');
358
401
  }
359
- });
360
- }
361
- const resolveFn = injectMetadata.resolveAll == true ? "_resolveAll" : "_resolve";
362
- const resolved = this[resolveFn](injectToken, parameterResolveArgument, { optional: injectMetadata.optional, forwardRef, forwardRefTypeHint: injectMetadata.forwardRefTypeHint }, context, getChain(injectToken));
363
- return (0, import_type_guards.isDefined)(injectMetadata.mapper) ? injectMetadata.mapper(resolved) : resolved;
364
- }
365
- resolveInjection(token, argument, options, context, injectIndex, chain) {
366
- return this._resolve(token, argument, options, context, chain.addInject(token, injectIndex));
367
- }
368
- async resolveInjectionAsync(token, argument, options, context, injectIndex, chain) {
369
- const value = this.resolveInjection(token, argument, options, context, injectIndex, chain);
370
- await context.$done;
371
- return value;
372
- }
373
- resolveInjectionAll(token, argument, options, context, injectIndex, chain) {
374
- return this._resolveAll(token, argument, options, context, chain.addInject(token, injectIndex));
375
- }
376
- async resolveInjectionAllAsync(token, argument, options, context, injectIndex, chain) {
377
- const values = this.resolveInjectionAll(token, argument, options, context, injectIndex, chain);
378
- await context.$done;
379
- return values;
380
- }
381
- getResolveContext(resolutionTag, resolveContext, chain) {
382
- const context = {
383
- resolve: (token, argument, options) => this._resolve(token, argument, options ?? {}, resolveContext, chain.addToken(token)),
384
- resolveAll: (token, argument, options) => this._resolveAll(token, argument, options ?? {}, resolveContext, chain.addToken(token)),
385
- cancellationSignal: this.#disposeToken,
386
- addDisposeHandler: this.#addDisposeHandler,
387
- get data() {
388
- return resolveContext.resolutionContextData.get(resolutionTag);
389
- }
390
- };
391
- return context;
392
- }
393
- getAfterResolveContext(resolutionTag, resolveContext) {
394
- const context = {
395
- cancellationSignal: this.#disposeToken,
396
- addDisposeHandler: this.#addDisposeHandler,
397
- get data() {
398
- return resolveContext.resolutionContextData.get(resolutionTag);
399
- }
400
- };
401
- return context;
402
- }
403
- getInjectionContext(resolveContext, resolveArgument, chain) {
404
- let injectIndex = 0;
405
- const context = {
406
- injector: this,
407
- argument: resolveArgument,
408
- inject: (token, argument, options) => this.resolveInjection(token, argument, options ?? {}, resolveContext, injectIndex++, chain),
409
- injectAll: (token, argument, options) => this.resolveInjectionAll(token, argument, options ?? {}, resolveContext, injectIndex++, chain),
410
- injectAsync: async (token, argument, options) => this.resolveInjectionAsync(token, argument, options ?? {}, resolveContext, injectIndex++, chain),
411
- injectAllAsync: async (token, argument, options) => this.resolveInjectionAllAsync(token, argument, options ?? {}, resolveContext, injectIndex++, chain)
412
- };
413
- return context;
414
- }
415
- assertNotDisposed() {
416
- if (this.disposed) {
417
- throw new Error("Injector is disposed.");
418
402
  }
419
- }
420
403
  }
421
404
  function addRegistration(registrations, registration) {
422
- if ((0, import_provider.isClassProvider)(registration.provider)) {
423
- const injectable = import_registry.reflectionRegistry.getMetadata(registration.provider.useClass)?.data.has(import_symbols.injectableMetadataSymbol) ?? false;
424
- if (!injectable) {
425
- throw new Error(`${registration.provider.useClass.name} is not injectable.`);
426
- }
427
- }
428
- const multi = registration.options.multi ?? false;
429
- const existingRegistration = registrations.get(registration.token);
430
- const hasExistingRegistration = (0, import_type_guards.isDefined)(existingRegistration);
431
- const existingIsMulti = hasExistingRegistration && (0, import_type_guards.isArray)(existingRegistration);
432
- if (hasExistingRegistration && existingIsMulti != multi) {
433
- throw new Error("Cannot mix multi and non-multi registrations.");
434
- }
435
- if (multi && existingIsMulti) {
436
- existingRegistration.push(registration);
437
- } else {
438
- registrations.set(registration.token, multi ? [registration] : registration);
439
- }
405
+ if (isClassProvider(registration.provider)) {
406
+ const injectable = reflectionRegistry.getMetadata(registration.provider.useClass)?.data.has(injectableMetadataSymbol) ?? false;
407
+ if (!injectable) {
408
+ throw new Error(`${registration.provider.useClass.name} is not injectable.`);
409
+ }
410
+ }
411
+ const multi = registration.options.multi ?? false;
412
+ const existingRegistration = registrations.get(registration.token);
413
+ const hasExistingRegistration = isDefined(existingRegistration);
414
+ const existingIsMulti = hasExistingRegistration && isArray(existingRegistration);
415
+ if (hasExistingRegistration && (existingIsMulti != multi)) {
416
+ throw new Error('Cannot mix multi and non-multi registrations.');
417
+ }
418
+ if (multi && existingIsMulti) {
419
+ existingRegistration.push(registration);
420
+ }
421
+ else {
422
+ registrations.set(registration.token, multi ? [registration] : registration);
423
+ }
440
424
  }
441
425
  function newInternalResolveContext() {
442
- return {
443
- resolves: 0,
444
- resolving: /* @__PURE__ */ new Set(),
445
- resolutionScopedResolutions: new import_multi_key_map.MultiKeyMap(),
446
- resolutions: [],
447
- resolutionContextData: new import_factory_map.FactoryMap(() => ({})),
448
- forwardRefQueue: new import_circular_buffer.CircularBuffer(),
449
- forwardRefs: /* @__PURE__ */ new Set(),
450
- $done: new import_deferred_promise.DeferredPromise()
451
- };
426
+ return {
427
+ resolves: 0,
428
+ resolving: new Set(),
429
+ resolutionScopedResolutions: new MultiKeyMap(),
430
+ resolutions: [],
431
+ resolutionContextData: new FactoryMap(() => ({})),
432
+ forwardRefQueue: new CircularBuffer(),
433
+ forwardRefs: new Set(),
434
+ $done: new DeferredPromise()
435
+ };
452
436
  }
453
437
  function postProcess(context) {
454
- for (const fn of context.forwardRefQueue.consume()) {
455
- fn();
456
- }
457
- derefForwardRefs(context);
458
- for (const resolution of context.resolutions) {
459
- if ((0, import_type_guards.isFunction)(resolution.value?.[import_interfaces.afterResolve])) {
460
- const returnValue = resolution.value[import_interfaces.afterResolve](resolution.argument, resolution.afterResolveContext);
461
- throwOnPromise(returnValue, "[afterResolve]", resolution.chain);
462
- }
463
- if ((0, import_provider.isProviderWithInitializer)(resolution.registration.provider)) {
464
- const returnValue = resolution.registration.provider.afterResolve?.(resolution.value, resolution.argument, resolution.afterResolveContext);
465
- throwOnPromise(returnValue, "provider afterResolve handler", resolution.chain);
466
- }
467
- if ((0, import_type_guards.isDefined)(resolution.registration.options.afterResolve)) {
468
- const returnValue = resolution.registration.options.afterResolve(resolution.value, resolution.argument, resolution.afterResolveContext);
469
- throwOnPromise(returnValue, "registration afterResolve handler", resolution.chain);
470
- }
471
- }
438
+ for (const fn of context.forwardRefQueue.consume()) {
439
+ fn();
440
+ }
441
+ derefForwardRefs(context);
442
+ for (const resolution of context.resolutions) {
443
+ if (isFunction(resolution.value?.[afterResolve])) {
444
+ const returnValue = resolution.value[afterResolve](resolution.argument, resolution.afterResolveContext);
445
+ throwOnPromise(returnValue, '[afterResolve]', resolution.chain);
446
+ }
447
+ if (isProviderWithInitializer(resolution.registration.provider)) {
448
+ const returnValue = resolution.registration.provider.afterResolve?.(resolution.value, resolution.argument, resolution.afterResolveContext);
449
+ throwOnPromise(returnValue, 'provider afterResolve handler', resolution.chain);
450
+ }
451
+ if (isDefined(resolution.registration.options.afterResolve)) {
452
+ const returnValue = resolution.registration.options.afterResolve(resolution.value, resolution.argument, resolution.afterResolveContext);
453
+ throwOnPromise(returnValue, 'registration afterResolve handler', resolution.chain);
454
+ }
455
+ }
472
456
  }
473
457
  async function postProcessAsync(context) {
474
- for (const fn of context.forwardRefQueue.consume()) {
475
- fn();
476
- }
477
- derefForwardRefs(context);
478
- for (const resolution of context.resolutions) {
479
- if ((0, import_type_guards.isFunction)(resolution.value?.[import_interfaces.afterResolve])) {
480
- await resolution.value[import_interfaces.afterResolve](resolution.argument, resolution.afterResolveContext);
481
- }
482
- if ((0, import_provider.isProviderWithInitializer)(resolution.registration.provider)) {
483
- await resolution.registration.provider.afterResolve?.(resolution.value, resolution.argument, resolution.afterResolveContext);
458
+ for (const fn of context.forwardRefQueue.consume()) {
459
+ fn();
484
460
  }
485
- if ((0, import_type_guards.isDefined)(resolution.registration.options.afterResolve)) {
486
- await resolution.registration.options.afterResolve(resolution.value, resolution.argument, resolution.afterResolveContext);
461
+ derefForwardRefs(context);
462
+ for (const resolution of context.resolutions) {
463
+ if (isFunction(resolution.value?.[afterResolve])) {
464
+ await resolution.value[afterResolve](resolution.argument, resolution.afterResolveContext);
465
+ }
466
+ if (isProviderWithInitializer(resolution.registration.provider)) {
467
+ await resolution.registration.provider.afterResolve?.(resolution.value, resolution.argument, resolution.afterResolveContext);
468
+ }
469
+ if (isDefined(resolution.registration.options.afterResolve)) {
470
+ await resolution.registration.options.afterResolve(resolution.value, resolution.argument, resolution.afterResolveContext);
471
+ }
487
472
  }
488
- }
489
473
  }
490
474
  function resolveArgumentIdentity(registration, resolveArgument) {
491
- if ((0, import_type_guards.isDefined)(registration.options.argumentIdentityProvider) && (registration.options.lifecycle == "resolution" || registration.options.lifecycle == "singleton")) {
492
- return registration.options.argumentIdentityProvider(resolveArgument);
493
- }
494
- return resolveArgument;
475
+ if (isDefined(registration.options.argumentIdentityProvider) && ((registration.options.lifecycle == 'resolution') || (registration.options.lifecycle == 'singleton'))) {
476
+ return registration.options.argumentIdentityProvider(resolveArgument);
477
+ }
478
+ return resolveArgument;
495
479
  }
496
480
  function setResolving(token, context, chain) {
497
- if (context.resolving.has(token)) {
498
- throw new import_resolve_error.ResolveError("Circular dependency to itself detected. Please check your registrations and providers. ForwardRef might be a solution.", chain);
499
- }
500
- context.resolving.add(token);
481
+ if (context.resolving.has(token)) {
482
+ throw new ResolveError('Circular dependency to itself detected. Please check your registrations and providers. ForwardRef might be a solution.', chain);
483
+ }
484
+ context.resolving.add(token);
501
485
  }
502
486
  function deleteResolving(token, context) {
503
- context.resolving.delete(token);
487
+ context.resolving.delete(token);
504
488
  }
505
489
  function throwOnPromise(value, type, chain) {
506
- if ((0, import_type_guards.isPromise)(value)) {
507
- throw new import_resolve_error.ResolveError(`Cannot evaluate async ${type} in synchronous resolve, use resolveAsync() instead.`, chain);
508
- }
490
+ if (isPromise(value)) {
491
+ throw new ResolveError(`Cannot evaluate async ${type} in synchronous resolve, use resolveAsync() instead.`, chain);
492
+ }
509
493
  }
510
494
  function checkOverflow(chain, context) {
511
- if (chain.length > 100 || ++context.resolves > 7500) {
512
- throw new import_resolve_error.ResolveError("Resolve stack overflow. This can happen on circular dependencies with transient lifecycles and self reference. Use scoped or singleton lifecycle or forwardRef instead.", chain);
513
- }
495
+ if ((chain.length > 100) || (++context.resolves > 7500)) {
496
+ throw new ResolveError('Resolve stack overflow. This can happen on circular dependencies with transient lifecycles and self reference. Use scoped or singleton lifecycle or forwardRef instead.', chain);
497
+ }
514
498
  }
515
499
  function derefForwardRefs(context) {
516
- for (const resolution of context.resolutions.values()) {
517
- if (!(typeof resolution.value == "object")) {
518
- continue;
519
- }
520
- for (const [key, value] of (0, import_object.objectEntries)(resolution.value)) {
521
- if (!context.forwardRefs.has(value)) {
522
- continue;
523
- }
524
- resolution.value[key] = import_forward_ref.ForwardRef.deref(value);
500
+ for (const resolution of context.resolutions.values()) {
501
+ if (!(typeof resolution.value == 'object')) {
502
+ continue;
503
+ }
504
+ for (const [key, value] of objectEntries(resolution.value)) {
505
+ if (!context.forwardRefs.has(value)) {
506
+ continue;
507
+ }
508
+ resolution.value[key] = ForwardRef.deref(value);
509
+ }
525
510
  }
526
- }
527
511
  }