@futdevpro/nts-dynamo 1.15.82 → 1.15.84

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