@futdevpro/nts-dynamo 1.15.91 → 1.15.94

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