@futdevpro/nts-dynamo 1.15.73 → 1.15.75

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 (365) hide show
  1. package/.c8rc.json +26 -26
  2. package/.copilot/patterns.json +7 -7
  3. package/.cursor/rules/__assistant_guide.mdc +30 -30
  4. package/.cursor/rules/_ag_backend-structure.mdc +85 -85
  5. package/.cursor/rules/_ag_backend.mdc +16 -16
  6. package/.cursor/rules/_ag_frontend-structure.mdc +86 -86
  7. package/.cursor/rules/_ag_frontend.mdc +39 -39
  8. package/.cursor/rules/_ag_import-rules.mdc +44 -44
  9. package/.cursor/rules/_ag_naming.mdc +115 -115
  10. package/.cursor/rules/_ag_should-be.mdc +6 -6
  11. package/.cursor/rules/ai_development_guide.md +60 -60
  12. package/.cursor/rules/cursor-rules.md +160 -160
  13. package/.cursor/rules/default-command.mdc +464 -464
  14. package/.cursor/rules/error_code_pattern.md +39 -39
  15. package/.cursor/rules/saved rule mcp server use.md +15 -15
  16. package/.dynamo/logs/cicd-pipeline/output.log +2798 -0
  17. package/.dynamo/logs/cicd-pipeline/status.json +94 -0
  18. package/.vscode/settings.json +10 -10
  19. package/HOWTO.md +15 -15
  20. package/LICENSE +21 -21
  21. package/__documentations/nts-integration-tests-2026-03-17.md +26 -26
  22. package/_specifications/BACKLOG.md +92 -92
  23. package/_specifications/TODO.md +15 -15
  24. package/_specifications/agent.md +138 -138
  25. package/build/_collections/global-settings.const.d.ts.map +1 -1
  26. package/build/_collections/global-settings.const.js +1 -0
  27. package/build/_collections/global-settings.const.js.map +1 -1
  28. package/build/_models/interfaces/global-settings.interface.d.ts +7 -0
  29. package/build/_models/interfaces/global-settings.interface.d.ts.map +1 -1
  30. package/build/_services/core/memory-guard.service.d.ts +5 -0
  31. package/build/_services/core/memory-guard.service.d.ts.map +1 -1
  32. package/build/_services/core/memory-guard.service.js +12 -3
  33. package/build/_services/core/memory-guard.service.js.map +1 -1
  34. package/eslint.config.js +3 -3
  35. package/nodemon.json +24 -24
  36. package/package.json +2 -2
  37. package/pnpm-workspace.yaml +5 -5
  38. package/scripts/run-coverage-tests.js +28 -28
  39. package/spec/support/helpers/spec-reporter-loader.js +359 -359
  40. package/spec/support/helpers/ts-node-helper.js +93 -93
  41. package/spec/support/jasmine.coverage.json +24 -24
  42. package/spec/support/jasmine.json +24 -24
  43. package/src/_collections/archive.util.spec.ts +57 -57
  44. package/src/_collections/archive.util.ts +18 -18
  45. package/src/_collections/atlas-default-db-options.const.ts +9 -9
  46. package/src/_collections/default-fallback-cache-max-age.const.spec.ts +11 -11
  47. package/src/_collections/default-fallback-cache-max-age.const.ts +2 -2
  48. package/src/_collections/default-not-found-page.const.spec.ts +19 -19
  49. package/src/_collections/default-not-found-page.const.ts +22 -22
  50. package/src/_collections/default-socket-path.const.spec.ts +12 -12
  51. package/src/_collections/default-socket-path.const.ts +2 -2
  52. package/src/_collections/get-environment-settings.util.spec.ts +210 -210
  53. package/src/_collections/get-environment-settings.util.ts +48 -48
  54. package/src/_collections/global-settings.const.ts +97 -96
  55. package/src/_collections/sample.env +21 -21
  56. package/src/_collections/star.controller.spec.ts +224 -224
  57. package/src/_collections/star.controller.ts +129 -129
  58. package/src/_enums/data-model-type.enum.ts +14 -14
  59. package/src/_enums/data-service-function.enum.ts +24 -24
  60. package/src/_enums/predefined-data-types.enum.ts +16 -16
  61. package/src/_enums/route-security.enum.ts +12 -12
  62. package/src/_models/control-models/api-call-params.control-model.spec.ts +152 -152
  63. package/src/_models/control-models/api-call-params.control-model.ts +142 -142
  64. package/src/_models/control-models/app-ext-system-controls.control-model.spec.ts +52 -52
  65. package/src/_models/control-models/app-ext-system-controls.control-model.ts +9 -9
  66. package/src/_models/control-models/app-params.control-model.spec.ts +225 -225
  67. package/src/_models/control-models/app-params.control-model.ts +136 -136
  68. package/src/_models/control-models/app-system-controls.control-model.spec.ts +31 -31
  69. package/src/_models/control-models/app-system-controls.control-model.ts +9 -9
  70. package/src/_models/control-models/endpoint-params.control-model.spec.ts +627 -627
  71. package/src/_models/control-models/endpoint-params.control-model.ts +627 -627
  72. package/src/_models/control-models/http-settings.control-model.spec.ts +77 -77
  73. package/src/_models/control-models/http-settings.control-model.ts +37 -37
  74. package/src/_models/control-models/system-control.control-model.spec.ts +27 -27
  75. package/src/_models/control-models/system-control.control-model.ts +12 -12
  76. package/src/_models/interfaces/certification-settings.interface.ts +7 -7
  77. package/src/_models/interfaces/environment-settings.interface.ts +59 -59
  78. package/src/_models/interfaces/global-log-settings.interface.ts +171 -171
  79. package/src/_models/interfaces/global-service-settings.interface.ts +47 -47
  80. package/src/_models/interfaces/global-settings.interface.ts +7 -0
  81. package/src/_models/interfaces/routing-module-settings.interface.ts +21 -21
  82. package/src/_models/interfaces/static-client-settings.interface.spec.ts +29 -29
  83. package/src/_models/interfaces/static-client-settings.interface.ts +28 -28
  84. package/src/_models/types/db-update.type.ts +100 -100
  85. package/src/_modules/ai/_models/ai-input-interfaces.ts +117 -117
  86. package/src/_modules/ai/_models/ai-test-generation-result.interface.ts +16 -16
  87. package/src/_modules/ai/_modules/anthropic/_services/aai-user-key.control-service.ts +138 -138
  88. package/src/_modules/ai/_modules/anthropic/index.ts +5 -5
  89. package/src/_modules/ai/_modules/document-ai/_collections/dai-chunking.util.spec.ts +242 -242
  90. package/src/_modules/ai/_modules/document-ai/_collections/dai-chunking.util.ts +639 -639
  91. package/src/_modules/ai/_modules/document-ai/_collections/dai-code-chunking.util.spec.ts +295 -295
  92. package/src/_modules/ai/_modules/document-ai/_collections/dai-code-chunking.util.ts +518 -518
  93. package/src/_modules/ai/_modules/document-ai/_collections/dai-document.util.spec.ts +209 -209
  94. package/src/_modules/ai/_modules/document-ai/_collections/dai-document.util.ts +85 -85
  95. package/src/_modules/ai/_modules/document-ai/_enums/dai-compare-result-type.enum.ts +7 -7
  96. package/src/_modules/ai/_modules/document-ai/_models/data-models/dai-doc-chunk.data-model.ts +146 -146
  97. package/src/_modules/ai/_modules/document-ai/_models/data-models/dai-doc-page.data-model.ts +162 -162
  98. package/src/_modules/ai/_modules/document-ai/_models/data-models/dai-document.data-model.ts +99 -99
  99. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-code-chunk.interface.ts +68 -68
  100. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-doc-chunk-compare-result.interface.ts +18 -18
  101. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-doc-page-compare-result.interface.ts +19 -19
  102. package/src/_modules/ai/_modules/document-ai/_models/interfaces/dai-document-compare-result.interface.ts +25 -25
  103. package/src/_modules/ai/_modules/document-ai/index.ts +30 -30
  104. package/src/_modules/ai/_modules/fdp-ai/_services/fdpai-user-key.control-service.ts +189 -189
  105. package/src/_modules/ai/_modules/fdp-ai/index.ts +5 -5
  106. package/src/_modules/ai/_modules/open-ai/_collections/oai-global-settings.const.ts +9 -9
  107. package/src/_modules/ai/_modules/open-ai/_collections/oai-llm-predefined-requests-hu.conts.ts +82 -82
  108. package/src/_modules/ai/_modules/open-ai/_collections/oai-llm-predefined-requests.conts.ts +75 -75
  109. package/src/_modules/ai/_modules/open-ai/_enums/oai-gpt-message-role.enum.ts +45 -45
  110. package/src/_modules/ai/_modules/open-ai/_models/interfaces/oai-global-settings.interface.ts +7 -7
  111. package/src/_modules/ai/_modules/open-ai/_models/interfaces/oai-gpt-message.interface.ts +7 -7
  112. package/src/_modules/ai/_modules/open-ai/_models/interfaces/oai-llm-predefined-requests.interface.ts +57 -57
  113. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-doc-chunk-data.service.ts +292 -292
  114. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-document.data-service.spec.ts +342 -342
  115. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.spec.ts +550 -550
  116. package/src/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.ts +630 -630
  117. package/src/_modules/ai/_modules/open-ai/_services/oai-embedding.control-service.spec.ts +332 -332
  118. package/src/_modules/ai/_modules/open-ai/_services/oai-llm-chat.service-base.spec.ts +462 -462
  119. package/src/_modules/ai/_modules/open-ai/_services/oai-llm-chat.service-base.ts +634 -634
  120. package/src/_modules/ai/_modules/open-ai/_services/oai-llm.service-base.spec.ts +489 -489
  121. package/src/_modules/ai/_modules/open-ai/_services/oai-llm.service-base.tools.spec.ts +173 -173
  122. package/src/_modules/ai/_modules/open-ai/_services/oai-llm.service-base.ts +1033 -1033
  123. package/src/_modules/ai/_modules/open-ai/_services/oai-user-key.control-service.ts +157 -157
  124. package/src/_modules/ai/_services/ai-embedding-mock.service.spec.ts +115 -115
  125. package/src/_modules/ai/_services/ai-embedding-mock.service.ts +212 -212
  126. package/src/_modules/ai/_services/ai-embedding-provider.registry.spec.ts +110 -110
  127. package/src/_modules/ai/_services/ai-embedding-provider.registry.ts +110 -110
  128. package/src/_modules/ai/_services/ai-embedding.service-base.spec.ts +98 -98
  129. package/src/_modules/ai/_services/ai-embedding.service-base.ts +48 -48
  130. package/src/_modules/ai/_services/ai-llm-chat.service-base.spec.ts +229 -229
  131. package/src/_modules/ai/_services/ai-llm-chat.service-base.ts +68 -68
  132. package/src/_modules/ai/_services/ai-llm.service-base.spec.ts +250 -250
  133. package/src/_modules/ai/_services/ai-llm.service-base.ts +519 -519
  134. package/src/_modules/ai/_services/ai-provider.service-base.spec.ts +158 -158
  135. package/src/_modules/ai/_services/ai-user-key.service-base.ts +59 -59
  136. package/src/_modules/ai/_services/lmstudio-embedding.control-service.spec.ts +197 -197
  137. package/src/_modules/ai/_services/lmstudio-embedding.control-service.ts +371 -371
  138. package/src/_modules/ai/index.ts +23 -23
  139. package/src/_modules/assistant/_collections/ass-global-settings.const.ts +13 -13
  140. package/src/_modules/assistant/_collections/ass.util.spec.ts +176 -176
  141. package/src/_modules/assistant/_collections/ass.util.ts +50 -50
  142. package/src/_modules/assistant/_models/ass-global-settings.interface.ts +15 -15
  143. package/src/_modules/assistant/_services/ass-io.control-service.spec.ts +140 -140
  144. package/src/_modules/assistant/_services/ass-main.control-service.spec.ts +192 -192
  145. package/src/_modules/assistant/_services/ass-main.control-service.ts +107 -107
  146. package/src/_modules/bot/_collections/bot-default-commands.const.ts +12 -12
  147. package/src/_modules/bot/_collections/bot-global-settings.const.ts +39 -39
  148. package/src/_modules/bot/_models/bot-channel-wrapper.interface.ts +62 -62
  149. package/src/_modules/bot/_models/bot-command.interface.ts +8 -8
  150. package/src/_modules/bot/_models/bot-global-settings.interface.ts +96 -96
  151. package/src/_modules/bot/_models/bot-last-mention-date.interface.ts +6 -6
  152. package/src/_modules/bot/_models/bot-last-message-date.interface.ts +5 -5
  153. package/src/_modules/bot/_models/bot-user-wrapper.interface.ts +41 -41
  154. package/src/_modules/bot/_modules/discord-bot/_models/dib-platform.types.ts +9 -9
  155. package/src/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.spec.ts +431 -431
  156. package/src/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.spec.ts +160 -160
  157. package/src/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.ts +55 -55
  158. package/src/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.ts +15 -15
  159. package/src/_modules/bot/_modules/dynamo-bot/_services/dyb-messaging-provider.control-service.spec.ts +374 -374
  160. package/src/_modules/bot/_modules/dynamo-bot/_services/dyb-messaging-provider.control-service.ts +447 -447
  161. package/src/_modules/bot/_modules/dynamo-bot/index.ts +15 -15
  162. package/src/_modules/bot/_modules/slack-bot/_models/slb-platform.types.ts +9 -9
  163. package/src/_modules/bot/_modules/slack-bot/_services/slb-messaging-provider.control-service.spec.ts +344 -344
  164. package/src/_modules/bot/_modules/slack-bot/_services/slb-messaging-provider.control-service.ts +197 -197
  165. package/src/_modules/bot/_modules/teams-bot/_models/teb-platform.types.ts +9 -9
  166. package/src/_modules/bot/_modules/teams-bot/_services/teb-messaging-provider.control-service.spec.ts +345 -345
  167. package/src/_modules/bot/_modules/teams-bot/_services/teb-messaging-provider.control-service.ts +197 -197
  168. package/src/_modules/bot/_services/bot-commands.control-service.spec.ts +116 -116
  169. package/src/_modules/bot/_services/bot-io.control-service.spec.ts +285 -285
  170. package/src/_modules/bot/_services/bot-main.control-service.spec.ts +208 -208
  171. package/src/_modules/bot/_services/bot-messaging-provider.service-base.spec.ts +349 -349
  172. package/src/_modules/bot/_services/bot-routines.control-service.spec.ts +111 -111
  173. package/src/_modules/custom-data/custom-data.controller.spec.ts +49 -49
  174. package/src/_modules/custom-data/custom-data.controller.ts +67 -67
  175. package/src/_modules/custom-data/custom-data.data-service.spec.ts +54 -54
  176. package/src/_modules/custom-data/custom-data.data-service.ts +21 -21
  177. package/src/_modules/custom-data/get-custom-data-routing-module.util.spec.ts +28 -28
  178. package/src/_modules/custom-data/get-custom-data-routing-module.util.ts +24 -24
  179. package/src/_modules/custom-data/index.ts +9 -9
  180. package/src/_modules/data-readers/_collections/dynts-sqlite-reader.util.spec.ts +161 -161
  181. package/src/_modules/data-readers/_collections/dynts-sqlite-reader.util.ts +203 -203
  182. package/src/_modules/data-readers/_models/interfaces/dynts-sqlite-reader.interface.ts +33 -33
  183. package/src/_modules/data-readers/index.ts +11 -11
  184. package/src/_modules/defaults/_collections/default-endpoints.util.ts +487 -487
  185. package/src/_modules/defaults/_models/default-user.data-model.ts +72 -72
  186. package/src/_modules/defaults/_services/default-auth.service.spec.ts +269 -269
  187. package/src/_modules/defaults/_services/default-auth.service.ts +177 -177
  188. package/src/_modules/defaults/_services/default-socket-events.service.spec.ts +42 -42
  189. package/src/_modules/defaults/_services/default-socket-events.service.ts +61 -61
  190. package/src/_modules/defaults/_services/default-user.data-service.spec.ts +187 -187
  191. package/src/_modules/defaults/_services/default-user.data-service.ts +98 -98
  192. package/src/_modules/defaults/index.ts +17 -17
  193. package/src/_modules/discord-assistant/_collections/dias-global-settings.const.ts +19 -19
  194. package/src/_modules/discord-assistant/_collections/dias.util.spec.ts +366 -366
  195. package/src/_modules/discord-assistant/_collections/dias.util.ts +132 -132
  196. package/src/_modules/discord-assistant/_models/dias-global-settings.interface.ts +19 -19
  197. package/src/_modules/discord-assistant/_models/dias-knowledge.data-model.ts +52 -52
  198. package/src/_modules/discord-assistant/_services/dias-chunk.data-service.ts +177 -177
  199. package/src/_modules/discord-assistant/_services/dias-io.control-service.spec.ts +108 -108
  200. package/src/_modules/discord-assistant/_services/dias-io.control-service.ts +69 -69
  201. package/src/_modules/discord-assistant/_services/dias-main.control-service.spec.ts +22 -22
  202. package/src/_modules/discord-assistant/_services/dias-main.control-service.ts +27 -27
  203. package/src/_modules/discord-assistant/_services/dias.service-base.spec.ts +195 -195
  204. package/src/_modules/discord-assistant/_services/dias.service-base.ts +76 -76
  205. package/src/_modules/discord-assistant/index.ts +38 -38
  206. package/src/_modules/discord-assistant-voiced/_services/dias-discord-bot.control-service.spec.ts +34 -34
  207. package/src/_modules/discord-assistant-voiced/_services/dias-discord-bot.control-service.ts +11 -11
  208. package/src/_modules/discord-assistant-voiced/index.ts +36 -36
  209. package/src/_modules/discord-bot/_collections/dibo-default-commands.const.ts +16 -16
  210. package/src/_modules/discord-bot/_collections/dibo-global-settings.conts.ts +55 -55
  211. package/src/_modules/discord-bot/_collections/dibo-operations.util.spec.ts +214 -214
  212. package/src/_modules/discord-bot/_collections/dibo-operations.util.ts +387 -387
  213. package/src/_modules/discord-bot/_models/dibo-command.interface.ts +12 -12
  214. package/src/_modules/discord-bot/_models/dibo-global-settings.interface.ts +98 -98
  215. package/src/_modules/discord-bot/_models/dibo-last-mention-date.inteface.ts +7 -7
  216. package/src/_modules/discord-bot/_models/dibo-last-message-date.interface.ts +6 -6
  217. package/src/_modules/discord-bot/_services/dibo-commands.control-service.spec.ts +154 -154
  218. package/src/_modules/discord-bot/_services/dibo-commands.control-service.ts +153 -153
  219. package/src/_modules/discord-bot/_services/dibo-io.control-service.spec.ts +264 -264
  220. package/src/_modules/discord-bot/_services/dibo-io.control-service.ts +306 -306
  221. package/src/_modules/discord-bot/_services/dibo-main.control-service.spec.ts +408 -408
  222. package/src/_modules/discord-bot/_services/dibo-main.control-service.ts +487 -487
  223. package/src/_modules/discord-bot/_services/dibo-routines.control-service.spec.ts +105 -105
  224. package/src/_modules/discord-bot/index.ts +36 -36
  225. package/src/_modules/local-vector-search/_enums/lvs-search-mode.enum.ts +35 -35
  226. package/src/_modules/local-vector-search/_models/data-models/lvs-vector-persist.data-model.ts +59 -59
  227. package/src/_modules/local-vector-search/_models/lvs-search-result.interface.ts +17 -17
  228. package/src/_modules/local-vector-search/_services/lvs-doc-chunk-data.service.spec.ts +418 -418
  229. package/src/_modules/local-vector-search/_services/lvs-doc-chunk-data.service.ts +276 -276
  230. package/src/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.spec.ts +480 -480
  231. package/src/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.ts +416 -416
  232. package/src/_modules/local-vector-search/_services/lvs-persistent-vector-pool.control-service.spec.ts +198 -198
  233. package/src/_modules/local-vector-search/_services/lvs-persistent-vector-pool.control-service.ts +146 -146
  234. package/src/_modules/local-vector-search/_services/lvs-vector-persist.data-service.spec.ts +167 -167
  235. package/src/_modules/local-vector-search/_services/lvs-vector-persist.data-service.ts +106 -106
  236. package/src/_modules/local-vector-search/_services/lvs-vector-pool.control-service.spec.ts +507 -507
  237. package/src/_modules/local-vector-search/_services/lvs-vector-pool.control-service.ts +272 -272
  238. package/src/_modules/local-vector-search/index.ts +16 -16
  239. package/src/_modules/logs/index.ts +11 -11
  240. package/src/_modules/mcp/_models/interfaces/dynts-mcp.interface.ts +111 -111
  241. package/src/_modules/mcp/_services/dynts-mcp-server.service-base.spec.ts +142 -142
  242. package/src/_modules/mcp/_services/dynts-mcp-server.service-base.ts +120 -120
  243. package/src/_modules/mcp/_services/dynts-mcp.adapter.ts +168 -168
  244. package/src/_modules/mcp/index.ts +13 -13
  245. package/src/_modules/messaging/README.md +354 -354
  246. package/src/_modules/messaging/_collections/get-messaging-routing-module.util.ts +26 -26
  247. package/src/_modules/messaging/_collections/msg-global-settings.const.ts +22 -22
  248. package/src/_modules/messaging/_collections/msg.util.spec.ts +226 -226
  249. package/src/_modules/messaging/_models/msg-global-settings.interface.ts +37 -37
  250. package/src/_modules/messaging/_services/msg-conversation.data-service.ts +146 -146
  251. package/src/_modules/messaging/_services/msg-events.service.spec.ts +219 -219
  252. package/src/_modules/messaging/_services/msg-events.service.ts +267 -267
  253. package/src/_modules/messaging/_services/msg-integration.control-service.ts +179 -179
  254. package/src/_modules/messaging/_services/msg-main.control-service.spec.ts +147 -147
  255. package/src/_modules/messaging/_services/msg-main.control-service.ts +571 -571
  256. package/src/_modules/messaging/_services/msg-message.data-service.ts +129 -129
  257. package/src/_modules/messaging/_services/msg.controller.spec.ts +201 -201
  258. package/src/_modules/messaging/index.ts +30 -30
  259. package/src/_modules/mock/app-extended-server.mock.ts +201 -201
  260. package/src/_modules/mock/app-integration-test.mock.ts +51 -51
  261. package/src/_modules/mock/app-params.mock.spec.ts +21 -21
  262. package/src/_modules/mock/app-params.mock.ts +9 -9
  263. package/src/_modules/mock/app-server.mock.ts +188 -188
  264. package/src/_modules/mock/auth-service.mock.spec.ts +47 -47
  265. package/src/_modules/mock/auth-service.mock.ts +28 -28
  266. package/src/_modules/mock/controller.mock.spec.ts +26 -26
  267. package/src/_modules/mock/controller.mock.ts +16 -16
  268. package/src/_modules/mock/data-model.mock.spec.ts +111 -111
  269. package/src/_modules/mock/data-model.mock.ts +82 -82
  270. package/src/_modules/mock/email-service-collection.mock.spec.ts +24 -24
  271. package/src/_modules/mock/email-service-collection.mock.ts +15 -15
  272. package/src/_modules/mock/email-service.mock.spec.ts +17 -17
  273. package/src/_modules/mock/email-service.mock.ts +20 -20
  274. package/src/_modules/mock/email-template.mock.html +14 -14
  275. package/src/_modules/mock/endpoint.mock.ts +91 -91
  276. package/src/_modules/mock/socket-client.mock.spec.ts +40 -40
  277. package/src/_modules/mock/socket-client.mock.ts +45 -45
  278. package/src/_modules/mock/socket-server.mock.spec.ts +44 -44
  279. package/src/_modules/mock/socket-server.mock.ts +46 -46
  280. package/src/_modules/oauth2/_routes/oauth2.controller.spec.ts +107 -107
  281. package/src/_modules/oauth2/_routes/oauth2.controller.ts +98 -98
  282. package/src/_modules/oauth2/_services/oauth2.auth-service.spec.ts +254 -254
  283. package/src/_modules/oauth2/_services/oauth2.auth-service.ts +232 -232
  284. package/src/_modules/oauth2/_services/oauth2.control-service.spec.ts +585 -585
  285. package/src/_modules/oauth2/_services/oauth2.control-service.ts +653 -653
  286. package/src/_modules/oauth2/index.ts +17 -17
  287. package/src/_modules/scoped-config/_enums/dynts-scoped-config-level.enum.ts +22 -22
  288. package/src/_modules/scoped-config/_models/data-models/dynts-scoped-config.data-model.ts +81 -81
  289. package/src/_modules/scoped-config/_models/interfaces/dynts-scoped-config.interface.ts +107 -107
  290. package/src/_modules/scoped-config/_services/dynts-scoped-config.control-service.spec.ts +306 -306
  291. package/src/_modules/scoped-config/_services/dynts-scoped-config.control-service.ts +295 -295
  292. package/src/_modules/scoped-config/_services/dynts-scoped-config.data-service.spec.ts +118 -118
  293. package/src/_modules/scoped-config/_services/dynts-scoped-config.data-service.ts +105 -105
  294. package/src/_modules/scoped-config/index.ts +17 -17
  295. package/src/_modules/server/errors/errors.control-service.spec.ts +238 -238
  296. package/src/_modules/server/errors/errors.control-service.ts +100 -100
  297. package/src/_modules/server/errors/errors.controller.spec.ts +241 -241
  298. package/src/_modules/server/errors/errors.controller.ts +489 -489
  299. package/src/_modules/server/errors/errors.data-service.spec.ts +480 -480
  300. package/src/_modules/server/index.ts +30 -30
  301. package/src/_modules/server/server-status/server-status-snapshot.control-service.spec.ts +70 -70
  302. package/src/_modules/server/server-status/server-status-snapshot.control-service.ts +17 -17
  303. package/src/_modules/server/server-status/server-status-snapshot.data-service.spec.ts +77 -77
  304. package/src/_modules/server/server-status/server-status-snapshot.data-service.ts +37 -37
  305. package/src/_modules/server/server-status/server-status.control-service.spec.ts +576 -576
  306. package/src/_modules/server/server-status/server-status.control-service.ts +396 -396
  307. package/src/_modules/server/server-status/server-status.controller.spec.ts +240 -240
  308. package/src/_modules/server/server-status/server-status.controller.ts +253 -253
  309. package/src/_modules/socket/_enums/socket-security.enum.ts +11 -11
  310. package/src/_modules/socket/_models/socket-client-service-params.control-model.spec.ts +32 -32
  311. package/src/_modules/socket/_models/socket-client-service-params.control-model.ts +22 -22
  312. package/src/_modules/socket/_models/socket-presence.control-model.spec.ts +164 -164
  313. package/src/_modules/socket/_models/socket-presence.control-model.ts +210 -210
  314. package/src/_modules/socket/_models/socket-server-service-params.control-model.spec.ts +46 -46
  315. package/src/_modules/socket/_models/socket-server-service-params.control-model.ts +22 -22
  316. package/src/_modules/socket/_services/socket-client.service.spec.ts +15 -15
  317. package/src/_modules/socket/_services/socket-client.service.ts +260 -260
  318. package/src/_modules/socket/_services/socket-server.service.spec.ts +11 -11
  319. package/src/_modules/socket/app-extended.integration.spec.ts +85 -85
  320. package/src/_modules/socket/app-extended.server.ts +630 -630
  321. package/src/_modules/socket/index.ts +42 -42
  322. package/src/_modules/test/get-test-routing-module.util.spec.ts +28 -28
  323. package/src/_modules/test/get-test-routing-module.util.ts +23 -23
  324. package/src/_modules/test/index.ts +11 -11
  325. package/src/_modules/test/test.controller.spec.ts +72 -72
  326. package/src/_modules/test/test.controller.ts +115 -115
  327. package/src/_modules/usage/get-usage-routing-module.util.ts +22 -22
  328. package/src/_modules/usage/index.ts +15 -15
  329. package/src/_modules/usage/usage.controller.spec.ts +81 -81
  330. package/src/_modules/usage/usage.controller.ts +126 -126
  331. package/src/_modules/usage/usage.data-service.spec.ts +332 -332
  332. package/src/_modules/usage/usage.data-service.ts +185 -185
  333. package/src/_services/base/api.service-base.spec.ts +125 -125
  334. package/src/_services/base/api.service-base.ts +74 -74
  335. package/src/_services/base/archive-data.service.spec.ts +196 -196
  336. package/src/_services/base/archive-data.service.ts +216 -216
  337. package/src/_services/base/data.service.spec.ts +674 -674
  338. package/src/_services/base/data.service.ts +2719 -2719
  339. package/src/_services/base/db.service.spec.ts +73 -73
  340. package/src/_services/base/db.service.ts +1575 -1575
  341. package/src/_services/base/singleton.service-base.spec.ts +28 -28
  342. package/src/_services/base/singleton.service-base.ts +24 -24
  343. package/src/_services/base/singleton.service.spec.ts +114 -114
  344. package/src/_services/base/singleton.service.ts +38 -38
  345. package/src/_services/core/api.service.spec.ts +140 -140
  346. package/src/_services/core/auth.service.spec.ts +159 -159
  347. package/src/_services/core/auth.service.ts +174 -174
  348. package/src/_services/core/email.service.spec.ts +85 -85
  349. package/src/_services/core/email.service.ts +742 -742
  350. package/src/_services/core/global.service.spec.ts +292 -292
  351. package/src/_services/core/global.service.ts +475 -475
  352. package/src/_services/core/memory-guard.service.spec.ts +18 -0
  353. package/src/_services/core/memory-guard.service.ts +14 -3
  354. package/src/_services/core/service-collection.service.spec.ts +46 -46
  355. package/src/_services/core/service-collection.service.ts +6 -6
  356. package/src/_services/route/controller.service.spec.ts +53 -53
  357. package/src/_services/route/controller.service.ts +148 -148
  358. package/src/_services/route/routing-module.service.spec.ts +98 -98
  359. package/src/_services/route/routing-module.service.ts +330 -330
  360. package/src/_services/server/app.server.ts +1747 -1747
  361. package/src/_services/shared.static-service.spec.ts +99 -99
  362. package/src/_services/shared.static-service.ts +78 -78
  363. package/src/index.ts +96 -96
  364. package/tsconfig.app.json +12 -12
  365. package/tsconfig.json +42 -42
@@ -0,0 +1,2798 @@
1
+ === CICD Pipeline | started: 2026-06-22T22:03:05.681Z | PID: 265 ===
2
+ [cdp] ▶ validate-secrets (started: 10:03:05 PM)
3
+ [validate-secrets] FR-171 — introspected 3 env-var reference(s) across 10 step(s)
4
+ [validate-secrets] ✅ PRESENT: DISCORD_WEBHOOK_ID OVERSEER_URL NPM_TOKEN
5
+ [validate-secrets] Step-by-step impact preview:
6
+ [validate-secrets] OK — all REQUIRED env-vars are set (warn-only missing logged above for visibility)
7
+ [cdp] ✓ validate-secrets (0.2s)
8
+ [cdp] ▶ discord-start (started: 10:03:06 PM)
9
+ Processing Discord start notification command...
10
+ Starting Discord start notification process...
11
+ Discord start notification sent successfully
12
+ Discord start notification command completed successfully
13
+ [cdp] ✓ discord-start (2.7s)
14
+ [cdp] ▶ pre-flight (started: 10:03:10 PM)
15
+ Pre-flight check passed: all required variables are set
16
+ [cdp] ✓ pre-flight (0.2s)
17
+ [cdp] ▶ install (started: 10:03:11 PM)
18
+ Progress: resolved 1, reused 0, downloaded 0, added 0
19
+ Progress: resolved 5, reused 0, downloaded 0, added 0
20
+ Progress: resolved 29, reused 13, downloaded 0, added 0
21
+ Progress: resolved 37, reused 33, downloaded 0, added 0
22
+ Progress: resolved 43, reused 39, downloaded 0, added 0
23
+ Progress: resolved 152, reused 89, downloaded 0, added 0
24
+ Progress: resolved 207, reused 146, downloaded 0, added 0
25
+ Progress: resolved 280, reused 222, downloaded 0, added 0
26
+ Progress: resolved 371, reused 280, downloaded 0, added 0
27
+ Progress: resolved 488, reused 350, downloaded 0, added 0
28
+ Progress: resolved 553, reused 397, downloaded 0, added 0
29
+ Progress: resolved 572, reused 430, downloaded 0, added 0
30
+ Progress: resolved 588, reused 470, downloaded 0, added 0
31
+ Progress: resolved 595, reused 506, downloaded 0, added 0
32
+  WARN  11 deprecated subdependencies found: are-we-there-yet@2.0.0, gauge@3.0.2, glob@10.5.0, glob@7.2.3, inflight@1.0.6, node-domexception@1.0.0, npmlog@5.0.1, prebuild-install@7.1.3, rimraf@2.7.1, rimraf@3.0.2, tar@6.2.1
33
+ Packages: +597
34
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
35
+ Progress: resolved 597, reused 538, downloaded 0, added 0
36
+ Progress: resolved 597, reused 576, downloaded 0, added 0
37
+ Progress: resolved 597, reused 595, downloaded 1, added 0
38
+ Progress: resolved 597, reused 595, downloaded 1, added 1
39
+ Progress: resolved 597, reused 595, downloaded 1, added 5
40
+ Progress: resolved 597, reused 595, downloaded 1, added 15
41
+ Progress: resolved 597, reused 595, downloaded 1, added 16
42
+ Progress: resolved 597, reused 595, downloaded 1, added 23
43
+ Progress: resolved 597, reused 595, downloaded 1, added 45
44
+ Progress: resolved 597, reused 595, downloaded 1, added 59
45
+ Progress: resolved 597, reused 595, downloaded 1, added 103
46
+ Progress: resolved 597, reused 595, downloaded 1, added 119
47
+ Progress: resolved 597, reused 595, downloaded 1, added 175
48
+ Progress: resolved 597, reused 595, downloaded 1, added 220
49
+ Progress: resolved 597, reused 595, downloaded 1, added 226
50
+ Progress: resolved 597, reused 595, downloaded 1, added 296
51
+ Progress: resolved 597, reused 595, downloaded 1, added 503
52
+ Progress: resolved 597, reused 595, downloaded 1, added 595
53
+ Progress: resolved 597, reused 595, downloaded 1, added 596
54
+ Progress: resolved 597, reused 595, downloaded 2, added 596
55
+ Progress: resolved 597, reused 595, downloaded 2, added 597
56
+ Progress: resolved 597, reused 595, downloaded 2, added 597, done
57
+ . prepare$ husky
58
+ . prepare: Done
59
+  WARN  Issues with peer dependencies found
60
+ .
61
+ └─┬ @futdevpro/dynamo-eslint 1.15.16
62
+ ├── ✕ unmet peer @typescript-eslint/eslint-plugin@8.0.0: found 8.62.0
63
+ ├── ✕ unmet peer @typescript-eslint/parser@8.0.0: found 8.62.0
64
+ ├── ✕ unmet peer eslint@9.0.0: found 9.39.4
65
+ ├── ✕ unmet peer eslint-plugin-import@2.29.0: found 2.32.0
66
+ ├── ✕ unmet peer eslint-plugin-jsdoc@48.0.0: found 48.11.0
67
+ ├── ✕ unmet peer eslint-plugin-prettier@5.1.3: found 5.5.6
68
+ └── ✕ unmet peer prettier@3.3.0: found 3.8.4
69
+
70
+ dependencies:
71
+ + @futdevpro/fsm-dynamo 1.16.9
72
+ + @types/express 4.17.21 (5.0.6 is available)
73
+ + @types/geoip-lite 1.4.4
74
+ + @types/node 24.1.0 (26.0.0 is available)
75
+ + axios 1.8.4 (1.18.1 is available)
76
+ + body-parser 1.20.5 (2.3.0 is available)
77
+ + dotenv 16.5.0 (17.4.2 is available)
78
+ + express 4.21.2 (5.2.1 is available)
79
+ + geoip-lite 1.4.10 (2.0.3 is available)
80
+ + mongoose 8.10.2 (9.7.2 is available)
81
+ + nodemailer 6.9.16 (9.0.1 is available)
82
+ + rxjs 7.8.1 (7.8.2 is available)
83
+ + ts-node 10.9.2
84
+
85
+ devDependencies:
86
+ + @anthropic-ai/sdk 0.39.0 (0.105.0 is available)
87
+ + @discordjs/opus 0.10.0
88
+ + @discordjs/voice 0.18.0 (0.19.2 is available)
89
+ + @futdevpro/dynamo-eslint 1.15.16
90
+ + @modelcontextprotocol/sdk 1.29.0
91
+ + @types/better-sqlite3 7.6.13
92
+ + @types/jasmine 4.3.6 (6.0.0 is available)
93
+ + @typescript-eslint/eslint-plugin 8.62.0
94
+ + @typescript-eslint/parser 8.62.0
95
+ + better-sqlite3 12.4.6 (12.11.1 is available)
96
+ + crypto-js 4.2.0
97
+ + discord.js 14.24.2 (14.26.4 is available)
98
+ + eslint 9.39.4 (10.5.0 is available)
99
+ + eslint-plugin-import 2.32.0
100
+ + eslint-plugin-jsdoc 48.11.0 (63.0.7 is available)
101
+ + eslint-plugin-max-params-no-constructor 0.0.4
102
+ + eslint-plugin-prettier 5.5.6
103
+ + eslint-plugin-unused-imports 4.4.1
104
+ + husky 9.1.7
105
+ + jasmine 5.10.0 (6.3.0 is available)
106
+ + jasmine-spec-reporter 7.0.0
107
+ + jasmine-ts 0.4.0
108
+ + openai 5.23.2 (6.44.0 is available)
109
+ + prettier 3.8.4
110
+ + socket.io 4.8.3
111
+ + socket.io-client 4.8.3
112
+ + tslib 2.6.3 (2.8.1 is available)
113
+ + typescript 5.5.4 (6.0.3 is available)
114
+
115
+ Done in 1m 12.6s using pnpm v10.34.4
116
+ [cdp] ✓ install (72.9s)
117
+ [cdp] ▶ check-dev-leftovers (started: 10:04:25 PM)
118
+ Checking dev leftovers... (--fix mode) (--patch-only safety gate)
119
+ Processing check: TSCONFIG_PATHS in .
120
+ Processing check: PACKAGE_VERSIONS in .
121
+ ✓ .: compilerOptions.paths is either empty or not defined. Which is fine.
122
+ ✅ @futdevpro/fsm-dynamo is latest (1.16.9)
123
+ All dev leftover checks completed successfully.
124
+ [cdp] ✓ check-dev-leftovers (37s)
125
+ [cdp] ▶ build (started: 10:05:03 PM)
126
+ [cdp] ✓ build (46.5s)
127
+ [cdp] ▶ test (started: 10:05:51 PM)
128
+ DyFM_DataModel_Params.constructor: dataName should be in snake_case in "default-user RENAME OR EXTEND THIS DONT USE AS IS" model.For future compatibility.
129
+ stackLocation: /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/defaults/_models/default-user.data-model.js:28:40
130
+ 
131
+ ----------
132
+ DYNAMO WARNING:
133
+ vectorizeUseIndex is required if vectorizedFrom is set at "contentVectorized" in "test-data" model. (It will be set to "contentVectorized" by default)
134
+ stackLocation: Error
135
+
136
+ ---------- 
137
+ Vectorized from property "content" is not a number[] property in "test-data" model.
138
+ stackLocation: /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.spec.js:15:24
139
+ 
140
+ DyFM_DataModel_Params.constructor: dataName should be in snake_case in "test-data" model.For future compatibility.
141
+ stackLocation: /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/local-vector-search/_services/lvs-local-vector-search.data-service.spec.js:15:24
142
+ 
143
+ DYNAMO WARNING:
144
+ required is recommended to be set if dependency is set at "userId" in "test_data" model.
145
+ (it is required or it is not a dependency)
146
+ It will be set to true by while you are not setting it.
147
+ stackLocation: Error
148
+ 
149
+ Randomized with seed 65127
150
+ Started
151
+ .............................................................................*................................................................................................
152
+ ||||||||||
153
+
154
+ Failed to get conversation stats Error: Failed to fetch
155
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.spec.js:42:106)
156
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
157
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
158
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
159
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
160
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
161
+
162
+ ||||||||||
163
+ 
164
+ ..
165
+ ||||||||||
166
+
167
+ Failed to search messages Error: Failed to fetch
168
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.spec.js:86:106)
169
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
170
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
171
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
172
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
173
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
174
+
175
+ ||||||||||
176
+ 
177
+ ...**************.*********................................********............🔍 Comparing "document" document: "Test Document"
178
+ .🔍 Comparing "document" document: "New Document"
179
+ .........................................................................................*******[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB), graceful-exit@3 critical polls (boot-grace 60000ms)
180
+ 
181
+
182
+ \\\\\\\\\\
183
+ \\\\\\\\\\
184
+ \\\\\\\\\\
185
+
186
+ [DyNTS_MemoryGuard] CRITICAL heap pressure — heap 97% (970/1000MB), rss 1070MB, GC 0% [heap] — OOM imminent
187
+
188
+ //////////
189
+ //////////
190
+ //////////
191
+
192
+ 
193
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
194
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
195
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 70% (700/1000MB), rss 800MB, GC 45% [gc]
196
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
197
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
198
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
199
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
200
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
201
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
202
+ 
203
+
204
+ \\\\\\\\\\
205
+ \\\\\\\\\\
206
+ \\\\\\\\\\
207
+
208
+ [DyNTS_MemoryGuard] CRITICAL heap pressure — heap 97% (970/1000MB), rss 1070MB, GC 0% [heap] — OOM imminent
209
+
210
+ //////////
211
+ //////////
212
+ //////////
213
+
214
+ 
215
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB), graceful-exit@3 critical polls (boot-grace 0ms)
216
+ 
217
+
218
+ \\\\\\\\\\
219
+ \\\\\\\\\\
220
+ \\\\\\\\\\
221
+
222
+ [DyNTS_MemoryGuard] CRITICAL heap pressure — heap 97% (970/1000MB), rss 1070MB, GC 0% [heap] — OOM imminent
223
+
224
+ //////////
225
+ //////////
226
+ //////////
227
+
228
+ 
229
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
230
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 92% (920/1000MB), rss 1020MB, GC 0% [heap]
231
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
232
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
233
+ [DyNTS_MemoryGuard] RECOVERED — heap 70% (700/1000MB), rss 800MB, GC 0% [recovery]
234
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
235
+ .[DyNTS_MemoryGuard] installed — poll 10000ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
236
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
237
+ .
238
+
239
+ \\\\\\\\\\
240
+ \\\\\\\\\\
241
+ \\\\\\\\\\
242
+
243
+ [DyNTS_MemoryGuard] CRITICAL heap pressure — heap 70% (700/1000MB), rss 800MB, GC 65% [gc] — OOM imminent
244
+
245
+ //////////
246
+ //////////
247
+ //////////
248
+
249
+ 
250
+ [DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
251
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
252
+ [DyNTS_MemoryGuard] RECOVERED — heap 70% (700/1000MB), rss 800MB, GC 0% [recovery]
253
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
254
+ [DyNTS_MemoryGuard] RECOVERED — heap 70% (700/1000MB), rss 800MB, GC 0% [recovery]
255
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
256
+ [DyNTS_MemoryGuard] RECOVERED — heap 70% (700/1000MB), rss 800MB, GC 0% [recovery]
257
+ [DyNTS_MemoryGuard] WARNING heap pressure — heap 88% (880/1000MB), rss 980MB, GC 0% [heap]
258
+ [DyNTS_MemoryGuard] RECOVERED — heap 70% (700/1000MB), rss 800MB, GC 0% [recovery]
259
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
260
+ .[DyNTS_MemoryGuard] installed — poll 999999ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
261
+ .................Authentication Service missing!
262
+ ..........Authentication Service missing!
263
+ .Authentication Service missing!
264
+ .Authentication Service missing!
265
+ ..Authentication Service missing!
266
+ .Authentication Service missing!
267
+ .Authentication Service missing!
268
+ .................*******...Authorization request failed Error
269
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23)
270
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:156:39)
271
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
272
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
273
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
274
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
275
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
276
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
277
+ __created: 2026-06-22T22:07:20.038Z,
278
+ __createdBy: 'OAuth2ControlService',
279
+ __lastModified: 2026-06-22T22:07:20.038Z,
280
+ __lastModifiedBy: 'OAuth2ControlService',
281
+ __v: 0,
282
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA3',
283
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA3' ],
284
+ _message: 'Invalid redirect_uri',
285
+ _messages: [ 'Invalid redirect_uri' ],
286
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA3',
287
+ __userMessages: [
288
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA3'
289
+ ],
290
+ ___handled: false,
291
+ ___status: 400,
292
+ ___issuer: 'MISSING-ISSUER',
293
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
294
+ ___issuerService: 'OAuth2ControlService',
295
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
296
+ error: Error
297
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23)
298
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:156:39)
299
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
300
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
301
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
302
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
303
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
304
+ errors: [
305
+ Error
306
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23)
307
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:156:39)
308
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
309
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
310
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
311
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
312
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
313
+ ],
314
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:61:23',
315
+ level: 'error',
316
+ additionalContent: {},
317
+ confidentialContent: {}
318
+ } 
319
+ ..Authorization request failed Error
320
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23)
321
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:140:39)
322
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
323
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
324
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
325
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
326
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
327
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
328
+ __created: 2026-06-22T22:07:20.042Z,
329
+ __createdBy: 'OAuth2ControlService',
330
+ __lastModified: 2026-06-22T22:07:20.042Z,
331
+ __lastModifiedBy: 'OAuth2ControlService',
332
+ __v: 0,
333
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA0',
334
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA0' ],
335
+ _message: 'Missing required OAuth2 parameters',
336
+ _messages: [ 'Missing required OAuth2 parameters' ],
337
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA0',
338
+ __userMessages: [
339
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA0'
340
+ ],
341
+ ___handled: false,
342
+ ___status: 400,
343
+ ___issuer: 'MISSING-ISSUER',
344
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
345
+ ___issuerService: 'OAuth2ControlService',
346
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
347
+ error: Error
348
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23)
349
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:140:39)
350
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
351
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
352
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
353
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
354
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
355
+ errors: [
356
+ Error
357
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23)
358
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:140:39)
359
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
360
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
361
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
362
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
363
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
364
+ ],
365
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:39:23',
366
+ level: 'error',
367
+ additionalContent: {},
368
+ confidentialContent: {}
369
+ } 
370
+ ..Authorization request failed Error
371
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23)
372
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:148:39)
373
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
374
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
375
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
376
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
377
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
378
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
379
+ __created: 2026-06-22T22:07:20.044Z,
380
+ __createdBy: 'OAuth2ControlService',
381
+ __lastModified: 2026-06-22T22:07:20.044Z,
382
+ __lastModifiedBy: 'OAuth2ControlService',
383
+ __v: 0,
384
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA2',
385
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA2' ],
386
+ _message: 'Invalid client_id',
387
+ _messages: [ 'Invalid client_id' ],
388
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA2',
389
+ __userMessages: [
390
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA2'
391
+ ],
392
+ ___handled: false,
393
+ ___status: 400,
394
+ ___issuer: 'MISSING-ISSUER',
395
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
396
+ ___issuerService: 'OAuth2ControlService',
397
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
398
+ error: Error
399
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23)
400
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:148:39)
401
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
402
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
403
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
404
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
405
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
406
+ errors: [
407
+ Error
408
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23)
409
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:148:39)
410
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
411
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
412
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
413
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
414
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
415
+ ],
416
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:50:23',
417
+ level: 'error',
418
+ additionalContent: {},
419
+ confidentialContent: {}
420
+ } 
421
+ .Authorization request failed Error
422
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19)
423
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:173:39)
424
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
425
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
426
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
427
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
428
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
429
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
430
+ __created: 2026-06-22T22:07:20.045Z,
431
+ __createdBy: 'OAuth2ControlService',
432
+ __lastModified: 2026-06-22T22:07:20.045Z,
433
+ __lastModifiedBy: 'OAuth2ControlService',
434
+ __v: 0,
435
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA1',
436
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA1' ],
437
+ _message: 'Unsupported response_type',
438
+ _messages: [ 'Unsupported response_type' ],
439
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA1',
440
+ __userMessages: [
441
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA1'
442
+ ],
443
+ ___handled: false,
444
+ ___status: 400,
445
+ ___issuer: 'MISSING-ISSUER',
446
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
447
+ ___issuerService: 'OAuth2ControlService',
448
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
449
+ error: Error
450
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19)
451
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:173:39)
452
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
453
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
454
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
455
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
456
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
457
+ errors: [
458
+ Error
459
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19)
460
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:173:39)
461
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
462
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
463
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
464
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
465
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
466
+ ],
467
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:103:19',
468
+ level: 'error',
469
+ additionalContent: {},
470
+ confidentialContent: {}
471
+ } 
472
+ .Authorization request failed Error
473
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23)
474
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:165:39)
475
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
476
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
477
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
478
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
479
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
480
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
481
+ __created: 2026-06-22T22:07:20.047Z,
482
+ __createdBy: 'OAuth2ControlService',
483
+ __lastModified: 2026-06-22T22:07:20.047Z,
484
+ __lastModifiedBy: 'OAuth2ControlService',
485
+ __v: 0,
486
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HA4',
487
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HA4' ],
488
+ _message: 'Invalid scope',
489
+ _messages: [ 'Invalid scope' ],
490
+ __userMessage: 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA4',
491
+ __userMessages: [
492
+ 'Invalid authorization request\n ErrorCode: T_LOCAL|DyNTS-OA2-HA4'
493
+ ],
494
+ ___handled: false,
495
+ ___status: 400,
496
+ ___issuer: 'MISSING-ISSUER',
497
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
498
+ ___issuerService: 'OAuth2ControlService',
499
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
500
+ error: Error
501
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23)
502
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:165:39)
503
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
504
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
505
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
506
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
507
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
508
+ errors: [
509
+ Error
510
+ at DyNTS_OAuth2_ControlService.handleAuthorizationRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23)
511
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:165:39)
512
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
513
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
514
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
515
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
516
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
517
+ ],
518
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:72:23',
519
+ level: 'error',
520
+ additionalContent: {},
521
+ confidentialContent: {}
522
+ } 
523
+ ...Token revocation failed Error
524
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23)
525
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:401:39)
526
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
527
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
528
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
529
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
530
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
531
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
532
+ __created: 2026-06-22T22:07:20.050Z,
533
+ __createdBy: 'OAuth2ControlService',
534
+ __lastModified: 2026-06-22T22:07:20.050Z,
535
+ __lastModifiedBy: 'OAuth2ControlService',
536
+ __v: 0,
537
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HR0',
538
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HR0' ],
539
+ _message: 'Missing token',
540
+ _messages: [ 'Missing token' ],
541
+ __userMessage: 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR0',
542
+ __userMessages: [ 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR0' ],
543
+ ___handled: false,
544
+ ___status: 400,
545
+ ___issuer: 'MISSING-ISSUER',
546
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
547
+ ___issuerService: 'OAuth2ControlService',
548
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
549
+ error: Error
550
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23)
551
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:401:39)
552
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
553
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
554
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
555
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
556
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
557
+ errors: [
558
+ Error
559
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23)
560
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:401:39)
561
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
562
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
563
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
564
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
565
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
566
+ ],
567
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:421:23',
568
+ level: 'error',
569
+ additionalContent: {},
570
+ confidentialContent: {}
571
+ } 
572
+ .Token revocation failed Error
573
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23)
574
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:407:39)
575
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
576
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
577
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
578
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
579
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
580
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
581
+ __created: 2026-06-22T22:07:20.051Z,
582
+ __createdBy: 'OAuth2ControlService',
583
+ __lastModified: 2026-06-22T22:07:20.051Z,
584
+ __lastModifiedBy: 'OAuth2ControlService',
585
+ __v: 0,
586
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HR1',
587
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HR1' ],
588
+ _message: 'Token not found or already revoked',
589
+ _messages: [ 'Token not found or already revoked' ],
590
+ __userMessage: 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR1',
591
+ __userMessages: [ 'Invalid revocation request\n ErrorCode: T_LOCAL|DyNTS-OA2-HR1' ],
592
+ ___handled: false,
593
+ ___status: 400,
594
+ ___issuer: 'MISSING-ISSUER',
595
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
596
+ ___issuerService: 'OAuth2ControlService',
597
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
598
+ error: Error
599
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23)
600
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:407:39)
601
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
602
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
603
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
604
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
605
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
606
+ errors: [
607
+ Error
608
+ at DyNTS_OAuth2_ControlService.handleTokenRevocation (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23)
609
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:407:39)
610
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
611
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
612
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
613
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
614
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
615
+ ],
616
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:450:23',
617
+ level: 'error',
618
+ additionalContent: {},
619
+ confidentialContent: {}
620
+ } 
621
+ ......Token request failed Error
622
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31)
623
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:274:39)
624
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
625
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
626
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
627
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
628
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
629
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
630
+ __created: 2026-06-22T22:07:20.055Z,
631
+ __createdBy: 'OAuth2ControlService',
632
+ __lastModified: 2026-06-22T22:07:20.055Z,
633
+ __lastModifiedBy: 'OAuth2ControlService',
634
+ __v: 0,
635
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT2',
636
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT2' ],
637
+ _message: 'Missing refresh token',
638
+ _messages: [ 'Missing refresh token' ],
639
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT2',
640
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT2' ],
641
+ ___handled: false,
642
+ ___status: 400,
643
+ ___issuer: 'MISSING-ISSUER',
644
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
645
+ ___issuerService: 'OAuth2ControlService',
646
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
647
+ error: Error
648
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31)
649
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:274:39)
650
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
651
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
652
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
653
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
654
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
655
+ errors: [
656
+ Error
657
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31)
658
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:274:39)
659
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
660
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
661
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
662
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
663
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
664
+ ],
665
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:235:31',
666
+ level: 'error',
667
+ additionalContent: {},
668
+ confidentialContent: {}
669
+ } 
670
+ .Token request failed Error
671
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31)
672
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:292:39)
673
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
674
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
675
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
676
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
677
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
678
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
679
+ __created: 2026-06-22T22:07:20.056Z,
680
+ __createdBy: 'OAuth2ControlService',
681
+ __lastModified: 2026-06-22T22:07:20.056Z,
682
+ __lastModifiedBy: 'OAuth2ControlService',
683
+ __v: 0,
684
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT7',
685
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT7' ],
686
+ _message: 'Missing username or password',
687
+ _messages: [ 'Missing username or password' ],
688
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT7',
689
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT7' ],
690
+ ___handled: false,
691
+ ___status: 400,
692
+ ___issuer: 'MISSING-ISSUER',
693
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
694
+ ___issuerService: 'OAuth2ControlService',
695
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
696
+ error: Error
697
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31)
698
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:292:39)
699
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
700
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
701
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
702
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
703
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
704
+ errors: [
705
+ Error
706
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31)
707
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:292:39)
708
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
709
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
710
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
711
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
712
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
713
+ ],
714
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:285:31',
715
+ level: 'error',
716
+ additionalContent: {},
717
+ confidentialContent: {}
718
+ } 
719
+ ...Token request failed Error
720
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31)
721
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:256:39)
722
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
723
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
724
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
725
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
726
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
727
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
728
+ __created: 2026-06-22T22:07:20.060Z,
729
+ __createdBy: 'OAuth2ControlService',
730
+ __lastModified: 2026-06-22T22:07:20.060Z,
731
+ __lastModifiedBy: 'OAuth2ControlService',
732
+ __v: 0,
733
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT1',
734
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT1' ],
735
+ _message: 'Missing authorization code',
736
+ _messages: [ 'Missing authorization code' ],
737
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT1',
738
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT1' ],
739
+ ___handled: false,
740
+ ___status: 400,
741
+ ___issuer: 'MISSING-ISSUER',
742
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
743
+ ___issuerService: 'OAuth2ControlService',
744
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
745
+ error: Error
746
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31)
747
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:256:39)
748
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
749
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
750
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
751
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
752
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
753
+ errors: [
754
+ Error
755
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31)
756
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:256:39)
757
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
758
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
759
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
760
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
761
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
762
+ ],
763
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:194:31',
764
+ level: 'error',
765
+ additionalContent: {},
766
+ confidentialContent: {}
767
+ } 
768
+ .Token request failed Error
769
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23)
770
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:239:39)
771
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
772
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
773
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
774
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
775
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
776
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
777
+ __created: 2026-06-22T22:07:20.062Z,
778
+ __createdBy: 'OAuth2ControlService',
779
+ __lastModified: 2026-06-22T22:07:20.062Z,
780
+ __lastModifiedBy: 'OAuth2ControlService',
781
+ __v: 0,
782
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT0',
783
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT0' ],
784
+ _message: 'Missing required OAuth2 parameters',
785
+ _messages: [ 'Missing required OAuth2 parameters' ],
786
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT0',
787
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT0' ],
788
+ ___handled: false,
789
+ ___status: 400,
790
+ ___issuer: 'MISSING-ISSUER',
791
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
792
+ ___issuerService: 'OAuth2ControlService',
793
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
794
+ error: Error
795
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23)
796
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:239:39)
797
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
798
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
799
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
800
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
801
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
802
+ errors: [
803
+ Error
804
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23)
805
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:239:39)
806
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
807
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
808
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
809
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
810
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
811
+ ],
812
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:171:23',
813
+ level: 'error',
814
+ additionalContent: {},
815
+ confidentialContent: {}
816
+ } 
817
+ .Token request failed Error
818
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23)
819
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:247:39)
820
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
821
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
822
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
823
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
824
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
825
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
826
+ __created: 2026-06-22T22:07:20.063Z,
827
+ __createdBy: 'OAuth2ControlService',
828
+ __lastModified: 2026-06-22T22:07:20.063Z,
829
+ __lastModifiedBy: 'OAuth2ControlService',
830
+ __v: 0,
831
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT4',
832
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT4' ],
833
+ _message: 'Invalid client credentials',
834
+ _messages: [ 'Invalid client credentials' ],
835
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT4',
836
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT4' ],
837
+ ___handled: false,
838
+ ___status: 401,
839
+ ___issuer: 'MISSING-ISSUER',
840
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
841
+ ___issuerService: 'OAuth2ControlService',
842
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
843
+ error: Error
844
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23)
845
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:247:39)
846
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
847
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
848
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
849
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
850
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
851
+ errors: [
852
+ Error
853
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23)
854
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:247:39)
855
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
856
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
857
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
858
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
859
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
860
+ ],
861
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:182:23',
862
+ level: 'error',
863
+ additionalContent: {},
864
+ confidentialContent: {}
865
+ } 
866
+ ..Token request failed Error
867
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31)
868
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:265:39)
869
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
870
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
871
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
872
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
873
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
874
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
875
+ __created: 2026-06-22T22:07:20.064Z,
876
+ __createdBy: 'OAuth2ControlService',
877
+ __lastModified: 2026-06-22T22:07:20.064Z,
878
+ __lastModifiedBy: 'OAuth2ControlService',
879
+ __v: 0,
880
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT5',
881
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT5' ],
882
+ _message: 'Invalid or expired authorization code',
883
+ _messages: [ 'Invalid or expired authorization code' ],
884
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT5',
885
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT5' ],
886
+ ___handled: false,
887
+ ___status: 400,
888
+ ___issuer: 'MISSING-ISSUER',
889
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
890
+ ___issuerService: 'OAuth2ControlService',
891
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
892
+ error: Error
893
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31)
894
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:265:39)
895
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
896
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
897
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
898
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
899
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
900
+ errors: [
901
+ Error
902
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31)
903
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:265:39)
904
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
905
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
906
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
907
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
908
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
909
+ ],
910
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:206:31',
911
+ level: 'error',
912
+ additionalContent: {},
913
+ confidentialContent: {}
914
+ } 
915
+ .Token request failed Error
916
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31)
917
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:302:39)
918
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
919
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
920
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
921
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
922
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
923
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
924
+ __created: 2026-06-22T22:07:20.065Z,
925
+ __createdBy: 'OAuth2ControlService',
926
+ __lastModified: 2026-06-22T22:07:20.065Z,
927
+ __lastModifiedBy: 'OAuth2ControlService',
928
+ __v: 0,
929
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT8',
930
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT8' ],
931
+ _message: 'Invalid username or password',
932
+ _messages: [ 'Invalid username or password' ],
933
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT8',
934
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT8' ],
935
+ ___handled: false,
936
+ ___status: 401,
937
+ ___issuer: 'MISSING-ISSUER',
938
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
939
+ ___issuerService: 'OAuth2ControlService',
940
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
941
+ error: Error
942
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31)
943
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:302:39)
944
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
945
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
946
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
947
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
948
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
949
+ errors: [
950
+ Error
951
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31)
952
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:302:39)
953
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
954
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
955
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
956
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
957
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
958
+ ],
959
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:297:31',
960
+ level: 'error',
961
+ additionalContent: {},
962
+ confidentialContent: {}
963
+ } 
964
+ .Token request failed Error
965
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27)
966
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:310:39)
967
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
968
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
969
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
970
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
971
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
972
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
973
+ __created: 2026-06-22T22:07:20.066Z,
974
+ __createdBy: 'OAuth2ControlService',
975
+ __lastModified: 2026-06-22T22:07:20.066Z,
976
+ __lastModifiedBy: 'OAuth2ControlService',
977
+ __v: 0,
978
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT3',
979
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT3' ],
980
+ _message: 'Unsupported grant_type',
981
+ _messages: [ 'Unsupported grant_type' ],
982
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT3',
983
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT3' ],
984
+ ___handled: false,
985
+ ___status: 400,
986
+ ___issuer: 'MISSING-ISSUER',
987
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
988
+ ___issuerService: 'OAuth2ControlService',
989
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
990
+ error: Error
991
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27)
992
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:310:39)
993
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
994
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
995
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
996
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
997
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
998
+ errors: [
999
+ Error
1000
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27)
1001
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:310:39)
1002
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1003
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1004
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1005
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1006
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1007
+ ],
1008
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:324:27',
1009
+ level: 'error',
1010
+ additionalContent: {},
1011
+ confidentialContent: {}
1012
+ } 
1013
+ .Token request failed Error
1014
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31)
1015
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:283:39)
1016
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1017
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1018
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1019
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1020
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1021
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1022
+ __created: 2026-06-22T22:07:20.067Z,
1023
+ __createdBy: 'OAuth2ControlService',
1024
+ __lastModified: 2026-06-22T22:07:20.067Z,
1025
+ __lastModifiedBy: 'OAuth2ControlService',
1026
+ __v: 0,
1027
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HT6',
1028
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HT6' ],
1029
+ _message: 'Invalid refresh token',
1030
+ _messages: [ 'Invalid refresh token' ],
1031
+ __userMessage: 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT6',
1032
+ __userMessages: [ 'Invalid token request\n ErrorCode: T_LOCAL|DyNTS-OA2-HT6' ],
1033
+ ___handled: false,
1034
+ ___status: 400,
1035
+ ___issuer: 'MISSING-ISSUER',
1036
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1037
+ ___issuerService: 'OAuth2ControlService',
1038
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1039
+ error: Error
1040
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31)
1041
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:283:39)
1042
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1043
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1044
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1045
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1046
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1047
+ errors: [
1048
+ Error
1049
+ at DyNTS_OAuth2_ControlService.handleTokenRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31)
1050
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:283:39)
1051
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1052
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1053
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1054
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1055
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1056
+ ],
1057
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:247:31',
1058
+ level: 'error',
1059
+ additionalContent: {},
1060
+ confidentialContent: {}
1061
+ } 
1062
+ .Userinfo request failed Error
1063
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1064
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:343:39)
1065
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1066
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1067
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1068
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1069
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1070
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1071
+ __created: 2026-06-22T22:07:20.068Z,
1072
+ __createdBy: 'OAuth2ControlService',
1073
+ __lastModified: 2026-06-22T22:07:20.068Z,
1074
+ __lastModifiedBy: 'OAuth2ControlService',
1075
+ __v: 0,
1076
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HU0',
1077
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HU0' ],
1078
+ _message: 'Invalid or expired access token',
1079
+ _messages: [ 'Invalid or expired access token' ],
1080
+ __userMessage: 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0',
1081
+ __userMessages: [ 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0' ],
1082
+ ___handled: false,
1083
+ ___status: 401,
1084
+ ___issuer: 'MISSING-ISSUER',
1085
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1086
+ ___issuerService: 'OAuth2ControlService',
1087
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1088
+ error: Error
1089
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1090
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:343:39)
1091
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1092
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1093
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1094
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1095
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1096
+ errors: [
1097
+ Error
1098
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1099
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:343:39)
1100
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1101
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1102
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1103
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1104
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1105
+ ],
1106
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23',
1107
+ level: 'error',
1108
+ additionalContent: {},
1109
+ confidentialContent: {}
1110
+ } 
1111
+ .Userinfo request failed Error
1112
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1113
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:354:39)
1114
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1115
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1116
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1117
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1118
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1119
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1120
+ __created: 2026-06-22T22:07:20.069Z,
1121
+ __createdBy: 'OAuth2ControlService',
1122
+ __lastModified: 2026-06-22T22:07:20.069Z,
1123
+ __lastModifiedBy: 'OAuth2ControlService',
1124
+ __v: 0,
1125
+ _errorCode: 'T_LOCAL|DyNTS-OA2-HU0',
1126
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-HU0' ],
1127
+ _message: 'Invalid or expired access token',
1128
+ _messages: [ 'Invalid or expired access token' ],
1129
+ __userMessage: 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0',
1130
+ __userMessages: [ 'Invalid token\n ErrorCode: T_LOCAL|DyNTS-OA2-HU0' ],
1131
+ ___handled: false,
1132
+ ___status: 401,
1133
+ ___issuer: 'MISSING-ISSUER',
1134
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1135
+ ___issuerService: 'OAuth2ControlService',
1136
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1137
+ error: Error
1138
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1139
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:354:39)
1140
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1141
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1142
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1143
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1144
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1145
+ errors: [
1146
+ Error
1147
+ at DyNTS_OAuth2_ControlService.handleUserInfoRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23)
1148
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:354:39)
1149
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1150
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1151
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1152
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1153
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1154
+ ],
1155
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.js:360:23',
1156
+ level: 'error',
1157
+ additionalContent: {},
1158
+ confidentialContent: {}
1159
+ } 
1160
+ ..Userinfo request failed Error: Token missing
1161
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.control-service.spec.js:338:64)
1162
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1163
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1164
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1165
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1166
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 
1167
+ ........DyNTS AI | onCostEvent callback threw (call-type: embedding-single, model: text-embedding-3-small, issuer: test-issuer): consumer callback failure
1168
+ ..........
1169
+ Endpoint params setup failed: name: 'testEndpoint' (security: undefined) endpoint:
1170
+ ERROR:
1171
+ Error: endpoint not setted up for this endpoint (testEndpoint)
1172
+ at new DyFM_Endpoint_SettingsBase (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.16.9_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_models/control-models/service-endpoint-settings-base.control-model.ts:55:13)
1173
+ at new DyNTS_Endpoint_Params (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.js:53:13)
1174
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:194:17
1175
+ at compare (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:7305:11)
1176
+ at Expector.compare (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:4287:27)
1177
+ at Expectation.toThrow (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:4046:36)
1178
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:200:16)
1179
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1180
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1181
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16) 
1182
+ ......
1183
+ ||||||||||
1184
+
1185
+ Endpoint caught an error. 'myEndpoint' (/test)
1186
+ error: "Raw error message"
1187
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:445:28
1188
+
1189
+ ||||||||||
1190
+ 
1191
+ 
1192
+
1193
+ \\\\\\\\\\
1194
+ \\\\\\\\\\
1195
+ \\\\\\\\\\
1196
+
1197
+ Endpoint "/test" caught an error. (myEndpoint)
1198
+ ERROR: Error: Raw error message
1199
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:443:27)
1200
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1201
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1202
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1203
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1204
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1205
+
1206
+ //////////
1207
+ //////////
1208
+ //////////
1209
+
1210
+ 
1211
+ [FR-071 req-debug] ? /test (endpoint=myEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=(raw))
1212
+ 
1213
+ .
1214
+ ||||||||||
1215
+
1216
+ Endpoint caught an error. 'testEndpoint' (/test)
1217
+ error: "Test error"
1218
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:422:28
1219
+
1220
+ ||||||||||
1221
+ 
1222
+ 
1223
+
1224
+ \\\\\\\\\\
1225
+ \\\\\\\\\\
1226
+ \\\\\\\\\\
1227
+
1228
+ Endpoint "/test" caught an error. (testEndpoint)
1229
+ ERROR: Error: Test error
1230
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:420:27)
1231
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1232
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1233
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1234
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1235
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1236
+
1237
+ //////////
1238
+ //////////
1239
+ //////////
1240
+
1241
+ 
1242
+ [FR-071 req-debug] ? /test (endpoint=testEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=(raw))
1243
+ 
1244
+ .
1245
+ ||||||||||
1246
+
1247
+ Endpoint caught an error. 'testEndpoint' (/test)
1248
+ ErrorCode: NO-ERROR-CODE
1249
+ error: "Test error"
1250
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:402:28
1251
+
1252
+ ||||||||||
1253
+ 
1254
+ 
1255
+
1256
+ \\\\\\\\\\
1257
+ \\\\\\\\\\
1258
+ \\\\\\\\\\
1259
+
1260
+ Endpoint "/test" caught an error. (testEndpoint)
1261
+ ErrorCode: NO-ERROR-CODE
1262
+ Message: Test error
1263
+
1264
+ UserMessage: undefined
1265
+ LocalStack:
1266
+ /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:397:27
1267
+
1268
+ Stack: Error: Test error
1269
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:398:24)
1270
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1271
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1272
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1273
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1274
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1275
+
1276
+ //////////
1277
+ //////////
1278
+ //////////
1279
+
1280
+ 
1281
+ [FR-071 req-debug] ? /test (endpoint=testEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=NO-ERROR-CODE)
1282
+ 
1283
+ ..
1284
+ ||||||||||
1285
+
1286
+ Endpoint caught an error. 'testEndpoint' (/test)
1287
+ error: "Circular error"
1288
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:515:28
1289
+
1290
+ ||||||||||
1291
+ 
1292
+ 
1293
+
1294
+ \\\\\\\\\\
1295
+ \\\\\\\\\\
1296
+ \\\\\\\\\\
1297
+
1298
+ Endpoint "/test" caught an error. (testEndpoint)
1299
+ ERROR: <ref *1> { message: 'Circular error', self: [Circular *1] }
1300
+
1301
+ //////////
1302
+ //////////
1303
+ //////////
1304
+
1305
+ 
1306
+ [FR-071 req-debug] ? /test (endpoint=testEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=(raw))
1307
+ Internal Dynamo ERROR: error is not JSON.stringifyable... (it will be removed!)
1308
+ errorCode: undefined 
1309
+ 
1310
+ .
1311
+ ||||||||||
1312
+
1313
+ Endpoint caught an error. 'testEndpoint' (/test)
1314
+ ErrorCode: NO-ERROR-CODE
1315
+ error: "Test error"
1316
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:490:28
1317
+
1318
+ ||||||||||
1319
+ 
1320
+ 
1321
+
1322
+ \\\\\\\\\\
1323
+ \\\\\\\\\\
1324
+ \\\\\\\\\\
1325
+
1326
+ Endpoint "/test" caught an error. (testEndpoint)
1327
+ ErrorCode: NO-ERROR-CODE
1328
+ Message: Test error
1329
+
1330
+ UserMessage: undefined
1331
+ LocalStack:
1332
+ /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:483:27
1333
+
1334
+ Stack: Error: Test error
1335
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:484:24)
1336
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1337
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1338
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1339
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1340
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1341
+
1342
+ //////////
1343
+ //////////
1344
+ //////////
1345
+
1346
+ 
1347
+ [FR-071 req-debug] ? /test (endpoint=testEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=NO-ERROR-CODE)
1348
+ 
1349
+ .
1350
+ ||||||||||
1351
+
1352
+ Endpoint caught an error. 'proxyEndpoint' (/proxy)
1353
+ error: "Upstream 502"
1354
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:467:28
1355
+
1356
+ ||||||||||
1357
+ 
1358
+ 
1359
+
1360
+ \\\\\\\\\\
1361
+ \\\\\\\\\\
1362
+ \\\\\\\\\\
1363
+
1364
+ Endpoint "/proxy" caught an error. (proxyEndpoint)
1365
+ ERROR: Error: Upstream 502
1366
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:465:41)
1367
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1368
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1369
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1370
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1371
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1372
+ status: 502
1373
+ }
1374
+
1375
+ //////////
1376
+ //////////
1377
+ //////////
1378
+
1379
+ 
1380
+ [FR-071 req-debug] ? /test (endpoint=proxyEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=(raw))
1381
+ 
1382
+ .
1383
+ ||||||||||
1384
+
1385
+ Endpoint caught an error. 'testEndpoint' (/test)
1386
+ error: "Test error"
1387
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:308:28
1388
+
1389
+ ||||||||||
1390
+ 
1391
+ 
1392
+
1393
+ \\\\\\\\\\
1394
+ \\\\\\\\\\
1395
+ \\\\\\\\\\
1396
+
1397
+ Endpoint "/test" caught an error. (testEndpoint)
1398
+ ERROR: Error: Test error
1399
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_models/control-models/endpoint-params.control-model.spec.js:306:27)
1400
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1401
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1402
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1403
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1404
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1405
+
1406
+ //////////
1407
+ //////////
1408
+ //////////
1409
+
1410
+ 
1411
+ [FR-071 req-debug] ? /test (endpoint=testEndpoint, origin=none, auth=NO, secretKey=no, adminKey=no, errorCode=(raw))
1412
+ 
1413
+ .. <<<===== 'testEndpoint' result sent.
1414
+ . <<<===== 'testEndpoint' result sent.
1415
+ .. <<<===== 'testEndpoint' result sent.
1416
+ .****************...............................................................................**********************.
1417
+ EmailService construction (Test Sender) Finished!
1418
+ ......
1419
+ ||||||||||
1420
+
1421
+ [DyNTS MCP] http server starting (test-mcp v0.0.1-spec); advertised tools: alpha, beta, boom, structuredError
1422
+
1423
+ ||||||||||
1424
+ 
1425
+ .................error not found, saving....
1426
+ ErrorMsg: User error: No account found 
1427
+ error saved
1428
+ .error not saved (dev version)
1429
+ ErrorMsg: Dev error 
1430
+ error saved
1431
+ error found, not saving ("known" error), but increased count,
1432
+ count: 6 
1433
+ ErrorMsg: Duplicate error message 
1434
+ ErrorMsg: New error message 
1435
+ error saved
1436
+ ErrorMsg: Test internal error 
1437
+ error saved
1438
+ 
1439
+ ||||||||||
1440
+
1441
+ DyNTS_Error_DataService handling InternalError... Error: Test internal error
1442
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/errors/errors.data-service.spec.js:140:47)
1443
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1444
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1445
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1446
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1447
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1448
+
1449
+ ||||||||||
1450
+ 
1451
+ 
1452
+ ||||||||||
1453
+
1454
+ checkErrorIsStringifyableOrResolvable error TypeError: Converting circular structure to JSON
1455
+ --> starting at object with constructor 'Object'
1456
+ --- property 'circular' closes the circle
1457
+ at JSON.stringify (<anonymous>)
1458
+ at DyNTS_Errors_DataService.checkErrorIsStringifyableOrResolvable (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/errors/errors.data-service.js:285:18)
1459
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/errors/errors.data-service.spec.js:162:36)
1460
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1461
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1462
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1463
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1464
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1465
+
1466
+ ||||||||||
1467
+ 
1468
+ .error not found, saving....
1469
+ ..error not found, saving....
1470
+ ...error not found, saving....
1471
+ .....................error found, not saving ("known" error), but increased count,
1472
+ count: 3 
1473
+ ErrorMsg: Regression error 
1474
+ .error found, not saving ("known" error), but increased count,
1475
+ count: 2 
1476
+ ErrorMsg: Old recurrence 
1477
+ .**************************......................................................❌ getDataByDependencyId failed, dependencyKey is missing from service! (test_data)
1478
+ 📍 /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/base/data.service.spec.js:182:87
1479
+ ...................................................................................................................................OAuth2 self-token authentication failed Error
1480
+ at DyNTS_OAuth2_AuthService.authenticate_tokenSelf (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23)
1481
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:116:39)
1482
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1483
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1484
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1485
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1486
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1487
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1488
+ __created: 2026-06-22T22:07:21.245Z,
1489
+ __createdBy: 'AuthService',
1490
+ __lastModified: 2026-06-22T22:07:21.245Z,
1491
+ __lastModifiedBy: 'AuthService',
1492
+ __v: 0,
1493
+ _errorCode: 'T_LOCAL|DyNTS-OA2-ATS1',
1494
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-ATS1' ],
1495
+ _message: 'Invalid token format',
1496
+ _messages: [ 'Invalid token format' ],
1497
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1498
+ 'please contact the responsible development team.\n' +
1499
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-ATS1',
1500
+ __userMessages: [
1501
+ 'We encountered an unhandled Auth Error, \n' +
1502
+ 'please contact the responsible development team.\n' +
1503
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-ATS1'
1504
+ ],
1505
+ ___handled: false,
1506
+ ___status: 401,
1507
+ ___issuer: 'MISSING-ISSUER',
1508
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1509
+ ___issuerService: 'AuthService',
1510
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1511
+ error: Error
1512
+ at DyNTS_OAuth2_AuthService.authenticate_tokenSelf (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23)
1513
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:116:39)
1514
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1515
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1516
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1517
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1518
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1519
+ errors: [
1520
+ Error
1521
+ at DyNTS_OAuth2_AuthService.authenticate_tokenSelf (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23)
1522
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:116:39)
1523
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1524
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1525
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1526
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1527
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1528
+ ],
1529
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:70:23',
1530
+ level: 'error',
1531
+ additionalContent: {},
1532
+ confidentialContent: {}
1533
+ } 
1534
+ ...OAuth2 token authentication failed Error
1535
+ at DyNTS_OAuth2_AuthService.getTokenFromRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/auth.service.js:34:19)
1536
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:24:32)
1537
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:64:39)
1538
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1539
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1540
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1541
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1542
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1543
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1544
+ __created: 2026-06-22T22:07:21.252Z,
1545
+ __createdBy: 'AuthService',
1546
+ __lastModified: 2026-06-22T22:07:21.252Z,
1547
+ __lastModifiedBy: 'AuthService',
1548
+ __v: 0,
1549
+ _errorCode: 'T_LOCAL|DyNTS-AS0-GT0',
1550
+ _errorCodes: [ 'T_LOCAL|DyNTS-AS0-GT0' ],
1551
+ _message: 'AuthHeader missing!',
1552
+ _messages: [ 'AuthHeader missing!' ],
1553
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1554
+ 'please contact the responsible development team.\n' +
1555
+ ' ErrorCode: T_LOCAL|DyNTS-AS0-GT0',
1556
+ __userMessages: [
1557
+ 'We encountered an unhandled Auth Error, \n' +
1558
+ 'please contact the responsible development team.\n' +
1559
+ ' ErrorCode: T_LOCAL|DyNTS-AS0-GT0'
1560
+ ],
1561
+ ___handled: false,
1562
+ ___status: 401,
1563
+ ___issuer: 'MISSING-ISSUER',
1564
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1565
+ ___issuerService: 'AuthService',
1566
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1567
+ error: Error
1568
+ at DyNTS_OAuth2_AuthService.getTokenFromRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/auth.service.js:34:19)
1569
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:24:32)
1570
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:64:39)
1571
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1572
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1573
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1574
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1575
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1576
+ errors: [
1577
+ Error
1578
+ at DyNTS_OAuth2_AuthService.getTokenFromRequest (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/auth.service.js:34:19)
1579
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:24:32)
1580
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:64:39)
1581
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1582
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1583
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1584
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1585
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1586
+ ],
1587
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/auth.service.js:34:19',
1588
+ level: 'error',
1589
+ additionalContent: {},
1590
+ confidentialContent: { headers: {} }
1591
+ } 
1592
+ .OAuth2 token authentication failed Error
1593
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1594
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:75:39)
1595
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1596
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1597
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1598
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1599
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1600
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1601
+ __created: 2026-06-22T22:07:21.254Z,
1602
+ __createdBy: 'AuthService',
1603
+ __lastModified: 2026-06-22T22:07:21.254Z,
1604
+ __lastModifiedBy: 'AuthService',
1605
+ __v: 0,
1606
+ _errorCode: 'T_LOCAL|DyNTS-OA2-AT1',
1607
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-AT1' ],
1608
+ _message: 'Invalid token format',
1609
+ _messages: [ 'Invalid token format' ],
1610
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1611
+ 'please contact the responsible development team.\n' +
1612
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-AT1',
1613
+ __userMessages: [
1614
+ 'We encountered an unhandled Auth Error, \n' +
1615
+ 'please contact the responsible development team.\n' +
1616
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-AT1'
1617
+ ],
1618
+ ___handled: false,
1619
+ ___status: 401,
1620
+ ___issuer: 'MISSING-ISSUER',
1621
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1622
+ ___issuerService: 'AuthService',
1623
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1624
+ error: Error
1625
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1626
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:75:39)
1627
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1628
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1629
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1630
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1631
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1632
+ errors: [
1633
+ Error
1634
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1635
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:75:39)
1636
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1637
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1638
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1639
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1640
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1641
+ ],
1642
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23',
1643
+ level: 'error',
1644
+ additionalContent: {},
1645
+ confidentialContent: {}
1646
+ } 
1647
+ .OAuth2 token authentication failed Error
1648
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1649
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:60:39)
1650
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1651
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1652
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1653
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1654
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1655
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1656
+ __created: 2026-06-22T22:07:21.256Z,
1657
+ __createdBy: 'AuthService',
1658
+ __lastModified: 2026-06-22T22:07:21.256Z,
1659
+ __lastModifiedBy: 'AuthService',
1660
+ __v: 0,
1661
+ _errorCode: 'T_LOCAL|DyNTS-OA2-AT1',
1662
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-AT1' ],
1663
+ _message: 'Invalid token format',
1664
+ _messages: [ 'Invalid token format' ],
1665
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1666
+ 'please contact the responsible development team.\n' +
1667
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-AT1',
1668
+ __userMessages: [
1669
+ 'We encountered an unhandled Auth Error, \n' +
1670
+ 'please contact the responsible development team.\n' +
1671
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-AT1'
1672
+ ],
1673
+ ___handled: false,
1674
+ ___status: 401,
1675
+ ___issuer: 'MISSING-ISSUER',
1676
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1677
+ ___issuerService: 'AuthService',
1678
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1679
+ error: Error
1680
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1681
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:60:39)
1682
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1683
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1684
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1685
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1686
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1687
+ errors: [
1688
+ Error
1689
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1690
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:60:39)
1691
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1692
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1693
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1694
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1695
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1696
+ ],
1697
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23',
1698
+ level: 'error',
1699
+ additionalContent: {},
1700
+ confidentialContent: {}
1701
+ } 
1702
+ ..OAuth2 token authentication failed Error
1703
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1704
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:82:39)
1705
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1706
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1707
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1708
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1709
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1710
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1711
+ __created: 2026-06-22T22:07:21.345Z,
1712
+ __createdBy: 'AuthService',
1713
+ __lastModified: 2026-06-22T22:07:21.345Z,
1714
+ __lastModifiedBy: 'AuthService',
1715
+ __v: 0,
1716
+ _errorCode: 'T_LOCAL|DyNTS-OA2-AT1',
1717
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-AT1' ],
1718
+ _message: 'Invalid token format',
1719
+ _messages: [ 'Invalid token format' ],
1720
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1721
+ 'please contact the responsible development team.\n' +
1722
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-AT1',
1723
+ __userMessages: [
1724
+ 'We encountered an unhandled Auth Error, \n' +
1725
+ 'please contact the responsible development team.\n' +
1726
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-AT1'
1727
+ ],
1728
+ ___handled: false,
1729
+ ___status: 401,
1730
+ ___issuer: 'MISSING-ISSUER',
1731
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1732
+ ___issuerService: 'AuthService',
1733
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1734
+ error: Error
1735
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1736
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:82:39)
1737
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1738
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1739
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1740
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1741
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1742
+ errors: [
1743
+ Error
1744
+ at DyNTS_OAuth2_AuthService.authenticate_token (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23)
1745
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:82:39)
1746
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1747
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1748
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1749
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1750
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1751
+ ],
1752
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:27:23',
1753
+ level: 'error',
1754
+ additionalContent: {},
1755
+ confidentialContent: {}
1756
+ } 
1757
+ ..OAuth2 usage data permission check failed Error
1758
+ at DyNTS_OAuth2_AuthService.authenticate_tokenPerm_accUsageData (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23)
1759
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:142:39)
1760
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1761
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1762
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1763
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1764
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1765
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1766
+ __created: 2026-06-22T22:07:21.348Z,
1767
+ __createdBy: 'AuthService',
1768
+ __lastModified: 2026-06-22T22:07:21.348Z,
1769
+ __lastModifiedBy: 'AuthService',
1770
+ __v: 0,
1771
+ _errorCode: 'T_LOCAL|DyNTS-OA2-ATU1',
1772
+ _errorCodes: [ 'T_LOCAL|DyNTS-OA2-ATU1' ],
1773
+ _message: 'Invalid token format',
1774
+ _messages: [ 'Invalid token format' ],
1775
+ __userMessage: 'We encountered an unhandled Auth Error, \n' +
1776
+ 'please contact the responsible development team.\n' +
1777
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-ATU1',
1778
+ __userMessages: [
1779
+ 'We encountered an unhandled Auth Error, \n' +
1780
+ 'please contact the responsible development team.\n' +
1781
+ ' ErrorCode: T_LOCAL|DyNTS-OA2-ATU1'
1782
+ ],
1783
+ ___handled: false,
1784
+ ___status: 401,
1785
+ ___issuer: 'MISSING-ISSUER',
1786
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1787
+ ___issuerService: 'AuthService',
1788
+ ___systemVersion: 'MISSING-SYSTEM-VERSION',
1789
+ error: Error
1790
+ at DyNTS_OAuth2_AuthService.authenticate_tokenPerm_accUsageData (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23)
1791
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:142:39)
1792
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1793
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1794
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1795
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1796
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1797
+ errors: [
1798
+ Error
1799
+ at DyNTS_OAuth2_AuthService.authenticate_tokenPerm_accUsageData (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23)
1800
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.spec.js:142:39)
1801
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1802
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1803
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1804
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1805
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1806
+ ],
1807
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/oauth2/_services/oauth2.auth-service.js:125:23',
1808
+ level: 'error',
1809
+ additionalContent: {},
1810
+ confidentialContent: {}
1811
+ } 
1812
+ ......******......................................redtext-payload
1813
+ .error-marker-1782166041461
1814
+ .hello-from-spec-1782166041462
1815
+ .raw
1816
+ ......payload-1
1817
+ payload-2
1818
+ .............................ServerStatus snapshot created
1819
+ ..(checkDbReadiness) DB readiness check failed Error: no pong
1820
+ at Object.ping (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/server-status/server-status.control-service.spec.js:422:65)
1821
+ at TestServerStatusControlService.checkDbReadiness (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/server-status/server-status.control-service.js:124:46)
1822
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/server-status/server-status.control-service.spec.js:425:42)
1823
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1824
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1825
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1826
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1827
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 
1828
+ ...(checkDbReadiness) DB readiness check failed Error: boom
1829
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/server-status/server-status.control-service.spec.js:431:68)
1830
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1831
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1832
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1833
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1834
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 
1835
+ ....
1836
+ ||||||||||
1837
+
1838
+ (checkServerConnections) "test-service" server is not available
1839
+ baseUrl: https://test.example.com
1840
+ testEndpoint: /test Error: Connection failed
1841
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/server/server-status/server-status.control-service.spec.js:229:27)
1842
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1843
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1844
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1845
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1846
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1847
+
1848
+ ||||||||||
1849
+ 
1850
+ ..DyNTS_LMStudio_Embedding_ControlService testConnection Connection test failed {
1851
+ error: Error: connection refused
1852
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_services/lmstudio-embedding.control-service.spec.js:147:53)
1853
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1854
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1855
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1856
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1857
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9 {
1858
+ flag: 'DYNAMO-ERROR-OBJECT-v2',
1859
+ __created: 2026-06-22T22:07:21.554Z,
1860
+ __createdBy: 'DyNTS_LMStudio_Embedding_ControlService',
1861
+ __lastModified: 2026-06-22T22:07:21.554Z,
1862
+ __lastModifiedBy: 'DyNTS_LMStudio_Embedding_ControlService',
1863
+ __v: 0,
1864
+ _errorCode: 'T_LOCAL|DyNTS-LMS-ECS-CES0',
1865
+ _errorCodes: [ 'T_LOCAL|DyNTS-LMS-ECS-CES0' ],
1866
+ _message: 'connection refused',
1867
+ _messages: [ 'connection refused' ],
1868
+ __userMessage: 'connection refused\n ErrorCode: T_LOCAL|DyNTS-LMS-ECS-CES0',
1869
+ __userMessages: [ 'connection refused\n ErrorCode: T_LOCAL|DyNTS-LMS-ECS-CES0' ],
1870
+ ___handled: false,
1871
+ ___status: 500,
1872
+ ___issuer: 'test-issuer',
1873
+ ___issuerSystem: 'MISSING-ISSUER-SYSTEM',
1874
+ ___issuerService: 'DyNTS_LMStudio_Embedding_ControlService',
1875
+ ___systemVersion: '0.0.1',
1876
+ error: Error: connection refused
1877
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_services/lmstudio-embedding.control-service.spec.js:147:53)
1878
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1879
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1880
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1881
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1882
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9,
1883
+ errors: [
1884
+ Error: connection refused
1885
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_services/lmstudio-embedding.control-service.spec.js:147:53)
1886
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
1887
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
1888
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
1889
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
1890
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
1891
+ ],
1892
+ __localStack: '/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_services/lmstudio-embedding.control-service.js:129:19',
1893
+ level: 'error',
1894
+ additionalContent: {},
1895
+ confidentialContent: {}
1896
+ },
1897
+ issuer: 'test-issuer'
1898
+ } 
1899
+ ..........................................***************..............[DyNTS LVS hydrate] 'pool-a' pool: 3 vektor betöltve az in-memory pool-ba.
1900
+ ..[DyNTS LVS hydrate] 'pool-a' pool: 1 vektor betöltve az in-memory pool-ba.
1901
+ ..[DyNTS LVS hydrate] 'pool-a' pool: 1 vektor betöltve az in-memory pool-ba.
1902
+ ......................................Emitting event 'test-event' on socket(unknown)-(0) failed!
1903
+ ERROR: socket[socket-1] is not connected! (it will be removed...)
1904
+ Emitting event 'test-event' on socket(unknown)-(0) failed!(1)
1905
+ .Emitting event 'test-event' on socket(unknown)-(0) failed!(1)
1906
+ Emitting event 'test-event' on socket(unknown)-(1) failed!(1)
1907
+ ..Emitting event 'test-event' on socket(unknown)-(0) failed!
1908
+ ERROR: socket[socket-1] is not connected! (it will be removed...)
1909
+ Emitting event 'test-event' on socket(unknown)-(1) failed!
1910
+ ERROR: socket[socket-2] is not connected! (it will be removed...)
1911
+ .Emitting event 'test-event' on socket(unknown)-(0) failed!(1)
1912
+ Emitting event 'test-event' on socket(unknown)-(1) failed!(1)
1913
+ ....................<--- outgoing API call: "Test API Call"
1914
+ .WARNING you cant send body in get calls (Test API Call)
1915
+ ----------
1916
+
1917
+ ---> API ERROR: "Test API Call" failed (500)...
1918
+ endpoint: get "http://example.com/api/test"
1919
+ BE-BE requestStackLocation: "/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/api.service.spec.js:12:22"
1920
+ error: "undefined"
1921
+ localStack: "/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/api.service.js:126:22"
1922
+ ---------- 
1923
+ 
1924
+ 'Test API Call' was UNSUCCESSFUL
1925
+ <--- outgoing API call: "Test API Call"
1926
+ WARNING you cant send body in get calls (Test API Call)
1927
+ ----------
1928
+
1929
+ ---> API ERROR: "Test API Call" failed (500)...
1930
+ endpoint: get "http://example.com/api/test"
1931
+ BE-BE requestStackLocation: "/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/api.service.spec.js:12:22"
1932
+ error: "undefined"
1933
+ localStack: "/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/api.service.js:126:22"
1934
+ ---------- 
1935
+ 
1936
+ 'Test API Call' was UNSUCCESSFUL
1937
+ .<--- outgoing API call: "Test API Call"
1938
+ ---> "Test API Call" api call was successful
1939
+ .<--- outgoing API call: "Test API Call"
1940
+ WARNING you cant send body in get calls (Test API Call)
1941
+ "Test API Call" api call was successful
1942
+ .<--- outgoing API call: "Test API Call"
1943
+ .<--- outgoing API call: "Test API Call"
1944
+ WARNING you cant send body in get calls (Test API Call)
1945
+ ----------
1946
+
1947
+ ---> API ERROR: "Test API Call" failed (500)...
1948
+ endpoint: get "http://example.com/api/test"
1949
+ BE-BE requestStackLocation: "/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/api.service.spec.js:12:22"
1950
+ error: "undefined"
1951
+ localStack: "/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_services/core/api.service.js:126:22"
1952
+ ---------- 
1953
+ 
1954
+ 'Test API Call' was UNSUCCESSFUL
1955
+ ..................You should not set the subscription event, in case you need additional steps for your subscriptions. test (0) 
1956
+ You should not set the unsubscribe event, in case you need additional steps for your unsubscribe. test (0) 
1957
+ You should not set the error event, in case you need additional steps for your error. test (0) 
1958
+ .........**
1959
+
1960
+ \\\\\\\\\\
1961
+ \\\\\\\\\\
1962
+ \\\\\\\\\\
1963
+
1964
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1965
+
1966
+ //////////
1967
+ //////////
1968
+ //////////
1969
+
1970
+ 
1971
+ .
1972
+
1973
+ \\\\\\\\\\
1974
+ \\\\\\\\\\
1975
+ \\\\\\\\\\
1976
+
1977
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1978
+
1979
+ //////////
1980
+ //////////
1981
+ //////////
1982
+
1983
+ 
1984
+ ....................................autoConnect or reconnection is set to true in socketOptions, so reconnect is set to false
1985
+ This means that the reconnection will use the socket.io reconnection logic, not the Dynamo implementations. 
1986
+ 
1987
+
1988
+ \\\\\\\\\\
1989
+ \\\\\\\\\\
1990
+ \\\\\\\\\\
1991
+
1992
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
1993
+
1994
+ //////////
1995
+ //////////
1996
+ //////////
1997
+
1998
+ 
1999
+ autoConnect or reconnection is set to true in socketOptions, so reconnect is set to false
2000
+ This means that the reconnection will use the socket.io reconnection logic, not the Dynamo implementations. 
2001
+ 
2002
+
2003
+ \\\\\\\\\\
2004
+ \\\\\\\\\\
2005
+ \\\\\\\\\\
2006
+
2007
+ DyNTS_SocketClientService_Params (test this with custom address!) "ws://localhost"
2008
+
2009
+ //////////
2010
+ //////////
2011
+ //////////
2012
+
2013
+ 
2014
+ ..
2015
+ socket-client (socket-client-mock) Service setup finished
2016
+ < .. > socket-client (socket-client-mock) connecting to ws://localhost:0 ...
2017
+ ........********...Dynamo bot provider setup completed
2018
+ ..................
2019
+ ||||||||||
2020
+
2021
+ Error during Dynamo bot start: Error: Start failed
2022
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/bot/_modules/dynamo-bot/_services/dyb-messaging-provider.control-service.spec.js:117:27)
2023
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
2024
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
2025
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
2026
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
2027
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
2028
+
2029
+ ||||||||||
2030
+ 
2031
+ .Dynamo bot event listeners setup (messaging integration)
2032
+ ......*****.........................
2033
+ ||||||||||
2034
+
2035
+ Error replying to message: Error: Reply failed
2036
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.spec.js:241:27)
2037
+
2038
+ ||||||||||
2039
+ 
2040
+ .............
2041
+ ||||||||||
2042
+
2043
+ Error during Discord bot start: Error: Discord client not initialized. Call setup() first.
2044
+ at DyNTS_DiB_MessagingProvider_ControlService.start (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.js:53:23)
2045
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/bot/_modules/discord-bot/_services/dib-messaging-provider.control-service.spec.js:140:32)
2046
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
2047
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
2048
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
2049
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
2050
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
2051
+
2052
+ ||||||||||
2053
+ 
2054
+ ......................................................
2055
+ ||||||||||
2056
+
2057
+ ❌❌ Error handleMessage: Error: Test error
2058
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/assistant/_services/ass-io.control-service.spec.js:68:136)
2059
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
2060
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
2061
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
2062
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
2063
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
2064
+
2065
+ ||||||||||
2066
+ 
2067
+ .
2068
+ ||||||||||
2069
+
2070
+ ❌❌ Error handleMessage: Error: Test error
2071
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/assistant/_services/ass-io.control-service.spec.js:92:136)
2072
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
2073
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
2074
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
2075
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
2076
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
2077
+
2078
+ ||||||||||
2079
+ 
2080
+ ..................----------
2081
+ DYNAMO WARNING:
2082
+ vectorizeUseIndex is required if vectorizedFrom is set at "contentVectorized" in "test_data" model. (It will be set to "contentVectorized" by default)
2083
+ stackLocation: Error
2084
+
2085
+ ---------- 
2086
+ Vectorized from property "content" is not a number[] property in "test_data" model.
2087
+ stackLocation: /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.spec.js:334:40
2088
+ 
2089
+ ...................----------
2090
+ DYNAMO WARNING:
2091
+ vectorizeUseIndex is required if vectorizedFrom is set at "contentVectorized" in "test_data" model. (It will be set to "contentVectorized" by default)
2092
+ stackLocation: Error
2093
+
2094
+ ---------- 
2095
+ Vectorized from property "content" is not a number[] property in "test_data" model.
2096
+ stackLocation: /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_modules/open-ai/_services/data-services/oai-vector-data.service.spec.js:222:40
2097
+ 
2098
+ DyNTS_App_Params.constructor: dbName is not set in "nts-integration-test" model.For future compatibility.
2099
+
2100
+
2101
+
2102
+
2103
+
2104
+
2105
+
2106
+
2107
+
2108
+
2109
+ Starting nts-integration-test...
2110
+
2111
+
2112
+
2113
+
2114
+
2115
+
2116
+
2117
+
2118
+
2119
+
2120
+ ]0;nts-integration-test
2121
+ EmailService construction (FutDevPro - Auto) Finished!
2122
+
2123
+ No database connection created.
2124
+ Mon, 22 Jun 2026 22:07:23 GMT body-parser deprecated undefined extended: provide extended option at build/_services/server/app.server.js:885:41
2125
+ 
2126
+
2127
+ \\\\\\\\\\
2128
+ \\\\\\\\\\
2129
+ \\\\\\\\\\
2130
+
2131
+
2132
+ HTTP (open) server is using a randomly selected port by the OS: 37783
2133
+ (httpPort was set to 0 — this is intended for testing only)
2134
+
2135
+ //////////
2136
+ //////////
2137
+ //////////
2138
+
2139
+ 
2140
+ 
2141
+ HTTP (open) server is listening on port: 0.0.0.0:37783
2142
+ [DyNTS_MemoryGuard] installed — poll 10000ms, warn 85%/40%GC, crit 95%/60%GC (heap limit 6156MB)
2143
+ 
2144
+ socket server setup finished: "test" (attached to server on port: 0)
2145
+ ..
2146
+ ===>>> incoming 'testSimple' request... (issuer: accountId_mock)
2147
+  <<<===== 'testSimple' result sent.
2148
+ .
2149
+ ===>>> incoming 'testBase' request... (issuer: accountId_mock)
2150
+  <<<===== 'testBase' result sent.
2151
+ ..
2152
+ stopping server...
2153
+ 
2154
+ 
2155
+
2156
+ \\\\\\\\\\
2157
+ \\\\\\\\\\
2158
+ \\\\\\\\\\
2159
+
2160
+ "nts-integration-test" started successfully.
2161
+
2162
+ //////////
2163
+ //////////
2164
+ //////////
2165
+
2166
+ 
2167
+ 
2168
+ HTTP socket server close error Error: Server is not running.
2169
+ at Server.close (node:net:2284:12)
2170
+ at Object.onceWrapper (node:events:638:28)
2171
+ at Server.emit (node:events:536:35)
2172
+ at Server.emit (node:domain:489:12)
2173
+ at emitCloseNT (node:net:2344:8)
2174
+ at processTicksAndRejections (node:internal/process/task_queues:81:21) {
2175
+ code: 'ERR_SERVER_NOT_RUNNING'
2176
+ } 
2177
+ .INVALID route type: invalid - undefined
2178
+ ....DYNAMO-NTS ERROR: INVALID route type: invalid - undefined
2179
+ ...............Unable to parse JSON answer: {
2180
+ unparsedJSON: 'option1',
2181
+ error: Error: JSON parsing failed: Unexpected token 'o', "option1" is not valid JSON
2182
+ at Function.parseJsonWithEnhancedError (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.16.9_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_collections/utils/json-error-helper.util.ts:261:15)
2183
+ at Function.failableSafeParseJSON (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.16.9_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_collections/utils/object.util.ts:472:35)
2184
+ at Function.safeParseJSON (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/@futdevpro+fsm-dynamo@1.16.9_rxjs@7.8.1/node_modules/@futdevpro/fsm-dynamo/src/_collections/utils/object.util.ts:397:19)
2185
+ at TestLLMService.convertAnswerToSelectOption (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_services/ai-llm.service-base.js:184:61)
2186
+ at UserContext.<anonymous> (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/build/_modules/ai/_services/ai-llm.service-base.spec.js:119:36)
2187
+ at QueueRunner.attempt (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8414:40)
2188
+ at QueueRunner.run (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8452:27)
2189
+ at runNext (/tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8355:16)
2190
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8361:11
2191
+ at /tmp/pipeline-runs/c0a8d834-a377-432d-b47b-fd9610774e4c/node_modules/.pnpm/jasmine-core@5.10.0/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:8241:9
2192
+ } 
2193
+ 
2194
+ ||||||||||
2195
+
2196
+ DyNTS_AI_LLMChat_ServiceBase.convertAnswerToSelectOption got an invalid answer { question: 'Select an option', answer: 'OPTION1' }
2197
+
2198
+ ||||||||||
2199
+ 
2200
+ ..............................TESTTTT route: [ '192.168.1.1' ]
2201
+ .TESTTTT route: [ '192.168.1.1', '10.0.0.1', '172.16.0.1' ]
2202
+ .....
2203
+
2204
+ Pending:
2205
+
2206
+ 1) | DyNTS_DiAV_Main_ControlService | inheritance | should inherit from DiAs Main Control Service
2207
+ No reason given
2208
+
2209
+
2210
+ 2) | DyNTS_DiAs_Util | gatherMessagesForMessage | should throw error when channel is not text based
2211
+ No reason given
2212
+
2213
+
2214
+ 3) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should identify bot messages by author.id match
2215
+ No reason given
2216
+
2217
+
2218
+ 4) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should identify bot messages by author.bot flag
2219
+ No reason given
2220
+
2221
+
2222
+ 5) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should convert Discord messages to AI conversation format
2223
+ No reason given
2224
+
2225
+
2226
+ 6) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should convert bot messages with user translation flags to user role
2227
+ No reason given
2228
+
2229
+
2230
+ 7) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should identify bot messages by author.displayName match
2231
+ No reason given
2232
+
2233
+
2234
+ 8) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should convert user messages to user role
2235
+ No reason given
2236
+
2237
+
2238
+ 9) | DyNTS_DiAs_Util | convertDiscordMessagesToOAIConversation | should handle empty messages array
2239
+ No reason given
2240
+
2241
+
2242
+ 10) | DyNTS_DiAs_Util | gatherMessages | should throw error when channel is not text based
2243
+ No reason given
2244
+
2245
+
2246
+ 11) | DyNTS_DiAs_Util | gatherMessages | should use provided limit
2247
+ No reason given
2248
+
2249
+
2250
+ 12) | DyNTS_DiAs_Util | gatherMessages | should filter messages with skipFlags
2251
+ No reason given
2252
+
2253
+
2254
+ 13) | DyNTS_DiAs_Util | gatherMessages | should add author display name when third party messages exist
2255
+ No reason given
2256
+
2257
+
2258
+ 14) | DyNTS_DiAs_Util | gatherMessages | should use default limit when not provided
2259
+ No reason given
2260
+
2261
+
2262
+ 15) | DyNTS_DiAs_Util | gatherMessages | should throw DyFM_Error on fetch error
2263
+ No reason given
2264
+
2265
+
2266
+ 16) | DyNTS_Bot_Main_ControlService | setup | should throw error when no providers configured
2267
+ No reason given
2268
+
2269
+
2270
+ 17) | DyNTS_Bot_Main_ControlService | setup | should throw error when default provider type not set
2271
+ No reason given
2272
+
2273
+
2274
+ 18) | DyNTS_Bot_Main_ControlService | setup | should setup all services
2275
+ No reason given
2276
+
2277
+
2278
+ 19) | DyNTS_Bot_Main_ControlService | setup | should throw error when botIO_CS not found
2279
+ No reason given
2280
+
2281
+
2282
+ 20) | DyNTS_Bot_Main_ControlService | getProviderByType | should return provider by type
2283
+ No reason given
2284
+
2285
+
2286
+ 21) | DyNTS_Bot_Main_ControlService | defaultProvider | should return default provider after setup
2287
+ No reason given
2288
+
2289
+
2290
+ 22) | DyNTS_Bot_Main_ControlService | sendReport | should send report via default provider
2291
+ No reason given
2292
+
2293
+
2294
+ 23) | DyNTS_Bot_Main_ControlService | start | should start routines and botIO services
2295
+ No reason given
2296
+
2297
+
2298
+ 24) | DyNTS_Bot_Main_ControlService | should be a singleton instance
2299
+ No reason given
2300
+
2301
+
2302
+ 25) | DyNTS_Bot_Routines_ControlService | start | should start routines and set routinesStarted flag
2303
+ No reason given
2304
+
2305
+
2306
+ 26) | DyNTS_Bot_Routines_ControlService | start | should throw error when default provider not started
2307
+ No reason given
2308
+
2309
+
2310
+ 27) | DyNTS_Bot_Routines_ControlService | routinesStarted | should return true after start
2311
+ No reason given
2312
+
2313
+
2314
+ 28) | DyNTS_Bot_Routines_ControlService | routinesStarted | should return undefined initially
2315
+ No reason given
2316
+
2317
+
2318
+ 29) | DyNTS_Bot_Routines_ControlService | defaultProvider | should return default provider from main bot service
2319
+ No reason given
2320
+
2321
+
2322
+ 30) | DyNTS_Bot_Routines_ControlService | should be a singleton instance
2323
+ No reason given
2324
+
2325
+
2326
+ 31) | DyNTS_Bot_Routines_ControlService | setup | should throw error when main bot service not found
2327
+ No reason given
2328
+
2329
+
2330
+ 32) | DyNTS_Bot_Routines_ControlService | setup | should setup main bot service
2331
+ No reason given
2332
+
2333
+
2334
+ 33) | DyNTS_DiBo_Commands_ControlService | properties | should return discordServer from main service
2335
+ No reason given
2336
+
2337
+
2338
+ 34) | DyNTS_DiBo_Commands_ControlService | setup | should setup service with main service
2339
+ No reason given
2340
+
2341
+
2342
+ 35) | DyNTS_DiBo_Commands_ControlService | setup | should throw error if main service not found
2343
+ No reason given
2344
+
2345
+
2346
+ 36) | DyNTS_DiBo_Commands_ControlService | start | should throw error if discordServer not found
2347
+ No reason given
2348
+
2349
+
2350
+ 37) | DyNTS_DiBo_Commands_ControlService | start | should start service successfully
2351
+ No reason given
2352
+
2353
+
2354
+ 38) | DyNTS_DiBo_Commands_ControlService | handleCommand | should handle command errors
2355
+ No reason given
2356
+
2357
+
2358
+ 39) | DyNTS_DiBo_Commands_ControlService | handleCommand | should handle command successfully
2359
+ No reason given
2360
+
2361
+
2362
+ 40) | DyNTS_DiBo_Routines_ControlService | properties | should return discordServer from main service
2363
+ No reason given
2364
+
2365
+
2366
+ 41) | DyNTS_DiBo_Routines_ControlService | properties | should return routinesStarted as false initially
2367
+ No reason given
2368
+
2369
+
2370
+ 42) | DyNTS_DiBo_Routines_ControlService | start | should throw error if discordServer not found
2371
+ No reason given
2372
+
2373
+
2374
+ 43) | DyNTS_DiBo_Routines_ControlService | start | should handle start errors
2375
+ No reason given
2376
+
2377
+
2378
+ 44) | DyNTS_DiBo_Routines_ControlService | start | should start routines and set routinesStarted to true
2379
+ No reason given
2380
+
2381
+
2382
+ 45) | DyNTS_DiBo_Routines_ControlService | setup | should throw error if main service not found
2383
+ No reason given
2384
+
2385
+
2386
+ 46) | DyNTS_DiBo_Routines_ControlService | setup | should setup service with main service
2387
+ No reason given
2388
+
2389
+
2390
+ 47) | DyNTS_DiBo_IO_ControlService | handleIfCommand | should handle command if message is command
2391
+ No reason given
2392
+
2393
+
2394
+ 48) | DyNTS_DiBo_IO_ControlService | handleIfCommand | should not handle if message is not command
2395
+ No reason given
2396
+
2397
+
2398
+ 49) | DyNTS_DiBo_IO_ControlService | setup | should throw error if commands service not found
2399
+ No reason given
2400
+
2401
+
2402
+ 50) | DyNTS_DiBo_IO_ControlService | setup | should throw error if main service not found
2403
+ No reason given
2404
+
2405
+
2406
+ 51) | DyNTS_DiBo_IO_ControlService | setup | should setup service with main and commands services
2407
+ No reason given
2408
+
2409
+
2410
+ 52) | DyNTS_DiBo_IO_ControlService | properties | should return botDisplayName from main service
2411
+ No reason given
2412
+
2413
+
2414
+ 53) | DyNTS_DiBo_IO_ControlService | properties | should return botClientId from main service
2415
+ No reason given
2416
+
2417
+
2418
+ 54) | DyNTS_DiBo_IO_ControlService | properties | should return discordServer from main service
2419
+ No reason given
2420
+
2421
+
2422
+ 55) | DyNTS_DiBo_IO_ControlService | isCommand | should return true if message starts with command operator
2423
+ No reason given
2424
+
2425
+
2426
+ 56) | DyNTS_DiBo_IO_ControlService | isCommand | should return false if message does not start with command operator
2427
+ No reason given
2428
+
2429
+
2430
+ 57) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should handle errors gracefully
2431
+ No reason given
2432
+
2433
+
2434
+ 58) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should not handle message if not for bot
2435
+ No reason given
2436
+
2437
+
2438
+ 59) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should handle command if message is command
2439
+ No reason given
2440
+
2441
+
2442
+ 60) | DyNTS_DiBo_IO_ControlService | handleNewMessage | should handle message if for bot
2443
+ No reason given
2444
+
2445
+
2446
+ 61) | DyNTS_DiBo_IO_ControlService | start | should start service successfully
2447
+ No reason given
2448
+
2449
+
2450
+ 62) | DyNTS_DiBo_IO_ControlService | start | should throw error if discordServer not found
2451
+ No reason given
2452
+
2453
+
2454
+ 63) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should throw error if channel not found
2455
+ No reason given
2456
+
2457
+
2458
+ 64) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should split long messages
2459
+ No reason given
2460
+
2461
+
2462
+ 65) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should throw error if channel is not text-based
2463
+ No reason given
2464
+
2465
+
2466
+ 66) | DyNTS_DiBo_Main_ControlService | sendMessageToChannelByName | should send message to channel
2467
+ No reason given
2468
+
2469
+
2470
+ 67) | DyNTS_DiBo_Main_ControlService | getRolePingsByName | should return multiple role pings
2471
+ No reason given
2472
+
2473
+
2474
+ 68) | DyNTS_DiBo_Main_ControlService | getRoleByName | should find role in guild and cache it
2475
+ No reason given
2476
+
2477
+
2478
+ 69) | DyNTS_DiBo_Main_ControlService | getRoleByName | should return role from cache if exists
2479
+ No reason given
2480
+
2481
+
2482
+ 70) | DyNTS_DiBo_Main_ControlService | start | should throw error if discordServer not initialized
2483
+ No reason given
2484
+
2485
+
2486
+ 71) | DyNTS_DiBo_Main_ControlService | start | should start bot services
2487
+ No reason given
2488
+
2489
+
2490
+ 72) | DyNTS_DiBo_Main_ControlService | setup | should throw error if botIO_CS not found
2491
+ No reason given
2492
+
2493
+
2494
+ 73) | DyNTS_DiBo_Main_ControlService | setup | should throw error if token not found
2495
+ No reason given
2496
+
2497
+
2498
+ 74) | DyNTS_DiBo_Main_ControlService | setup | should throw error if guildId not found
2499
+ No reason given
2500
+
2501
+
2502
+ 75) | DyNTS_DiBo_Main_ControlService | setup | should setup bot services
2503
+ No reason given
2504
+
2505
+
2506
+ 76) | DyNTS_DiBo_Main_ControlService | properties | should return discordServer
2507
+ No reason given
2508
+
2509
+
2510
+ 77) | DyNTS_DiBo_Main_ControlService | properties | should return botClientId from client user
2511
+ No reason given
2512
+
2513
+
2514
+ 78) | DyNTS_DiBo_Main_ControlService | properties | should return botDisplayName from client user
2515
+ No reason given
2516
+
2517
+
2518
+ 79) | DyNTS_DiBo_Main_ControlService | constructor | should throw error if client already initialized
2519
+ No reason given
2520
+
2521
+
2522
+ 80) | DyNTS_DiBo_Main_ControlService | constructor | should initialize Discord client
2523
+ No reason given
2524
+
2525
+
2526
+ 81) | DyNTS_DiBo_Main_ControlService | getChannelByName | should find channel in guild and cache it
2527
+ No reason given
2528
+
2529
+
2530
+ 82) | DyNTS_DiBo_Main_ControlService | getChannelByName | should return channel from cache if exists
2531
+ No reason given
2532
+
2533
+
2534
+ 83) | DyNTS_DiBo_Main_ControlService | getRolePingByName | should return role ping
2535
+ No reason given
2536
+
2537
+
2538
+ 84) | DyNTS_DiBo_Main_ControlService | getRolePingByName | should return empty string if role not found
2539
+ No reason given
2540
+
2541
+
2542
+ 85) | DyNTS_DiBo_Operations_Util | deleteMessage | should handle delete error gracefully
2543
+ No reason given
2544
+
2545
+
2546
+ 86) | DyNTS_DiBo_Operations_Util | deleteMessage | should delete message successfully
2547
+ No reason given
2548
+
2549
+
2550
+ 87) | DyNTS_DiBo_Operations_Util | getMemberIdByName | should return undefined when member not found
2551
+ No reason given
2552
+
2553
+
2554
+ 88) | DyNTS_DiBo_Operations_Util | getMemberIdByName | should return member id by username
2555
+ No reason given
2556
+
2557
+
2558
+ 89) | DyNTS_DiBo_Operations_Util | findTextChannelByName | should throw error when channel is not text based
2559
+ No reason given
2560
+
2561
+
2562
+ 90) | DyNTS_DiBo_Operations_Util | findTextChannelByName | should find and return text channel
2563
+ No reason given
2564
+
2565
+
2566
+ 91) | DyNTS_DiBo_Operations_Util | sendMessageToChannelByName | should log error when channel is not text based
2567
+ No reason given
2568
+
2569
+
2570
+ 92) | DyNTS_DiBo_Operations_Util | sendMessageToChannelByName | should send message to text channel
2571
+ No reason given
2572
+
2573
+
2574
+ 93) | DyNTS_DiBo_Operations_Util | findVoiceChannelByName | should throw error when channel is not voice based
2575
+ No reason given
2576
+
2577
+
2578
+ 94) | DyNTS_DiBo_Operations_Util | findVoiceChannelByName | should find and return voice channel
2579
+ No reason given
2580
+
2581
+
2582
+ 95) | DyNTS_DiBo_Operations_Util | findChannelByName | should find text channel by name
2583
+ No reason given
2584
+
2585
+
2586
+ 96) | DyNTS_DiBo_Operations_Util | findChannelByName | should return undefined when channel not found
2587
+ No reason given
2588
+
2589
+
2590
+ 97) | DyNTS_Bot_MessagingProvider_ServiceBase | sendReportIn | should send report in report channel
2591
+ No reason given
2592
+
2593
+
2594
+ 98) | DyNTS_Bot_MessagingProvider_ServiceBase | channelCache | should cache channels
2595
+ No reason given
2596
+
2597
+
2598
+ 99) | DyNTS_Bot_MessagingProvider_ServiceBase | wrapChannel | should wrap channel correctly
2599
+ No reason given
2600
+
2601
+
2602
+ 100) | DyNTS_Bot_MessagingProvider_ServiceBase | roleCache | should cache roles
2603
+ No reason given
2604
+
2605
+
2606
+ 101) | DyNTS_Bot_MessagingProvider_ServiceBase | sendReport | should send report to report channel
2607
+ No reason given
2608
+
2609
+
2610
+ 102) | DyNTS_Bot_MessagingProvider_ServiceBase | wrapMessage | should wrap message correctly
2611
+ No reason given
2612
+
2613
+
2614
+ 103) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have botDisplayName getter
2615
+ No reason given
2616
+
2617
+
2618
+ 104) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have botId getter
2619
+ No reason given
2620
+
2621
+
2622
+ 105) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have config property
2623
+ No reason given
2624
+
2625
+
2626
+ 106) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have type property
2627
+ No reason given
2628
+
2629
+
2630
+ 107) | DyNTS_Bot_MessagingProvider_ServiceBase | properties | should have name property
2631
+ No reason given
2632
+
2633
+
2634
+ 108) | DyNTS_Bot_MessagingProvider_ServiceBase | should be a singleton instance
2635
+ No reason given
2636
+
2637
+
2638
+ 109) | DyNTS_Bot_MessagingProvider_ServiceBase | getUserMention | should return user mention
2639
+ No reason given
2640
+
2641
+
2642
+ 110) | DyNTS_Bot_MessagingProvider_ServiceBase | wrapUser | should wrap user correctly
2643
+ No reason given
2644
+
2645
+
2646
+ 111) | DyNTS_Bot_Commands_ControlService | start | should succeed when default provider is started
2647
+ No reason given
2648
+
2649
+
2650
+ 112) | DyNTS_Bot_Commands_ControlService | start | should throw error when default provider not started
2651
+ No reason given
2652
+
2653
+
2654
+ 113) | DyNTS_Bot_Commands_ControlService | defaultProvider | should return default provider from main bot service
2655
+ No reason given
2656
+
2657
+
2658
+ 114) | DyNTS_Bot_Commands_ControlService | setup | should throw error when main bot service not found
2659
+ No reason given
2660
+
2661
+
2662
+ 115) | DyNTS_Bot_Commands_ControlService | setup | should setup main bot service
2663
+ No reason given
2664
+
2665
+
2666
+ 116) | DyNTS_Bot_Commands_ControlService | should be a singleton instance
2667
+ No reason given
2668
+
2669
+
2670
+ 117) | DyNTS_Bot_IO_ControlService | start | should succeed when default provider is initialized
2671
+ No reason given
2672
+
2673
+
2674
+ 118) | DyNTS_Bot_IO_ControlService | start | should throw error when default provider not initialized
2675
+ No reason given
2676
+
2677
+
2678
+ 119) | DyNTS_Bot_IO_ControlService | setup | should setup main bot and commands services
2679
+ No reason given
2680
+
2681
+
2682
+ 120) | DyNTS_Bot_IO_ControlService | setup | should throw error when commands service not found
2683
+ No reason given
2684
+
2685
+
2686
+ 121) | DyNTS_Bot_IO_ControlService | setup | should throw error when main bot service not found
2687
+ No reason given
2688
+
2689
+
2690
+ 122) | DyNTS_Bot_IO_ControlService | getMessageIsForBotToHandle | should return false when message is from bot and bots not allowed
2691
+ No reason given
2692
+
2693
+
2694
+ 123) | DyNTS_Bot_IO_ControlService | getMessageIsForBotToHandle | should return false when message has skip flags
2695
+ No reason given
2696
+
2697
+
2698
+ 124) | DyNTS_Bot_IO_ControlService | getMessageIsForBotToHandle | should return false when bot not initialized
2699
+ No reason given
2700
+
2701
+
2702
+ 125) | DyNTS_Bot_IO_ControlService | isCommand | should return false when message does not start with command operator
2703
+ No reason given
2704
+
2705
+
2706
+ 126) | DyNTS_Bot_IO_ControlService | isCommand | should return true when no command operator is set
2707
+ No reason given
2708
+
2709
+
2710
+ 127) | DyNTS_Bot_IO_ControlService | isCommand | should return true when message starts with command operator
2711
+ No reason given
2712
+
2713
+
2714
+ 128) | DyNTS_Bot_IO_ControlService | defaultProvider | should return default provider from main bot service
2715
+ No reason given
2716
+
2717
+
2718
+ 129) | DyNTS_Bot_IO_ControlService | should be a singleton instance
2719
+ No reason given
2720
+
2721
+
2722
+ 130) | DyNTS_Bot_IO_ControlService | handleIfCommand | should return false when message is not a command
2723
+ No reason given
2724
+
2725
+
2726
+ 131) | DyNTS_Bot_IO_ControlService | handleIfCommand | should handle command when message is a command
2727
+ No reason given
2728
+
2729
+
2730
+ 132) | DyNTS_DiAs_Main_ControlService | should be a singleton instance
2731
+ No reason given
2732
+
2733
+
2734
+ 133) | DyNTS_DiAs_Main_ControlService | should extend DiAs_ServiceBase
2735
+ No reason given
2736
+
2737
+
2738
+ 134) | DyNTS_DiAs_ServiceBase | should initialize LLM chat service
2739
+ No reason given
2740
+
2741
+
2742
+ 135) | DyNTS_DiAs_ServiceBase | gatherMessagesAsOAIConversation | should convert messages to OAI conversation format
2743
+ No reason given
2744
+
2745
+
2746
+ 136) | DyNTS_DiAs_ServiceBase | should have default system prompt
2747
+ No reason given
2748
+
2749
+
2750
+ 137) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForChannel | should add source info when requested
2751
+ No reason given
2752
+
2753
+
2754
+ 138) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForChannel | should gather and filter messages
2755
+ No reason given
2756
+
2757
+
2758
+ 139) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForChannel | should sort messages by timestamp
2759
+ No reason given
2760
+
2761
+
2762
+ 140) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForMessage | should gather messages for a message
2763
+ No reason given
2764
+
2765
+
2766
+ 141) | DyNTS_DiAs_ServiceBase | gatherDiscordMessagesForMessage | should use custom limit
2767
+ No reason given
2768
+
2769
+
2770
+ 142) | DyNTS_DiAs_IO_ControlService | handleMessage | should handle message with AI and reply
2771
+ No reason given
2772
+
2773
+
2774
+ 143) | DyNTS_DiAs_IO_ControlService | handleMessage | should send error reply when error occurs and debugLevel >= 1
2775
+ No reason given
2776
+
2777
+
2778
+ 144) | DyNTS_DiAs_IO_ControlService | handleMessage | should not send error reply when dontSendErrorReply is true
2779
+ No reason given
2780
+
2781
+
2782
+ 145) | DyNTS_DiAs_IO_ControlService | should be a singleton instance
2783
+ No reason given
2784
+
2785
+
2786
+ 146) | DyNTS_DiAs_IO_ControlService | should get LLM chat service from main bot service
2787
+ No reason given
2788
+
2789
+ 1435 specs, 0 failures, 146 pending specs
2790
+ Finished in 10.584 seconds
2791
+ Randomized with seed 65127 (jasmine --random=true --seed=65127)
2792
+ [cdp] ✓ test (93.7s)
2793
+ [cdp] ▶ npm-publish (started: 10:07:26 PM)
2794
+ npm publish attempt 1/3
2795
+
2796
+ > @futdevpro/nts-dynamo@01.15.75 prepare
2797
+ > husky
2798
+