@futdevpro/nts-dynamo 1.15.72 → 1.15.74

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