@futdevpro/nts-dynamo 1.15.53 → 1.15.54

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