@futdevpro/nts-dynamo 1.15.103 → 1.15.104

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