@futdevpro/nts-dynamo 1.15.40 → 1.15.41

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