@futdevpro/nts-dynamo 1.15.83 → 1.15.85

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