@stack-spot/portal-network 0.184.0 → 0.185.0-beta.1

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 (142) hide show
  1. package/CHANGELOG.md +2444 -2412
  2. package/dist/api/account.js +1 -1
  3. package/dist/api/agent-tools.js +1 -1
  4. package/dist/api/agent.js +1 -1
  5. package/dist/api/ai.js +1 -1
  6. package/dist/api/apiManagement.js +1 -1
  7. package/dist/api/apiRuntime.js +1 -1
  8. package/dist/api/cloudAccount.js +1 -1
  9. package/dist/api/cloudPlatform.js +1 -1
  10. package/dist/api/cloudPlatformHorizon.js +1 -1
  11. package/dist/api/cloudRuntimes.js +1 -1
  12. package/dist/api/cloudServices.js +1 -1
  13. package/dist/api/codeShift.d.ts +63 -4
  14. package/dist/api/codeShift.d.ts.map +1 -1
  15. package/dist/api/codeShift.js +14 -1
  16. package/dist/api/codeShift.js.map +1 -1
  17. package/dist/api/content.js +1 -1
  18. package/dist/api/dataIntegration.js +1 -1
  19. package/dist/api/discover.js +1 -1
  20. package/dist/api/genAiInference.js +1 -1
  21. package/dist/api/insights.js +1 -1
  22. package/dist/api/notification.js +1 -1
  23. package/dist/api/secrets.js +1 -1
  24. package/dist/api/serviceCatalog.js +1 -1
  25. package/dist/api/workspace-ai.js +1 -1
  26. package/dist/api/workspace.js +1 -1
  27. package/dist/api/workspaceManager.js +1 -1
  28. package/dist/api/workspaceSearchEngine.js +1 -1
  29. package/dist/client/ai.d.ts.map +1 -1
  30. package/dist/client/ai.js +84 -14
  31. package/dist/client/ai.js.map +1 -1
  32. package/dist/client/code-shift.d.ts +30 -0
  33. package/dist/client/code-shift.d.ts.map +1 -1
  34. package/dist/client/code-shift.js +37 -1
  35. package/dist/client/code-shift.js.map +1 -1
  36. package/dist/client/types.d.ts +26 -6
  37. package/dist/client/types.d.ts.map +1 -1
  38. package/package.json +7 -7
  39. package/readme.md +1 -1
  40. package/scripts/generate-apis.ts +134 -134
  41. package/src/api/account.ts +8368 -8367
  42. package/src/api/agent-tools.ts +2172 -2169
  43. package/src/api/agent.ts +1085 -1083
  44. package/src/api/ai.ts +3388 -3388
  45. package/src/api/apiManagement.ts +570 -570
  46. package/src/api/apiRuntime.ts +2103 -2103
  47. package/src/api/cloudAccount.ts +1239 -1239
  48. package/src/api/cloudPlatform.ts +927 -927
  49. package/src/api/cloudPlatformHorizon.ts +2655 -2655
  50. package/src/api/cloudRuntimes.ts +2043 -2043
  51. package/src/api/cloudServices.ts +1445 -1445
  52. package/src/api/codeShift.ts +3567 -3481
  53. package/src/api/content.ts +9785 -9785
  54. package/src/api/dataIntegration.ts +1657 -1657
  55. package/src/api/discover.ts +435 -435
  56. package/src/api/eventBus.ts +171 -171
  57. package/src/api/genAiInference.ts +603 -603
  58. package/src/api/insights.ts +310 -310
  59. package/src/api/notification.ts +336 -334
  60. package/src/api/secrets.ts +342 -342
  61. package/src/api/serviceCatalog.ts +2908 -2908
  62. package/src/api/workflows.ts +1669 -1669
  63. package/src/api/workspace-ai.ts +677 -677
  64. package/src/api/workspace.ts +5889 -5889
  65. package/src/api/workspaceManager.ts +2951 -2951
  66. package/src/api/workspaceSearchEngine.ts +153 -153
  67. package/src/api-addresses.ts +120 -120
  68. package/src/apis-itau.json +225 -225
  69. package/src/apis.json +225 -225
  70. package/src/client/account.ts +902 -902
  71. package/src/client/agent-tools.ts +210 -210
  72. package/src/client/agent.ts +81 -81
  73. package/src/client/ai.ts +469 -395
  74. package/src/client/api-management.ts +40 -40
  75. package/src/client/cloud-account.ts +70 -70
  76. package/src/client/cloud-platform-horizon.ts +113 -113
  77. package/src/client/cloud-platform.ts +163 -163
  78. package/src/client/cloud-runtimes.ts +129 -129
  79. package/src/client/cloud-services.ts +94 -94
  80. package/src/client/code-shift.ts +371 -349
  81. package/src/client/content.ts +538 -538
  82. package/src/client/data-integration.ts +191 -191
  83. package/src/client/discover.ts +89 -89
  84. package/src/client/event-bus.ts +84 -84
  85. package/src/client/gen-ai-inference.ts +65 -65
  86. package/src/client/insights.ts +28 -28
  87. package/src/client/notification.ts +32 -32
  88. package/src/client/runtime-manager.ts +76 -76
  89. package/src/client/secrets.ts +60 -60
  90. package/src/client/types.ts +398 -377
  91. package/src/client/workflow.ts +83 -83
  92. package/src/client/workspace-ai.ts +191 -191
  93. package/src/client/workspace-manager.ts +564 -564
  94. package/src/client/workspace-search.ts +39 -39
  95. package/src/client/workspace.ts +480 -480
  96. package/src/error/DefaultAPIError.ts +151 -151
  97. package/src/error/FileUploadError.ts +18 -18
  98. package/src/error/IgnoredErrorCodes.ts +3 -3
  99. package/src/error/StackspotAPIError.ts +101 -101
  100. package/src/error/StreamCanceledError.ts +10 -10
  101. package/src/error/StreamError.ts +7 -7
  102. package/src/error/StreamJsonError.ts +10 -10
  103. package/src/error/dictionary/account.ts +58 -58
  104. package/src/error/dictionary/action-details.ts +20 -20
  105. package/src/error/dictionary/action.ts +211 -211
  106. package/src/error/dictionary/agent-tools.ts +75 -75
  107. package/src/error/dictionary/ai-inference.ts +28 -28
  108. package/src/error/dictionary/base.ts +22 -22
  109. package/src/error/dictionary/cloud-platform.ts +82 -82
  110. package/src/error/dictionary/cnt-fields.ts +14 -14
  111. package/src/error/dictionary/cnt.ts +103 -103
  112. package/src/error/dictionary/code-shift.ts +12 -12
  113. package/src/error/dictionary/rte.ts +24 -24
  114. package/src/error/dictionary/rtm.ts +10 -10
  115. package/src/error/dictionary/secrets.ts +14 -14
  116. package/src/error/dictionary/workspace-ai.ts +10 -10
  117. package/src/error/dictionary/workspace-details.ts +15 -15
  118. package/src/error/dictionary/workspace-fields.ts +10 -10
  119. package/src/error/dictionary/workspace.ts +209 -209
  120. package/src/error/types.ts +21 -21
  121. package/src/index.ts +43 -43
  122. package/src/network/AutoInfiniteQuery.ts +115 -115
  123. package/src/network/AutoMutation.ts +27 -27
  124. package/src/network/AutoOperation.ts +73 -73
  125. package/src/network/AutoQuery.ts +75 -75
  126. package/src/network/ManualInfiniteQuery.ts +95 -95
  127. package/src/network/ManualMutation.ts +40 -40
  128. package/src/network/ManualOperation.ts +52 -52
  129. package/src/network/ManualQuery.ts +82 -82
  130. package/src/network/NetworkClient.ts +167 -167
  131. package/src/network/ReactQueryNetworkClient.ts +312 -312
  132. package/src/network/react-query-client.ts +14 -14
  133. package/src/network/types.ts +294 -294
  134. package/src/types.ts +1 -1
  135. package/src/utils/StreamedArray.tsx +146 -146
  136. package/src/utils/StreamedJson.tsx +166 -166
  137. package/src/utils/remove-authorization-param.ts +6 -6
  138. package/src/utils/string.ts +19 -19
  139. package/src/utils/use-extended-list.ts +80 -80
  140. package/src/utils/use-streamed-array.ts +17 -17
  141. package/tsconfig.build.json +4 -4
  142. package/tsconfig.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,2412 +1,2444 @@
1
- # Changelog
2
-
3
- ## [0.184.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.183.0...portal-network@v0.184.0) (2025-10-06)
4
-
5
-
6
- ### Features
7
-
8
- * add new request in worksapce manager ([#1674](https://github.com/stack-spot/portal-commons/issues/1674)) ([05bc8de](https://github.com/stack-spot/portal-commons/commit/05bc8dedb50041a0cdb9be074f4762dd9d6d9cd1))
9
-
10
- ## [0.183.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.182.0...portal-network@v0.183.0) (2025-10-01)
11
-
12
-
13
- ### Features
14
-
15
- * add workspace ai dictionary error file ([#1668](https://github.com/stack-spot/portal-commons/issues/1668)) ([a437ea2](https://github.com/stack-spot/portal-commons/commit/a437ea2d656a300ff4e1dc3e35ba8bf7a689cd49))
16
-
17
- ## [0.182.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.181.0...portal-network@v0.182.0) (2025-10-01)
18
-
19
-
20
- ### Features
21
-
22
- * Add get v3 agents, update swagger agent tools ([#1638](https://github.com/stack-spot/portal-commons/issues/1638)) ([f01b6f1](https://github.com/stack-spot/portal-commons/commit/f01b6f17950bb08331ed9fb289209594f82bbb7f))
23
-
24
- ## [0.181.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.180.1...portal-network@v0.181.0) (2025-09-30)
25
-
26
-
27
- ### Features
28
-
29
- * 2288 association secrets ([#1476](https://github.com/stack-spot/portal-commons/issues/1476)) ([d14e33f](https://github.com/stack-spot/portal-commons/commit/d14e33f590d965ffacdcd997c30cc58d421148d1))
30
- * Add analytics and SCM search endpoints support ([#1537](https://github.com/stack-spot/portal-commons/issues/1537)) ([e7f1389](https://github.com/stack-spot/portal-commons/commit/e7f1389a7c87a5455017f8af6653df79ff5aba2d))
31
- * add analytics methods to code-shift client ([#1319](https://github.com/stack-spot/portal-commons/issues/1319)) ([634c612](https://github.com/stack-spot/portal-commons/commit/634c6129c20640a1ebd99fad767bdec42f1b2a95))
32
- * add discover api (adp) ([#1510](https://github.com/stack-spot/portal-commons/issues/1510)) ([3690ee4](https://github.com/stack-spot/portal-commons/commit/3690ee44653f24e92e503fda2bd31d6b4e6b4e2d))
33
- * added remote quick command endpoints ([#1440](https://github.com/stack-spot/portal-commons/issues/1440)) ([41f1c45](https://github.com/stack-spot/portal-commons/commit/41f1c457cd000509b2c20c2338f4bb9af2c50de7))
34
- * Adds analytics details API ([#1435](https://github.com/stack-spot/portal-commons/issues/1435)) ([da1e3e1](https://github.com/stack-spot/portal-commons/commit/da1e3e1ef391f1d253e1abf4617ab6aee64999d3))
35
- * exposed openapi request ([105155b](https://github.com/stack-spot/portal-commons/commit/105155b211e3ab0d12399c54ea32a40dc7c37405))
36
- * exposed openapi request ([#1606](https://github.com/stack-spot/portal-commons/issues/1606)) ([e917526](https://github.com/stack-spot/portal-commons/commit/e91752611f5254ebb7e25ff1b654a6de45d87bed))
37
- * Favorite agents on agent tools ([#1420](https://github.com/stack-spot/portal-commons/issues/1420)) ([8caeb02](https://github.com/stack-spot/portal-commons/commit/8caeb02e8102c17c56f20198530eb3e463629070))
38
- * Feat 2141 field for QC end step ([#1542](https://github.com/stack-spot/portal-commons/issues/1542)) ([1fac22d](https://github.com/stack-spot/portal-commons/commit/1fac22d4236eb8a014df357622c4ba40348f658c))
39
- * Feat list indexed files ks ([#1521](https://github.com/stack-spot/portal-commons/issues/1521)) ([993ff53](https://github.com/stack-spot/portal-commons/commit/993ff53969ed2a5099ea4d0743fe60e8cedea3ba))
40
- * itau selft hosted ([#1527](https://github.com/stack-spot/portal-commons/issues/1527)) ([38abce7](https://github.com/stack-spot/portal-commons/commit/38abce78fcab84748924544d37aaa71e2149bd98))
41
- * upgrades translation lib ([#1643](https://github.com/stack-spot/portal-commons/issues/1643)) ([05db11f](https://github.com/stack-spot/portal-commons/commit/05db11f399dd2c6e1815e74ee99f8b6c2e6fedef))
42
-
43
-
44
- ### Bug Fixes
45
-
46
- * add error mapping in cloud platform ([#1522](https://github.com/stack-spot/portal-commons/issues/1522)) ([da78360](https://github.com/stack-spot/portal-commons/commit/da78360a42b273dd36465303b7bb77eb463cc849))
47
- * agent tools buildStackSpotError ([#1478](https://github.com/stack-spot/portal-commons/issues/1478)) ([89455ae](https://github.com/stack-spot/portal-commons/commit/89455aeadf2b8b3090a807a755d1a4deaff9e26c))
48
- * Change api call on message for agent toolkit details ([#1479](https://github.com/stack-spot/portal-commons/issues/1479)) ([023e57b](https://github.com/stack-spot/portal-commons/commit/023e57b3389fee9aac60fbde509823183e28ae70))
49
- * create agent ([#1428](https://github.com/stack-spot/portal-commons/issues/1428)) ([d44173d](https://github.com/stack-spot/portal-commons/commit/d44173d9da98d9b3974dd594609b600fdb64aac1))
50
- * endpoints itau ([#1584](https://github.com/stack-spot/portal-commons/issues/1584)) ([c40aecb](https://github.com/stack-spot/portal-commons/commit/c40aecbe724fbaa9a10fa7cfd3073de71ff1af51))
51
- * interface FixedAddResourceToWorkspaceAi ([#1400](https://github.com/stack-spot/portal-commons/issues/1400)) ([ec455de](https://github.com/stack-spot/portal-commons/commit/ec455de188e04d23c3d1c5c98441a7c2ea7d87b6))
52
- * List agents available to be added to other agents ([#1433](https://github.com/stack-spot/portal-commons/issues/1433)) ([2436a7e](https://github.com/stack-spot/portal-commons/commit/2436a7e7060bba950c8e6b91832c66db42482e71))
53
- * tokens limit ([#1519](https://github.com/stack-spot/portal-commons/issues/1519)) ([b7fdd19](https://github.com/stack-spot/portal-commons/commit/b7fdd19b4051b123b33c0ef073c57780b856f29a))
54
- * translation in cloud platform errors ([#1583](https://github.com/stack-spot/portal-commons/issues/1583)) ([3a47adf](https://github.com/stack-spot/portal-commons/commit/3a47adf33b90f21a421a76db80940e59bc07e1fc))
55
- * update agent tools and add getSecretsByIds ([#1458](https://github.com/stack-spot/portal-commons/issues/1458)) ([eee24d0](https://github.com/stack-spot/portal-commons/commit/eee24d0ba9d8b92291156a65beeaf513b476a8db))
56
- * Update code buddy ([#1431](https://github.com/stack-spot/portal-commons/issues/1431)) ([b283553](https://github.com/stack-spot/portal-commons/commit/b2835539279961f16fca56265cdd6f00ff3afc5c))
57
- * update code buddy ([#1494](https://github.com/stack-spot/portal-commons/issues/1494)) ([a21d681](https://github.com/stack-spot/portal-commons/commit/a21d681600e055e9696e68818a626affa85c1850))
58
- * update horizon api ([#1470](https://github.com/stack-spot/portal-commons/issues/1470)) ([9f99d84](https://github.com/stack-spot/portal-commons/commit/9f99d841e2d9ea1ec93d560264e70dc58c4a26cd))
59
- * workspace input ([#1523](https://github.com/stack-spot/portal-commons/issues/1523)) ([5447804](https://github.com/stack-spot/portal-commons/commit/5447804dad162a7e78304c2079721403f3a5c0bb))
60
-
61
- ## [0.180.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.179.0...portal-network@v0.180.0) (2025-09-24)
62
-
63
-
64
- ### Features
65
-
66
- * Add analytics and SCM search endpoints support ([#1537](https://github.com/stack-spot/portal-commons/issues/1537)) ([e7f1389](https://github.com/stack-spot/portal-commons/commit/e7f1389a7c87a5455017f8af6653df79ff5aba2d))
67
-
68
- ## [0.179.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.178.0...portal-network@v0.179.0) (2025-09-23)
69
-
70
-
71
- ### Features
72
-
73
- * exposed openapi request ([#1606](https://github.com/stack-spot/portal-commons/issues/1606)) ([e917526](https://github.com/stack-spot/portal-commons/commit/e91752611f5254ebb7e25ff1b654a6de45d87bed))
74
-
75
- ## [0.178.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.177.3...portal-network@v0.178.0) (2025-09-23)
76
-
77
-
78
- ### Features
79
-
80
- * 2288 association secrets ([#1476](https://github.com/stack-spot/portal-commons/issues/1476)) ([d14e33f](https://github.com/stack-spot/portal-commons/commit/d14e33f590d965ffacdcd997c30cc58d421148d1))
81
- * add analytics methods to code-shift client ([#1319](https://github.com/stack-spot/portal-commons/issues/1319)) ([634c612](https://github.com/stack-spot/portal-commons/commit/634c6129c20640a1ebd99fad767bdec42f1b2a95))
82
- * add discover api (adp) ([#1510](https://github.com/stack-spot/portal-commons/issues/1510)) ([3690ee4](https://github.com/stack-spot/portal-commons/commit/3690ee44653f24e92e503fda2bd31d6b4e6b4e2d))
83
- * added remote quick command endpoints ([#1440](https://github.com/stack-spot/portal-commons/issues/1440)) ([41f1c45](https://github.com/stack-spot/portal-commons/commit/41f1c457cd000509b2c20c2338f4bb9af2c50de7))
84
- * Adds analytics details API ([#1435](https://github.com/stack-spot/portal-commons/issues/1435)) ([da1e3e1](https://github.com/stack-spot/portal-commons/commit/da1e3e1ef391f1d253e1abf4617ab6aee64999d3))
85
- * Favorite agents on agent tools ([#1420](https://github.com/stack-spot/portal-commons/issues/1420)) ([8caeb02](https://github.com/stack-spot/portal-commons/commit/8caeb02e8102c17c56f20198530eb3e463629070))
86
- * Feat 2141 field for QC end step ([#1542](https://github.com/stack-spot/portal-commons/issues/1542)) ([1fac22d](https://github.com/stack-spot/portal-commons/commit/1fac22d4236eb8a014df357622c4ba40348f658c))
87
- * Feat list indexed files ks ([#1521](https://github.com/stack-spot/portal-commons/issues/1521)) ([993ff53](https://github.com/stack-spot/portal-commons/commit/993ff53969ed2a5099ea4d0743fe60e8cedea3ba))
88
- * itau selft hosted ([#1527](https://github.com/stack-spot/portal-commons/issues/1527)) ([38abce7](https://github.com/stack-spot/portal-commons/commit/38abce78fcab84748924544d37aaa71e2149bd98))
89
-
90
-
91
- ### Bug Fixes
92
-
93
- * add error mapping in cloud platform ([#1522](https://github.com/stack-spot/portal-commons/issues/1522)) ([da78360](https://github.com/stack-spot/portal-commons/commit/da78360a42b273dd36465303b7bb77eb463cc849))
94
- * agent tools buildStackSpotError ([#1478](https://github.com/stack-spot/portal-commons/issues/1478)) ([89455ae](https://github.com/stack-spot/portal-commons/commit/89455aeadf2b8b3090a807a755d1a4deaff9e26c))
95
- * Change api call on message for agent toolkit details ([#1479](https://github.com/stack-spot/portal-commons/issues/1479)) ([023e57b](https://github.com/stack-spot/portal-commons/commit/023e57b3389fee9aac60fbde509823183e28ae70))
96
- * create agent ([#1428](https://github.com/stack-spot/portal-commons/issues/1428)) ([d44173d](https://github.com/stack-spot/portal-commons/commit/d44173d9da98d9b3974dd594609b600fdb64aac1))
97
- * endpoints itau ([#1584](https://github.com/stack-spot/portal-commons/issues/1584)) ([c40aecb](https://github.com/stack-spot/portal-commons/commit/c40aecbe724fbaa9a10fa7cfd3073de71ff1af51))
98
- * interface FixedAddResourceToWorkspaceAi ([#1400](https://github.com/stack-spot/portal-commons/issues/1400)) ([ec455de](https://github.com/stack-spot/portal-commons/commit/ec455de188e04d23c3d1c5c98441a7c2ea7d87b6))
99
- * List agents available to be added to other agents ([#1433](https://github.com/stack-spot/portal-commons/issues/1433)) ([2436a7e](https://github.com/stack-spot/portal-commons/commit/2436a7e7060bba950c8e6b91832c66db42482e71))
100
- * tokens limit ([#1519](https://github.com/stack-spot/portal-commons/issues/1519)) ([b7fdd19](https://github.com/stack-spot/portal-commons/commit/b7fdd19b4051b123b33c0ef073c57780b856f29a))
101
- * update agent tools and add getSecretsByIds ([#1458](https://github.com/stack-spot/portal-commons/issues/1458)) ([eee24d0](https://github.com/stack-spot/portal-commons/commit/eee24d0ba9d8b92291156a65beeaf513b476a8db))
102
- * Update code buddy ([#1431](https://github.com/stack-spot/portal-commons/issues/1431)) ([b283553](https://github.com/stack-spot/portal-commons/commit/b2835539279961f16fca56265cdd6f00ff3afc5c))
103
- * update code buddy ([#1494](https://github.com/stack-spot/portal-commons/issues/1494)) ([a21d681](https://github.com/stack-spot/portal-commons/commit/a21d681600e055e9696e68818a626affa85c1850))
104
- * update horizon api ([#1470](https://github.com/stack-spot/portal-commons/issues/1470)) ([9f99d84](https://github.com/stack-spot/portal-commons/commit/9f99d841e2d9ea1ec93d560264e70dc58c4a26cd))
105
- * workspace input ([#1523](https://github.com/stack-spot/portal-commons/issues/1523)) ([5447804](https://github.com/stack-spot/portal-commons/commit/5447804dad162a7e78304c2079721403f3a5c0bb))
106
-
107
- ## [0.177.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.177.1...portal-network@v0.177.2) (2025-09-22)
108
-
109
-
110
- ### Bug Fixes
111
-
112
- * endpoints itau ([#1584](https://github.com/stack-spot/portal-commons/issues/1584)) ([c40aecb](https://github.com/stack-spot/portal-commons/commit/c40aecbe724fbaa9a10fa7cfd3073de71ff1af51))
113
-
114
- ## [0.177.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.177.0...portal-network@v0.177.1) (2025-09-19)
115
-
116
-
117
- ### Features
118
-
119
- * itau selft hosted ([#1527](https://github.com/stack-spot/portal-commons/issues/1527)) ([38abce7](https://github.com/stack-spot/portal-commons/commit/38abce78fcab84748924544d37aaa71e2149bd98))
120
-
121
- ## [0.177.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.176.1...portal-network@v0.177.0) (2025-09-17)
122
-
123
-
124
- ### Features
125
-
126
- * Feat 2141 field for QC end step ([#1542](https://github.com/stack-spot/portal-commons/issues/1542)) ([1fac22d](https://github.com/stack-spot/portal-commons/commit/1fac22d4236eb8a014df357622c4ba40348f658c))
127
-
128
- ## [0.176.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.176.0...portal-network@v0.176.1) (2025-09-16)
129
-
130
-
131
- ### Bug Fixes
132
-
133
- * workspace input ([#1523](https://github.com/stack-spot/portal-commons/issues/1523)) ([5447804](https://github.com/stack-spot/portal-commons/commit/5447804dad162a7e78304c2079721403f3a5c0bb))
134
-
135
- ## [0.176.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.175.1...portal-network@v0.176.0) (2025-09-15)
136
-
137
-
138
- ### Features
139
-
140
- * Feat list indexed files ks ([#1521](https://github.com/stack-spot/portal-commons/issues/1521)) ([993ff53](https://github.com/stack-spot/portal-commons/commit/993ff53969ed2a5099ea4d0743fe60e8cedea3ba))
141
-
142
-
143
- ### Bug Fixes
144
-
145
- * add error mapping in cloud platform ([#1522](https://github.com/stack-spot/portal-commons/issues/1522)) ([da78360](https://github.com/stack-spot/portal-commons/commit/da78360a42b273dd36465303b7bb77eb463cc849))
146
-
147
- ## [0.175.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.175.0...portal-network@v0.175.1) (2025-09-12)
148
-
149
-
150
- ### Bug Fixes
151
-
152
- * tokens limit ([#1519](https://github.com/stack-spot/portal-commons/issues/1519)) ([b7fdd19](https://github.com/stack-spot/portal-commons/commit/b7fdd19b4051b123b33c0ef073c57780b856f29a))
153
-
154
- ## [0.175.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.174.0...portal-network@v0.175.0) (2025-09-04)
155
-
156
-
157
- ### Features
158
-
159
- * Adds analytics details API ([#1435](https://github.com/stack-spot/portal-commons/issues/1435)) ([da1e3e1](https://github.com/stack-spot/portal-commons/commit/da1e3e1ef391f1d253e1abf4617ab6aee64999d3))
160
-
161
- ## [0.174.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.173.1...portal-network@v0.174.0) (2025-09-04)
162
-
163
-
164
- ### Features
165
-
166
- * add discover api (adp) ([#1510](https://github.com/stack-spot/portal-commons/issues/1510)) ([3690ee4](https://github.com/stack-spot/portal-commons/commit/3690ee44653f24e92e503fda2bd31d6b4e6b4e2d))
167
-
168
- ## [0.173.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.173.0...portal-network@v0.173.1) (2025-08-28)
169
-
170
-
171
- ### Bug Fixes
172
-
173
- * agent tools buildStackSpotError ([#1478](https://github.com/stack-spot/portal-commons/issues/1478)) ([89455ae](https://github.com/stack-spot/portal-commons/commit/89455aeadf2b8b3090a807a755d1a4deaff9e26c))
174
- * Change api call on message for agent toolkit details ([#1479](https://github.com/stack-spot/portal-commons/issues/1479)) ([023e57b](https://github.com/stack-spot/portal-commons/commit/023e57b3389fee9aac60fbde509823183e28ae70))
175
- * update code buddy ([#1494](https://github.com/stack-spot/portal-commons/issues/1494)) ([a21d681](https://github.com/stack-spot/portal-commons/commit/a21d681600e055e9696e68818a626affa85c1850))
176
-
177
- ## [0.173.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.172.2...portal-network@v0.173.0) (2025-08-26)
178
-
179
-
180
- ### Features
181
-
182
- * 2288 association secrets ([#1476](https://github.com/stack-spot/portal-commons/issues/1476)) ([d14e33f](https://github.com/stack-spot/portal-commons/commit/d14e33f590d965ffacdcd997c30cc58d421148d1))
183
-
184
- ## [0.172.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.172.1...portal-network@v0.172.2) (2025-08-26)
185
-
186
-
187
- ### Bug Fixes
188
-
189
- * update horizon api ([#1470](https://github.com/stack-spot/portal-commons/issues/1470)) ([9f99d84](https://github.com/stack-spot/portal-commons/commit/9f99d841e2d9ea1ec93d560264e70dc58c4a26cd))
190
-
191
- ## [0.172.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.172.0...portal-network@v0.172.1) (2025-08-25)
192
-
193
-
194
- ### Bug Fixes
195
-
196
- * update agent tools and add getSecretsByIds ([#1458](https://github.com/stack-spot/portal-commons/issues/1458)) ([eee24d0](https://github.com/stack-spot/portal-commons/commit/eee24d0ba9d8b92291156a65beeaf513b476a8db))
197
-
198
- ## [0.172.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.3...portal-network@v0.172.0) (2025-08-21)
199
-
200
-
201
- ### Features
202
-
203
- * added remote quick command endpoints ([#1440](https://github.com/stack-spot/portal-commons/issues/1440)) ([41f1c45](https://github.com/stack-spot/portal-commons/commit/41f1c457cd000509b2c20c2338f4bb9af2c50de7))
204
-
205
- ## [0.171.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.2...portal-network@v0.171.3) (2025-08-20)
206
-
207
-
208
- ### Bug Fixes
209
-
210
- * List agents available to be added to other agents ([#1433](https://github.com/stack-spot/portal-commons/issues/1433)) ([2436a7e](https://github.com/stack-spot/portal-commons/commit/2436a7e7060bba950c8e6b91832c66db42482e71))
211
-
212
- ## [0.171.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.1...portal-network@v0.171.2) (2025-08-19)
213
-
214
-
215
- ### Bug Fixes
216
-
217
- * Update code buddy ([#1431](https://github.com/stack-spot/portal-commons/issues/1431)) ([b283553](https://github.com/stack-spot/portal-commons/commit/b2835539279961f16fca56265cdd6f00ff3afc5c))
218
-
219
- ## [0.171.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.0...portal-network@v0.171.1) (2025-08-19)
220
-
221
-
222
- ### Bug Fixes
223
-
224
- * create agent ([#1428](https://github.com/stack-spot/portal-commons/issues/1428)) ([d44173d](https://github.com/stack-spot/portal-commons/commit/d44173d9da98d9b3974dd594609b600fdb64aac1))
225
-
226
- ## [0.171.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.170.0...portal-network@v0.171.0) (2025-08-18)
227
-
228
-
229
- ### Features
230
-
231
- * add analytics methods to code-shift client ([#1319](https://github.com/stack-spot/portal-commons/issues/1319)) ([634c612](https://github.com/stack-spot/portal-commons/commit/634c6129c20640a1ebd99fad767bdec42f1b2a95))
232
-
233
- ## [0.170.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.169.1...portal-network@v0.170.0) (2025-08-15)
234
-
235
-
236
- ### Features
237
-
238
- * Favorite agents on agent tools ([#1420](https://github.com/stack-spot/portal-commons/issues/1420)) ([8caeb02](https://github.com/stack-spot/portal-commons/commit/8caeb02e8102c17c56f20198530eb3e463629070))
239
-
240
- ## [0.169.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.169.0...portal-network@v0.169.1) (2025-08-14)
241
-
242
-
243
- ### Bug Fixes
244
-
245
- * interface FixedAddResourceToWorkspaceAi ([#1400](https://github.com/stack-spot/portal-commons/issues/1400)) ([ec455de](https://github.com/stack-spot/portal-commons/commit/ec455de188e04d23c3d1c5c98441a7c2ea7d87b6))
246
-
247
- ## [0.169.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.168.0...portal-network@v0.169.0) (2025-08-13)
248
-
249
-
250
- ### Features
251
-
252
- * Change knowledge_source_config from knowledge_sources_config ([#1361](https://github.com/stack-spot/portal-commons/issues/1361)) ([0f52ff42eebe8b](https://github.com/stack-spot/portal-commons/pull/52ff42e51822f483ac4785320f49952a6081d64f))
253
-
254
- * Upd account api ([#1373](https://github.com/stack-spot/portal-commons/issues/1373)) ([0febe8b](https://github.com/stack-spot/portal-commons/pull/0febe8bbde9d36c4a68300c16b641dc0ad70918b))
255
-
256
-
257
- ## [0.168.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.167.2...portal-network@v0.168.0) (2025-08-07)
258
-
259
-
260
- ### Features
261
-
262
- * Upd agent tools api ([#1357](https://github.com/stack-spot/portal-commons/issues/1357)) ([572c68f](https://github.com/stack-spot/portal-commons/commit/572c68faaaea9ed78ca361a8864477c4d29adc95))
263
-
264
- ## [0.167.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.167.1...portal-network@v0.167.2) (2025-08-07)
265
-
266
-
267
- ### Bug Fixes
268
-
269
- * Fix enum workspace ai ([#1355](https://github.com/stack-spot/portal-commons/issues/1355)) ([4a485be](https://github.com/stack-spot/portal-commons/commit/4a485be42b222364330453bcbaab1c27983b4d93))
270
-
271
- ## [0.167.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.167.0...portal-network@v0.167.1) (2025-08-07)
272
-
273
-
274
- ### Bug Fixes
275
-
276
- * update horizon swagger ([#1352](https://github.com/stack-spot/portal-commons/issues/1352)) ([e6368f2](https://github.com/stack-spot/portal-commons/commit/e6368f2d1790de07d1b1b5b342aecd869fb067c6))
277
-
278
- ## [0.167.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.166.0...portal-network@v0.167.0) (2025-08-05)
279
-
280
-
281
- ### Features
282
-
283
- * add new requests in cloud horizon ([#1337](https://github.com/stack-spot/portal-commons/issues/1337)) ([9e5fb25](https://github.com/stack-spot/portal-commons/commit/9e5fb2543b1be6b2a44bebb5f0b6eab0bb57f890))
284
-
285
- ## [0.166.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.165.2...portal-network@v0.166.0) (2025-08-04)
286
-
287
-
288
- ### Features
289
-
290
- * Feat migration api agent ([#1322](https://github.com/stack-spot/portal-commons/issues/1322)) ([f72d5a0](https://github.com/stack-spot/portal-commons/commit/f72d5a0726f8785a0586f44406b237734e86c9d6))
291
-
292
- ## [0.165.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.165.1...portal-network@v0.165.2) (2025-08-04)
293
-
294
-
295
- ### Bug Fixes
296
-
297
- * ai error message ([#1323](https://github.com/stack-spot/portal-commons/issues/1323)) ([6c46066](https://github.com/stack-spot/portal-commons/commit/6c46066d1f37a2c65bd227453ef45d8e7bdc09dc))
298
-
299
- ## [0.165.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.165.0...portal-network@v0.165.1) (2025-07-30)
300
-
301
-
302
- ### Bug Fixes
303
-
304
- * Update swagger ([#1308](https://github.com/stack-spot/portal-commons/issues/1308)) ([0deae63](https://github.com/stack-spot/portal-commons/commit/0deae632864fc9485d81bb574eac14b8f625dbf5))
305
-
306
- ## [0.165.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.164.0...portal-network@v0.165.0) (2025-07-30)
307
-
308
-
309
- ### Features
310
-
311
- * visibility filter to retrieve recently used agents ([da72243](https://github.com/stack-spot/portal-commons/commit/da72243f22b3c5dcbdc4dab73a10355e2fe59589))
312
- * visibility filter to retrieve recently used agents ([#1306](https://github.com/stack-spot/portal-commons/issues/1306)) ([32ffc84](https://github.com/stack-spot/portal-commons/commit/32ffc84131164d0e7c4f2d15280be1cdab924dd6))
313
-
314
- ## [0.164.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.163.0...portal-network@v0.164.0) (2025-07-28)
315
-
316
-
317
- ### Features
318
-
319
- * change default agent to stackspot flex ([#1298](https://github.com/stack-spot/portal-commons/issues/1298)) ([7ae7a42](https://github.com/stack-spot/portal-commons/commit/7ae7a42dea47727fef84a1c015a9f276e341eca6))
320
-
321
- ## [0.163.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.3...portal-network@v0.163.0) (2025-07-28)
322
-
323
-
324
- ### Features
325
-
326
- * Refactors API types and adds workflow input query ([#1296](https://github.com/stack-spot/portal-commons/issues/1296)) ([046e102](https://github.com/stack-spot/portal-commons/commit/046e1021a1d5722beacd6a57d2e3a9b6fa037659))
327
-
328
- ## [0.162.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.2...portal-network@v0.162.3) (2025-07-24)
329
-
330
-
331
- ### Bug Fixes
332
-
333
- * sendAgentMessage ([#1287](https://github.com/stack-spot/portal-commons/issues/1287)) ([0d4f1da](https://github.com/stack-spot/portal-commons/commit/0d4f1da6ed04ea5fb6b3ffabf518f9320b95218b))
334
-
335
- ## [0.162.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.1...portal-network@v0.162.2) (2025-07-24)
336
-
337
-
338
- ### Bug Fixes
339
-
340
- * add sendAgentMessage ([#1285](https://github.com/stack-spot/portal-commons/issues/1285)) ([dc412d5](https://github.com/stack-spot/portal-commons/commit/dc412d55b701285c93a19f708639028a60e48b67))
341
-
342
- ## [0.162.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.0...portal-network@v0.162.1) (2025-07-24)
343
-
344
-
345
- ### Bug Fixes
346
-
347
- * ensure getting correct agent default ([#1282](https://github.com/stack-spot/portal-commons/issues/1282)) ([c35495c](https://github.com/stack-spot/portal-commons/commit/c35495c72023064777aec25a8913e00100b877e1))
348
-
349
- ## [0.162.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.161.0...portal-network@v0.162.0) (2025-07-23)
350
-
351
-
352
- ### Features
353
-
354
- * Adds support for suggested error messages in API response ([#1201](https://github.com/stack-spot/portal-commons/issues/1201)) ([9f99742](https://github.com/stack-spot/portal-commons/commit/9f99742c6dfe1b5d554ba4bbcf901e27aa8d5b05))
355
-
356
- ## [0.161.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.160.1...portal-network@v0.161.0) (2025-07-22)
357
-
358
-
359
- ### Features
360
-
361
- * implement support for overriding the API config file for local testing ([#1251](https://github.com/stack-spot/portal-commons/issues/1251)) ([14b86fd](https://github.com/stack-spot/portal-commons/commit/14b86fd5f44fd2fe965d1190fd57ecb73137c8a5))
362
- * improve API typing based on static JSON ([b87ad41](https://github.com/stack-spot/portal-commons/commit/b87ad41b8384397fd0724184a56aa0ca4a167d89))
363
-
364
- ## [0.160.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.160.0...portal-network@v0.160.1) (2025-07-21)
365
-
366
-
367
- ### Bug Fixes
368
-
369
- * agent tools ([#1207](https://github.com/stack-spot/portal-commons/issues/1207)) ([2ebb9b5](https://github.com/stack-spot/portal-commons/commit/2ebb9b5b7c3c228cc29c288cd79b1efd4be04f89))
370
-
371
- ## [0.160.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.159.0...portal-network@v0.160.0) (2025-07-21)
372
-
373
-
374
- ### Features
375
-
376
- * Upd version network ([#1266](https://github.com/stack-spot/portal-commons/issues/1266)) ([95d9b8c](https://github.com/stack-spot/portal-commons/commit/95d9b8c358d3cad4166658e974fef88be0ec503a))
377
-
378
- ## [0.159.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.158.0...portal-network@v0.159.0) (2025-07-18)
379
-
380
-
381
- ### Features
382
-
383
- * Feat magic link for fido ([#1243](https://github.com/stack-spot/portal-commons/issues/1243)) ([01db6fc](https://github.com/stack-spot/portal-commons/commit/01db6fc16112e5d5718819f1bcb149442db98982))
384
-
385
- ## [0.158.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.157.0...portal-network@v0.158.0) (2025-07-17)
386
-
387
-
388
- ### Features
389
-
390
- * workflow extensions ([#1234](https://github.com/stack-spot/portal-commons/issues/1234)) ([3b320ab](https://github.com/stack-spot/portal-commons/commit/3b320ab7ecff15c3af48625d1ba22396b36dcffc))
391
-
392
- ## [0.157.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.156.2...portal-network@v0.157.0) (2025-07-16)
393
-
394
-
395
- ### Features
396
-
397
- * add query in workspace manager ([#1232](https://github.com/stack-spot/portal-commons/issues/1232)) ([17c617f](https://github.com/stack-spot/portal-commons/commit/17c617fbde32035f4d2ed677ebcec55b1463a3d2))
398
-
399
- ## [0.156.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.156.1...portal-network@v0.156.2) (2025-07-15)
400
-
401
-
402
- ### Bug Fixes
403
-
404
- * update discover prd url ([#1218](https://github.com/stack-spot/portal-commons/issues/1218)) ([7b67606](https://github.com/stack-spot/portal-commons/commit/7b6760621ccbce2040387128d210c3a6ad7a36da))
405
-
406
- ## [0.156.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.156.0...portal-network@v0.156.1) (2025-07-15)
407
-
408
-
409
- ### Bug Fixes
410
-
411
- * changes in discover api ([#1215](https://github.com/stack-spot/portal-commons/issues/1215)) ([cb95a55](https://github.com/stack-spot/portal-commons/commit/cb95a550824854e268cce2b2a7e8adaf1b360e83))
412
-
413
- ## [0.156.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.155.0...portal-network@v0.156.0) (2025-07-11)
414
-
415
-
416
- ### Features
417
-
418
- * 1530 refactor ks ([#1187](https://github.com/stack-spot/portal-commons/issues/1187)) ([b133ec8](https://github.com/stack-spot/portal-commons/commit/b133ec8a047623adf4db9d839017a551fae80029))
419
-
420
- ## [0.155.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.154.1...portal-network@v0.155.0) (2025-07-10)
421
-
422
-
423
- ### Features
424
-
425
- * Add calculate condition ([#1170](https://github.com/stack-spot/portal-commons/issues/1170)) ([9a4557f](https://github.com/stack-spot/portal-commons/commit/9a4557f1a5d810649f6222c5181cd8c1e53c3d54))
426
-
427
- ## [0.154.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.154.0...portal-network@v0.154.1) (2025-07-10)
428
-
429
-
430
- ### Bug Fixes
431
-
432
- * Improve naming ([#1188](https://github.com/stack-spot/portal-commons/issues/1188)) ([5beeb04](https://github.com/stack-spot/portal-commons/commit/5beeb040a4adc22ba38c1dfeaf866105e4236b9d))
433
-
434
- ## [0.154.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.153.0...portal-network@v0.154.0) (2025-07-10)
435
-
436
-
437
- ### Features
438
-
439
- * New account methods ([#1185](https://github.com/stack-spot/portal-commons/issues/1185)) ([2ada8ea](https://github.com/stack-spot/portal-commons/commit/2ada8eaaf1362bb90e43920d58d02be8cede93db))
440
-
441
- ## [0.153.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.152.0...portal-network@v0.153.0) (2025-07-10)
442
-
443
-
444
- ### Features
445
-
446
- * add new requests in data integration api ([#1180](https://github.com/stack-spot/portal-commons/issues/1180)) ([c72662b](https://github.com/stack-spot/portal-commons/commit/c72662bef9f71a6fa166838e669d79987428b026))
447
-
448
- ## [0.152.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.151.0...portal-network@v0.152.0) (2025-07-08)
449
-
450
-
451
- ### Features
452
-
453
- * add new requests in workspace ai ([#1177](https://github.com/stack-spot/portal-commons/issues/1177)) ([02a1c3b](https://github.com/stack-spot/portal-commons/commit/02a1c3bec4dbbe012a558159dcc6df8137396ba9))
454
-
455
- ## [0.151.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.150.2...portal-network@v0.151.0) (2025-07-07)
456
-
457
-
458
- ### Features
459
-
460
- * toolkit fork ([#1171](https://github.com/stack-spot/portal-commons/issues/1171)) ([73b8c4a](https://github.com/stack-spot/portal-commons/commit/73b8c4a382885fb396bc1d05e0c6bce69c1dbff0))
461
-
462
- ## [0.150.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.150.1...portal-network@v0.150.2) (2025-07-03)
463
-
464
-
465
- ### Bug Fixes
466
-
467
- * map cnt workflow errors ([#1165](https://github.com/stack-spot/portal-commons/issues/1165)) ([4409958](https://github.com/stack-spot/portal-commons/commit/4409958fbc4e7448a128f61ccdb9dcc8fc274c30))
468
-
469
- ## [0.150.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.150.0...portal-network@v0.150.1) (2025-07-03)
470
-
471
-
472
- ### Features
473
-
474
- * add workflow error message ([#1150](https://github.com/stack-spot/portal-commons/issues/1150)) ([f6e71f8](https://github.com/stack-spot/portal-commons/commit/f6e71f825a6d97c9ef42673d1589d99cb49d2426))
475
-
476
- ## [0.150.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.149.0...portal-network@v0.150.0) (2025-07-02)
477
-
478
-
479
- ### Features
480
-
481
- * more agent tools requests ([#1124](https://github.com/stack-spot/portal-commons/issues/1124)) ([1a0943d](https://github.com/stack-spot/portal-commons/commit/1a0943d192dc6b34fc67600e8d182f55fc739f0f))
482
-
483
- ## [0.149.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.148.0...portal-network@v0.149.0) (2025-07-02)
484
-
485
-
486
- ### Features
487
-
488
- * add query history discover ([#1122](https://github.com/stack-spot/portal-commons/issues/1122)) ([6edda56](https://github.com/stack-spot/portal-commons/commit/6edda56d1a2c3591acc341b29661c7ec587baa49))
489
-
490
- ## [0.148.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.147.0...portal-network@v0.148.0) (2025-07-01)
491
-
492
-
493
- ### Features
494
-
495
- * Add filters ([#1120](https://github.com/stack-spot/portal-commons/issues/1120)) ([67199a2](https://github.com/stack-spot/portal-commons/commit/67199a2ef5aff48c70fef19db749d737648bc614))
496
-
497
- ## [0.147.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.146.2...portal-network@v0.147.0) (2025-06-30)
498
-
499
-
500
- ### Features
501
-
502
- * 2464 agent tools ([#1118](https://github.com/stack-spot/portal-commons/issues/1118)) ([6e9ebb7](https://github.com/stack-spot/portal-commons/commit/6e9ebb7729d4173e2f97cbd98129cf55fae266a2))
503
-
504
- ## [0.146.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.146.1...portal-network@v0.146.2) (2025-06-26)
505
-
506
-
507
- ### Bug Fixes
508
-
509
- * update code error message ([#1116](https://github.com/stack-spot/portal-commons/issues/1116)) ([3f07955](https://github.com/stack-spot/portal-commons/commit/3f079559ea9a4fac5f58f441e64acc81137e64bb))
510
-
511
- ## [0.146.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.146.0...portal-network@v0.146.1) (2025-06-26)
512
-
513
-
514
- ### Bug Fixes
515
-
516
- * add new code errors in cloud platform api ([#1112](https://github.com/stack-spot/portal-commons/issues/1112)) ([93fae98](https://github.com/stack-spot/portal-commons/commit/93fae98b3c2abcc1b9fbce37c203be4a1f90ec9e))
517
-
518
- ## [0.146.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.145.1...portal-network@v0.146.0) (2025-06-25)
519
-
520
-
521
- ### Features
522
-
523
- * 2720 badge official ([#1110](https://github.com/stack-spot/portal-commons/issues/1110)) ([a025848](https://github.com/stack-spot/portal-commons/commit/a025848b1bda06215b970288ee55337138f222f0))
524
-
525
- ## [0.145.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.145.0...portal-network@v0.145.1) (2025-06-24)
526
-
527
-
528
- ### Bug Fixes
529
-
530
- * update cloud platform ([#1108](https://github.com/stack-spot/portal-commons/issues/1108)) ([e4ced3c](https://github.com/stack-spot/portal-commons/commit/e4ced3c796170ea9a307fa6ede6d312885fd39bd))
531
-
532
- ## [0.145.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.144.0...portal-network@v0.145.0) (2025-06-24)
533
-
534
-
535
- ### Features
536
-
537
- * add scf dictionary ([#1106](https://github.com/stack-spot/portal-commons/issues/1106)) ([8c7e6cd](https://github.com/stack-spot/portal-commons/commit/8c7e6cd4e060b3c054cfda745ba2e07eade2f8c6))
538
-
539
- ## [0.144.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.4...portal-network@v0.144.0) (2025-06-24)
540
-
541
-
542
- ### Features
543
-
544
- * lib add custom workflow version ([1b1780a](https://github.com/stack-spot/portal-commons/commit/1b1780a2f5ffe20aa388bb56f8d578a2a0e9989a))
545
-
546
- ## [0.143.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.3...portal-network@v0.143.4) (2025-06-20)
547
-
548
-
549
- ### Bug Fixes
550
-
551
- * 1368 mandate import type ([#1101](https://github.com/stack-spot/portal-commons/issues/1101)) ([0c244b5](https://github.com/stack-spot/portal-commons/commit/0c244b5f1ada94eb4b8f5c785c0f4b9da8a2a39f))
552
-
553
- ## [0.143.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.2...portal-network@v0.143.3) (2025-06-18)
554
-
555
-
556
- ### Bug Fixes
557
-
558
- * QC fetch type ([#1099](https://github.com/stack-spot/portal-commons/issues/1099)) ([42e6880](https://github.com/stack-spot/portal-commons/commit/42e68802f173d64cd0d20e3ebceaf679707db945))
559
-
560
- ## [0.143.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.1...portal-network@v0.143.2) (2025-06-18)
561
-
562
-
563
- ### Bug Fixes
564
-
565
- * Adds support for tags and improves API flexibility ([#1097](https://github.com/stack-spot/portal-commons/issues/1097)) ([73f799d](https://github.com/stack-spot/portal-commons/commit/73f799d1e7d97e6d37d4b450dcdebecc18adaac2))
566
-
567
- ## [0.143.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.0...portal-network@v0.143.1) (2025-06-17)
568
-
569
-
570
- ### Bug Fixes
571
-
572
- * Change fetch_result qc to manual ([#1092](https://github.com/stack-spot/portal-commons/issues/1092)) ([adb09fd](https://github.com/stack-spot/portal-commons/commit/adb09fdc6d9488ba7da450e199ef495c8a54ef3f))
573
-
574
- ## [0.143.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.142.1...portal-network@v0.143.0) (2025-06-17)
575
-
576
-
577
- ### Features
578
-
579
- * Update Code buddy swagger ([#1088](https://github.com/stack-spot/portal-commons/issues/1088)) ([f594a8f](https://github.com/stack-spot/portal-commons/commit/f594a8f56af4a437df83a0ef8ed860d91881ceb4))
580
-
581
- ## [0.142.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.142.0...portal-network@v0.142.1) (2025-06-16)
582
-
583
-
584
- ### Bug Fixes
585
-
586
- * Adds support for module type and updates request properties ([#1076](https://github.com/stack-spot/portal-commons/issues/1076)) ([26e2e52](https://github.com/stack-spot/portal-commons/commit/26e2e5241f0db75d02970e484be505ee27c430b3))
587
-
588
- ## [0.142.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.141.1...portal-network@v0.142.0) (2025-06-12)
589
-
590
-
591
- ### Features
592
-
593
- * add new endpoint to save knowledge objects ([#1082](https://github.com/stack-spot/portal-commons/issues/1082)) ([59610ef](https://github.com/stack-spot/portal-commons/commit/59610efb043195e57a86ea22bb493a0dc973164e))
594
- * Update inference and add read file ([#1083](https://github.com/stack-spot/portal-commons/issues/1083)) ([c4233b7](https://github.com/stack-spot/portal-commons/commit/c4233b766bb057bb72b94417d9c94b3fff18c099))
595
-
596
- ## [0.141.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.141.0...portal-network@v0.141.1) (2025-06-12)
597
-
598
-
599
- ### Bug Fixes
600
-
601
- * save ks splitted method ([#1077](https://github.com/stack-spot/portal-commons/issues/1077)) ([d32c70e](https://github.com/stack-spot/portal-commons/commit/d32c70e6790a56ff2236dd40feaa6f2e5dc4f40d))
602
-
603
- ## [0.141.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.140.0...portal-network@v0.141.0) (2025-06-11)
604
-
605
-
606
- ### Features
607
-
608
- * 2321 feature flag ([#1070](https://github.com/stack-spot/portal-commons/issues/1070)) ([7579759](https://github.com/stack-spot/portal-commons/commit/7579759b764440539d1471d7e5638b806bbf9ec2))
609
- * 987 audience ([#1073](https://github.com/stack-spot/portal-commons/issues/1073)) ([87fc6e6](https://github.com/stack-spot/portal-commons/commit/87fc6e64fd4c20c8535442cbdc281f21f4ba7b24))
610
- * program group support to network client ([#1068](https://github.com/stack-spot/portal-commons/issues/1068)) ([5faf994](https://github.com/stack-spot/portal-commons/commit/5faf994fa8a6b2e8fc06030f60a80386e19dd7bc))
611
-
612
- ## [0.140.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.139.0...portal-network@v0.140.0) (2025-06-11)
613
-
614
-
615
- ### Features
616
-
617
- * add new queries discover ([#1069](https://github.com/stack-spot/portal-commons/issues/1069)) ([7ad0b01](https://github.com/stack-spot/portal-commons/commit/7ad0b019043eaf15958c5077cf1d953af418e363))
618
-
619
- ## [0.139.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.138.1...portal-network@v0.139.0) (2025-06-10)
620
-
621
-
622
- ### Features
623
-
624
- * file upload in data-integration ([#1065](https://github.com/stack-spot/portal-commons/issues/1065)) ([3af5f31](https://github.com/stack-spot/portal-commons/commit/3af5f314bbbf4bcbd2a22447fd19284dd8b114d4))
625
-
626
- ## [0.138.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.138.0...portal-network@v0.138.1) (2025-06-10)
627
-
628
-
629
- ### Bug Fixes
630
-
631
- * update payload horizon ([#1063](https://github.com/stack-spot/portal-commons/issues/1063)) ([b5a7583](https://github.com/stack-spot/portal-commons/commit/b5a7583e59430aaf144201c7d87b306a4956690c))
632
-
633
- ## [0.138.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.137.0...portal-network@v0.138.0) (2025-06-10)
634
-
635
-
636
- ### Features
637
-
638
- * lib network external link service ([#1061](https://github.com/stack-spot/portal-commons/issues/1061)) ([b397698](https://github.com/stack-spot/portal-commons/commit/b397698120ff566aff846192ca876e5985728542))
639
-
640
- ## [0.137.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.5...portal-network@v0.137.0) (2025-06-09)
641
-
642
-
643
- ### Features
644
-
645
- * code shift integrations ([#1059](https://github.com/stack-spot/portal-commons/issues/1059)) ([403349d](https://github.com/stack-spot/portal-commons/commit/403349d741372ee6e5912ed70511e140e386e2cc))
646
-
647
- ## [0.136.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.4...portal-network@v0.136.5) (2025-06-06)
648
-
649
-
650
- ### Bug Fixes
651
-
652
- * map code shift errors ([#1056](https://github.com/stack-spot/portal-commons/issues/1056)) ([bc1b4ba](https://github.com/stack-spot/portal-commons/commit/bc1b4ba721335ceb636fd1eea4e092e643e24bc5))
653
-
654
- ## [0.136.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.3...portal-network@v0.136.4) (2025-06-05)
655
-
656
-
657
- ### Bug Fixes
658
-
659
- * update swagger discover ([#1054](https://github.com/stack-spot/portal-commons/issues/1054)) ([7dc3f72](https://github.com/stack-spot/portal-commons/commit/7dc3f7277593d745bb30668ecc85c61b76d027aa))
660
-
661
- ## [0.136.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.2...portal-network@v0.136.3) (2025-06-05)
662
-
663
-
664
- ### Bug Fixes
665
-
666
- * prd url in discover api ([#1051](https://github.com/stack-spot/portal-commons/issues/1051)) ([10cb9cc](https://github.com/stack-spot/portal-commons/commit/10cb9cca58918cc6519aabc632d5d35684470d7f))
667
- * Update code shift ([#1053](https://github.com/stack-spot/portal-commons/issues/1053)) ([f500e4e](https://github.com/stack-spot/portal-commons/commit/f500e4e5f51cf926a19ee9e2ec76d7adee0f9188))
668
-
669
- ## [0.136.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.1...portal-network@v0.136.2) (2025-06-04)
670
-
671
-
672
- ### Bug Fixes
673
-
674
- * update attach query ([#1048](https://github.com/stack-spot/portal-commons/issues/1048)) ([bf25592](https://github.com/stack-spot/portal-commons/commit/bf255929dc2fa255833f1c4353b20431b4abd84d))
675
-
676
- ## [0.136.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.0...portal-network@v0.136.1) (2025-06-04)
677
-
678
-
679
- ### Bug Fixes
680
-
681
- * Update account ([#1046](https://github.com/stack-spot/portal-commons/issues/1046)) ([02d7dad](https://github.com/stack-spot/portal-commons/commit/02d7dad516cf94595f321e1dde8154fbced469f1))
682
-
683
- ## [0.136.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.135.0...portal-network@v0.136.0) (2025-06-04)
684
-
685
-
686
- ### Features
687
-
688
- * Multi llm ([#1042](https://github.com/stack-spot/portal-commons/issues/1042)) ([8ff4c12](https://github.com/stack-spot/portal-commons/commit/8ff4c1281ec7b7d02f176be61afc6ebe36c6a77e))
689
-
690
- ## [0.135.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.134.1...portal-network@v0.135.0) (2025-06-04)
691
-
692
-
693
- ### Features
694
-
695
- * adds support for retrying workflow executions and fetching attempts ([18e877d](https://github.com/stack-spot/portal-commons/commit/18e877d8c94e346520f6e7021738baf6feabf030))
696
-
697
- ## [0.134.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.134.0...portal-network@v0.134.1) (2025-06-03)
698
-
699
-
700
- ### Bug Fixes
701
-
702
- * update cloud horizon types ([#1039](https://github.com/stack-spot/portal-commons/issues/1039)) ([c27964f](https://github.com/stack-spot/portal-commons/commit/c27964f5c1b6ed84f83aa954ac92bbc42deec505))
703
-
704
- ## [0.134.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.3...portal-network@v0.134.0) (2025-06-02)
705
-
706
-
707
- ### Features
708
-
709
- * 2685 mao ([#1036](https://github.com/stack-spot/portal-commons/issues/1036)) ([ccac734](https://github.com/stack-spot/portal-commons/commit/ccac734885cd86ba55c5021bec1b6a4376de454b))
710
-
711
- ## [0.133.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.2...portal-network@v0.133.3) (2025-05-30)
712
-
713
-
714
- ### Bug Fixes
715
-
716
- * correction request method ([0d9a066](https://github.com/stack-spot/portal-commons/commit/0d9a0663efca4da5720c16eed8ae66de10ea4831))
717
- * correction request method ([#1034](https://github.com/stack-spot/portal-commons/issues/1034)) ([57ef44f](https://github.com/stack-spot/portal-commons/commit/57ef44fc95f9687807f2e13d76ac9634913bb3dd))
718
-
719
- ## [0.133.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.1...portal-network@v0.133.2) (2025-05-30)
720
-
721
-
722
- ### Bug Fixes
723
-
724
- * features flag method ([#1031](https://github.com/stack-spot/portal-commons/issues/1031)) ([2e03653](https://github.com/stack-spot/portal-commons/commit/2e03653a00792041e67e94cd609e8cc73aa52ff0))
725
-
726
- ## [0.133.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.0...portal-network@v0.133.1) (2025-05-29)
727
-
728
-
729
- ### Bug Fixes
730
-
731
- * correction name and url of super ([#1029](https://github.com/stack-spot/portal-commons/issues/1029)) ([ba0fbf3](https://github.com/stack-spot/portal-commons/commit/ba0fbf3cfe3b5020dbbb9faf4f19c8faa09f892f))
732
-
733
- ## [0.133.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.132.0...portal-network@v0.133.0) (2025-05-29)
734
-
735
-
736
- ### Features
737
-
738
- * 2667 freemium ([#1027](https://github.com/stack-spot/portal-commons/issues/1027)) ([a6596b6](https://github.com/stack-spot/portal-commons/commit/a6596b6322239bb98933665e10f331e73ab89644))
739
-
740
- ## [0.132.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.131.0...portal-network@v0.132.0) (2025-05-29)
741
-
742
-
743
- ### Features
744
-
745
- * add create document query ([#1025](https://github.com/stack-spot/portal-commons/issues/1025)) ([1b670bf](https://github.com/stack-spot/portal-commons/commit/1b670bf7febd1c10e7780ae0b97f8bbbf128067e))
746
-
747
- ## [0.131.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.130.0...portal-network@v0.131.0) (2025-05-28)
748
-
749
-
750
- ### Features
751
-
752
- * add hypotheses integration ([#1023](https://github.com/stack-spot/portal-commons/issues/1023)) ([ec5b00a](https://github.com/stack-spot/portal-commons/commit/ec5b00a32746b4d23f8c81b6e04eeeb72a8c8eae))
753
-
754
- ## [0.130.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.129.0...portal-network@v0.130.0) (2025-05-27)
755
-
756
-
757
- ### Features
758
-
759
- * 1376 import context in account ([#1020](https://github.com/stack-spot/portal-commons/issues/1020)) ([1c0aa38](https://github.com/stack-spot/portal-commons/commit/1c0aa388d4ea1283729baaec2b2ed2709432a855))
760
-
761
- ## [0.129.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.128.1...portal-network@v0.129.0) (2025-05-27)
762
-
763
-
764
- ### Features
765
-
766
- * 1366 Update client of workspace for import context ([#1018](https://github.com/stack-spot/portal-commons/issues/1018)) ([cb0f59f](https://github.com/stack-spot/portal-commons/commit/cb0f59f80b88819c7d01f0218b6fe1672221846c))
767
-
768
- ## [0.128.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.128.0...portal-network@v0.128.1) (2025-05-23)
769
-
770
-
771
- ### Bug Fixes
772
-
773
- * Support stream qc ([#1016](https://github.com/stack-spot/portal-commons/issues/1016)) ([958203e](https://github.com/stack-spot/portal-commons/commit/958203e7607085cae79a5a974e2b49eaaff84dc3))
774
-
775
- ## [0.128.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.127.1...portal-network@v0.128.0) (2025-05-23)
776
-
777
-
778
- ### Features
779
-
780
- * add new request cloud horizon ([#1014](https://github.com/stack-spot/portal-commons/issues/1014)) ([c70bea8](https://github.com/stack-spot/portal-commons/commit/c70bea888b3bd6fde312fb31e1943d6e3ac851a1))
781
-
782
- ## [0.127.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.127.0...portal-network@v0.127.1) (2025-05-22)
783
-
784
-
785
- ### Bug Fixes
786
-
787
- * accessibility error and add update agent ([#1009](https://github.com/stack-spot/portal-commons/issues/1009)) ([1155a59](https://github.com/stack-spot/portal-commons/commit/1155a59d4a155098a303d7f58ac5e19acac90e5c))
788
-
789
- ## [0.127.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.126.0...portal-network@v0.127.0) (2025-05-22)
790
-
791
-
792
- ### Features
793
-
794
- * Upd Workspace AI ([#1005](https://github.com/stack-spot/portal-commons/issues/1005)) ([d23713f](https://github.com/stack-spot/portal-commons/commit/d23713fd61ec576a0917fa801af79691d28daa8b))
795
-
796
- ## [0.126.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.125.0...portal-network@v0.126.0) (2025-05-21)
797
-
798
-
799
- ### Features
800
-
801
- * Expose update QC ([#1003](https://github.com/stack-spot/portal-commons/issues/1003)) ([3423298](https://github.com/stack-spot/portal-commons/commit/3423298eab947b30e58715b9c31c73b837462369))
802
-
803
- ## [0.125.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.124.1...portal-network@v0.125.0) (2025-05-16)
804
-
805
-
806
- ### Features
807
-
808
- * add api management ([#999](https://github.com/stack-spot/portal-commons/issues/999)) ([ea62a0f](https://github.com/stack-spot/portal-commons/commit/ea62a0fec29a9a37ab833e5f54b8e3a843062a78))
809
-
810
- ## [0.124.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.124.0...portal-network@v0.124.1) (2025-05-15)
811
-
812
-
813
- ### Bug Fixes
814
-
815
- * update workspace ai client ([#1000](https://github.com/stack-spot/portal-commons/issues/1000)) ([1fd07a9](https://github.com/stack-spot/portal-commons/commit/1fd07a9fa1d4b517a462f8ed01edbb1cd4980d0c))
816
-
817
- ## [0.124.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.123.2...portal-network@v0.124.0) (2025-05-12)
818
-
819
-
820
- ### Features
821
-
822
- * add query to get allAgents, agentById and agentDefault ([#947](https://github.com/stack-spot/portal-commons/issues/947)) ([6e5cda5](https://github.com/stack-spot/portal-commons/commit/6e5cda52a8c1e67493bd071e25fe2e2afc8953c4))
823
-
824
- ## [0.123.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.123.1...portal-network@v0.123.2) (2025-05-08)
825
-
826
-
827
- ### Bug Fixes
828
-
829
- * update cloud platform swagger ([#992](https://github.com/stack-spot/portal-commons/issues/992)) ([5bc20e6](https://github.com/stack-spot/portal-commons/commit/5bc20e6cc3c977a2980572864987effdabf4d0bf))
830
-
831
- ## [0.123.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.123.0...portal-network@v0.123.1) (2025-05-07)
832
-
833
-
834
- ### Bug Fixes
835
-
836
- * scm list ([6a18301](https://github.com/stack-spot/portal-commons/commit/6a183017dd74936972b9bf65c53e68fa1373b283))
837
-
838
- ## [0.123.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.122.1...portal-network@v0.123.0) (2025-05-07)
839
-
840
-
841
- ### Features
842
-
843
- * notification audience ([5b6636e](https://github.com/stack-spot/portal-commons/commit/5b6636e52488dd32fece6b2b09d5410e16eea5c6))
844
-
845
- ## [0.122.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.122.0...portal-network@v0.122.1) (2025-05-07)
846
-
847
-
848
- ### Bug Fixes
849
-
850
- * add news endpoint in content client ([#985](https://github.com/stack-spot/portal-commons/issues/985)) ([e1ae1ab](https://github.com/stack-spot/portal-commons/commit/e1ae1abe7ba081c05e3c549a26f831e60f8b9cff))
851
-
852
- ## [0.122.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.121.1...portal-network@v0.122.0) (2025-05-05)
853
-
854
-
855
- ### Features
856
-
857
- * Feat 1376 workflow context requests ([#980](https://github.com/stack-spot/portal-commons/issues/980)) ([3470b83](https://github.com/stack-spot/portal-commons/commit/3470b83017b7ae33ff5aba1a74946d7c767c33e3))
858
-
859
- ## [0.121.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.121.0...portal-network@v0.121.1) (2025-04-30)
860
-
861
-
862
- ### Bug Fixes
863
-
864
- * update insights ([#978](https://github.com/stack-spot/portal-commons/issues/978)) ([e0a0f5b](https://github.com/stack-spot/portal-commons/commit/e0a0f5b3b089741ac7c50feaa061232a9192285c))
865
-
866
- ## [0.121.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.120.0...portal-network@v0.121.0) (2025-04-30)
867
-
868
-
869
- ### Features
870
-
871
- * campaign code services ([#975](https://github.com/stack-spot/portal-commons/issues/975)) ([07f29ce](https://github.com/stack-spot/portal-commons/commit/07f29ceb05f65b2f8525bf6dcc4d21d373e71e25))
872
-
873
- ## [0.120.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.119.1...portal-network@v0.120.0) (2025-04-30)
874
-
875
-
876
- ### Features
877
-
878
- * Add search repo flow ([#973](https://github.com/stack-spot/portal-commons/issues/973)) ([fe6f0b0](https://github.com/stack-spot/portal-commons/commit/fe6f0b0fb00dfb6f9877ce6efdc5870a1ad6f14c))
879
-
880
- ## [0.119.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.119.0...portal-network@v0.119.1) (2025-04-30)
881
-
882
-
883
- ### Bug Fixes
884
-
885
- * up workspace ai swagger ([#971](https://github.com/stack-spot/portal-commons/issues/971)) ([ab3c4b3](https://github.com/stack-spot/portal-commons/commit/ab3c4b33ae2a00927549b816cee1bed08ec283d3))
886
-
887
- ## [0.119.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.118.1...portal-network@v0.119.0) (2025-04-29)
888
-
889
-
890
- ### Features
891
-
892
- * Add code shift settings endpoints ([#968](https://github.com/stack-spot/portal-commons/issues/968)) ([f03263f](https://github.com/stack-spot/portal-commons/commit/f03263f757d3c42c43c316eb1059e3a7b596f4ec))
893
-
894
-
895
- ### Bug Fixes
896
-
897
- * add endpoint to get workspaces and fix manual query ([#970](https://github.com/stack-spot/portal-commons/issues/970)) ([6a99193](https://github.com/stack-spot/portal-commons/commit/6a99193c33b7507dca4603a665b09a00bc1561cf))
898
-
899
- ## [0.118.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.118.0...portal-network@v0.118.1) (2025-04-29)
900
-
901
-
902
- ### Bug Fixes
903
-
904
- * add endpoint createTrialAgents ([#966](https://github.com/stack-spot/portal-commons/issues/966)) ([023c9e5](https://github.com/stack-spot/portal-commons/commit/023c9e52a064fb20bd5843fdc9f90f62a0c7eb99))
905
-
906
- ## [0.118.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.117.0...portal-network@v0.118.0) (2025-04-28)
907
-
908
-
909
- ### Features
910
-
911
- * 1503 message slug ([#954](https://github.com/stack-spot/portal-commons/issues/954)) ([775c700](https://github.com/stack-spot/portal-commons/commit/775c70072f8750d8ed69a4c136cd402032e38b3d))
912
- * add component form ([fbc608d](https://github.com/stack-spot/portal-commons/commit/fbc608d0b2aaa8f99fc154a6a79141984c93daf3))
913
- * Update code shift client ([#965](https://github.com/stack-spot/portal-commons/issues/965)) ([3ecd1bd](https://github.com/stack-spot/portal-commons/commit/3ecd1bdc78ff229da236f2f7cea3145712bf2cff))
914
-
915
- ## [0.117.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.4...portal-network@v0.117.0) (2025-04-22)
916
-
917
-
918
- ### Features
919
-
920
- * adds new types and updates existing types in the account API ([#933](https://github.com/stack-spot/portal-commons/issues/933)) ([264bcc2](https://github.com/stack-spot/portal-commons/commit/264bcc2d76771d71767d4f9615d42ccadfd85200))
921
-
922
- ## [0.116.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.3...portal-network@v0.116.4) (2025-04-17)
923
-
924
-
925
- ### Bug Fixes
926
-
927
- * Update account ([#942](https://github.com/stack-spot/portal-commons/issues/942)) ([7f019ac](https://github.com/stack-spot/portal-commons/commit/7f019acac3ea6e38631b6dafedcfd21ec9539b62))
928
-
929
- ## [0.116.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.2...portal-network@v0.116.3) (2025-04-16)
930
-
931
-
932
- ### Bug Fixes
933
-
934
- * add correct env of production inference api ([#936](https://github.com/stack-spot/portal-commons/issues/936)) ([cebb66d](https://github.com/stack-spot/portal-commons/commit/cebb66d20c2d5ff87b1878339aad327bc66581e3))
935
-
936
- ## [0.116.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.1...portal-network@v0.116.2) (2025-04-15)
937
-
938
-
939
- ### Bug Fixes
940
-
941
- * update data integration prd url ([7575a72](https://github.com/stack-spot/portal-commons/commit/7575a72197ed1d8711517d14f42d7d503fb7e419))
942
-
943
- ## [0.116.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.0...portal-network@v0.116.1) (2025-04-14)
944
-
945
-
946
- ### Bug Fixes
947
-
948
- * update swagger data integration ([0cfa752](https://github.com/stack-spot/portal-commons/commit/0cfa75226799e60993c1fdab4c1640f31da9b6d2))
949
-
950
- ## [0.116.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.115.0...portal-network@v0.116.0) (2025-04-14)
951
-
952
-
953
- ### Features
954
-
955
- * add new request in data integration ([6ba0351](https://github.com/stack-spot/portal-commons/commit/6ba03515b0c347a326681edb0f75c75c2437a441))
956
-
957
- ## [0.115.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.114.0...portal-network@v0.115.0) (2025-04-14)
958
-
959
-
960
- ### Features
961
-
962
- * Feat upd favorites ([#912](https://github.com/stack-spot/portal-commons/issues/912)) ([d76fcd4](https://github.com/stack-spot/portal-commons/commit/d76fcd457e8f111a20d88dbd21a8dc58dde54bd2))
963
-
964
- ## [0.114.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.7...portal-network@v0.114.0) (2025-04-11)
965
-
966
-
967
- ### Features
968
-
969
- * Add code shift create module ([#915](https://github.com/stack-spot/portal-commons/issues/915)) ([ea987dc](https://github.com/stack-spot/portal-commons/commit/ea987dc48c284f6d273542e20bf718d5c5d8fc92))
970
- * add data integration api ([d14f204](https://github.com/stack-spot/portal-commons/commit/d14f204c8871400836c7d7b8cff98aa97c14a858))
971
-
972
-
973
- ### Bug Fixes
974
-
975
- * Make session manager readonly ([#919](https://github.com/stack-spot/portal-commons/issues/919)) ([49fc475](https://github.com/stack-spot/portal-commons/commit/49fc475cc914998c2db92dc7509ed45942132f1d))
976
-
977
- ## [0.113.7](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.6...portal-network@v0.113.7) (2025-04-07)
978
-
979
-
980
- ### Bug Fixes
981
-
982
- * add inferenceDictionary ([#899](https://github.com/stack-spot/portal-commons/issues/899)) ([c360770](https://github.com/stack-spot/portal-commons/commit/c3607705c89be89579dd9a08ba638517b6d1a3ef))
983
-
984
- ## [0.113.6](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.5...portal-network@v0.113.6) (2025-04-05)
985
-
986
-
987
- ### Features
988
-
989
- * add ai inference api ([#897](https://github.com/stack-spot/portal-commons/issues/897)) ([d8daeb5](https://github.com/stack-spot/portal-commons/commit/d8daeb54fd0fab77a2fe4e3c2c94a2be7b97f28d))
990
-
991
- ## [0.113.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.4...portal-network@v0.113.5) (2025-04-04)
992
-
993
-
994
- ### Bug Fixes
995
-
996
- * Update swagger ([#893](https://github.com/stack-spot/portal-commons/issues/893)) ([83d8f44](https://github.com/stack-spot/portal-commons/commit/83d8f44ff15c65d417200d0cabef870acf5020d4))
997
-
998
- ## [0.113.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.3...portal-network@v0.113.4) (2025-04-03)
999
-
1000
-
1001
- ### Bug Fixes
1002
-
1003
- * api url ([#890](https://github.com/stack-spot/portal-commons/issues/890)) ([2cbca89](https://github.com/stack-spot/portal-commons/commit/2cbca897754347ae0ffef5687a8bae2c8c3290e6))
1004
- * change api prd of cloud horizon ([#889](https://github.com/stack-spot/portal-commons/issues/889)) ([5370bdd](https://github.com/stack-spot/portal-commons/commit/5370bddfdf806f4c30b9a1691433163e6380055b))
1005
-
1006
- ## [0.113.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.2...portal-network@v0.113.3) (2025-04-03)
1007
-
1008
-
1009
- ### Bug Fixes
1010
-
1011
- * agent apits doc ([#886](https://github.com/stack-spot/portal-commons/issues/886)) ([e0a0921](https://github.com/stack-spot/portal-commons/commit/e0a09216d6709860ee11d41d6f519d60e811d342))
1012
- * Update code shift api ([#888](https://github.com/stack-spot/portal-commons/issues/888)) ([8dcfd50](https://github.com/stack-spot/portal-commons/commit/8dcfd504b8365d6d6e8cb81282bdc6a5ea7e00c6))
1013
-
1014
- ## [0.113.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.1...portal-network@v0.113.2) (2025-04-03)
1015
-
1016
-
1017
- ### Bug Fixes
1018
-
1019
- * add get publicAgent ([#884](https://github.com/stack-spot/portal-commons/issues/884)) ([142629a](https://github.com/stack-spot/portal-commons/commit/142629ac85c96a430d61827b62787cc4ea609637))
1020
-
1021
- ## [0.113.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.0...portal-network@v0.113.1) (2025-04-02)
1022
-
1023
-
1024
- ### Bug Fixes
1025
-
1026
- * update swagger horizon ([9f8edbb](https://github.com/stack-spot/portal-commons/commit/9f8edbb15086fbd02a488f49a2cc942c756c6545))
1027
-
1028
- ## [0.113.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.112.1...portal-network@v0.113.0) (2025-04-02)
1029
-
1030
-
1031
- ### Features
1032
-
1033
- * implements attempts in the chat (ai) ([#878](https://github.com/stack-spot/portal-commons/issues/878)) ([4abf0b5](https://github.com/stack-spot/portal-commons/commit/4abf0b501ff677705c4ea499ee5263f1cdcfdfa3))
1034
-
1035
- ## [0.112.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.112.0...portal-network@v0.112.1) (2025-04-02)
1036
-
1037
-
1038
- ### Bug Fixes
1039
-
1040
- * add permissions endpoint ([#876](https://github.com/stack-spot/portal-commons/issues/876)) ([e54dfe2](https://github.com/stack-spot/portal-commons/commit/e54dfe2b9e3774b1b45b5c0f653456f6e3641647))
1041
-
1042
- ## [0.112.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.111.1...portal-network@v0.112.0) (2025-04-01)
1043
-
1044
-
1045
- ### Features
1046
-
1047
- * add new horizon queries ([a0bed47](https://github.com/stack-spot/portal-commons/commit/a0bed47585a12fd5b81f8808d8432e82e9ef8e9e))
1048
-
1049
- ## [0.111.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.111.0...portal-network@v0.111.1) (2025-04-01)
1050
-
1051
-
1052
- ### Bug Fixes
1053
-
1054
- * update swagger ([#872](https://github.com/stack-spot/portal-commons/issues/872)) ([52e5d08](https://github.com/stack-spot/portal-commons/commit/52e5d089bbc1b59a56f9bca6a416eb13ca50652d))
1055
-
1056
- ## [0.111.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.110.0...portal-network@v0.111.0) (2025-03-31)
1057
-
1058
-
1059
- ### Features
1060
-
1061
- * services for rate-limit in account api ([44c5b53](https://github.com/stack-spot/portal-commons/commit/44c5b532ac2cf69507c20a70912c9bfd74e14d92))
1062
-
1063
-
1064
- ### Bug Fixes
1065
-
1066
- * Update code shift swagger ([#867](https://github.com/stack-spot/portal-commons/issues/867)) ([245c5ae](https://github.com/stack-spot/portal-commons/commit/245c5ae03203c5f893e3772972e3c46101edba6d))
1067
-
1068
- ## [0.110.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.109.0...portal-network@v0.110.0) (2025-03-28)
1069
-
1070
-
1071
- ### Features
1072
-
1073
- * add new endpoints horizon ([#866](https://github.com/stack-spot/portal-commons/issues/866)) ([6f51c01](https://github.com/stack-spot/portal-commons/commit/6f51c01836b82a008e2c46ece59c9a4e365bf26e))
1074
-
1075
-
1076
- ### Bug Fixes
1077
-
1078
- * Add new ai method ([#864](https://github.com/stack-spot/portal-commons/issues/864)) ([3dd16ef](https://github.com/stack-spot/portal-commons/commit/3dd16ef43f9179820c83c4aa3192760e98167792))
1079
-
1080
- ## [0.109.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.108.0...portal-network@v0.109.0) (2025-03-28)
1081
-
1082
-
1083
- ### Features
1084
-
1085
- * New ai endpoints ([#862](https://github.com/stack-spot/portal-commons/issues/862)) ([2b51725](https://github.com/stack-spot/portal-commons/commit/2b51725ca782cf0f29b23cf43646e223d98ed7a8))
1086
-
1087
- ## [0.108.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.107.0...portal-network@v0.108.0) (2025-03-27)
1088
-
1089
-
1090
- ### Features
1091
-
1092
- * update workspace manager ([#860](https://github.com/stack-spot/portal-commons/issues/860)) ([dd0a9b9](https://github.com/stack-spot/portal-commons/commit/dd0a9b9214075dd4ac9c2fad7df49c6fe80fb132))
1093
-
1094
- ## [0.107.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.106.0...portal-network@v0.107.0) (2025-03-27)
1095
-
1096
-
1097
- ### Features
1098
-
1099
- * Add download endpoint ([#858](https://github.com/stack-spot/portal-commons/issues/858)) ([574fe25](https://github.com/stack-spot/portal-commons/commit/574fe253c94c12966e886acc8ea9c3d8aa4df2ea))
1100
-
1101
- ## [0.106.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.105.1...portal-network@v0.106.0) (2025-03-27)
1102
-
1103
-
1104
- ### Features
1105
-
1106
- * Upd api wks manager ([#856](https://github.com/stack-spot/portal-commons/issues/856)) ([5499091](https://github.com/stack-spot/portal-commons/commit/54990913a22a214f0ab37ae6a95a3006933b97ee))
1107
-
1108
- ## [0.105.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.105.0...portal-network@v0.105.1) (2025-03-26)
1109
-
1110
-
1111
- ### Bug Fixes
1112
-
1113
- * Update code shift ([#854](https://github.com/stack-spot/portal-commons/issues/854)) ([c1737ad](https://github.com/stack-spot/portal-commons/commit/c1737ad8941e2cde815a807d5ea4110adcb509bf))
1114
-
1115
- ## [0.105.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.104.2...portal-network@v0.105.0) (2025-03-26)
1116
-
1117
-
1118
- ### Features
1119
-
1120
- * Upd workspace manager ([#851](https://github.com/stack-spot/portal-commons/issues/851)) ([bd47d3e](https://github.com/stack-spot/portal-commons/commit/bd47d3e4f72eb6fa195e91cc90f4f7d3f24ac875))
1121
-
1122
- ## [0.104.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.104.1...portal-network@v0.104.2) (2025-03-26)
1123
-
1124
-
1125
- ### Bug Fixes
1126
-
1127
- * adds error message for code CNT_CONTENT_NO_PERMISSION_TO_ARCHIVE ([#849](https://github.com/stack-spot/portal-commons/issues/849)) ([dcac360](https://github.com/stack-spot/portal-commons/commit/dcac360bc178a7b9cf754ff7d14fbea89c5e636f))
1128
-
1129
- ## [0.104.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.104.0...portal-network@v0.104.1) (2025-03-25)
1130
-
1131
-
1132
- ### Bug Fixes
1133
-
1134
- * Update swagger ([#847](https://github.com/stack-spot/portal-commons/issues/847)) ([811b104](https://github.com/stack-spot/portal-commons/commit/811b104a6b5de3703c4f2e602a3b1db4ae2e5f99))
1135
-
1136
- ## [0.104.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.103.0...portal-network@v0.104.0) (2025-03-25)
1137
-
1138
-
1139
- ### Features
1140
-
1141
- * Add tokens usage ([#844](https://github.com/stack-spot/portal-commons/issues/844)) ([52a27cd](https://github.com/stack-spot/portal-commons/commit/52a27cd3ac6a3c2fb8ed25ae7edce128f22c31d7))
1142
-
1143
- ## [0.103.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.102.0...portal-network@v0.103.0) (2025-03-25)
1144
-
1145
-
1146
- ### Features
1147
-
1148
- * Add remove account ([#841](https://github.com/stack-spot/portal-commons/issues/841)) ([df178f6](https://github.com/stack-spot/portal-commons/commit/df178f6da859e79c62770204596cd138053daec0))
1149
- * tools ([#843](https://github.com/stack-spot/portal-commons/issues/843)) ([fb8aeb6](https://github.com/stack-spot/portal-commons/commit/fb8aeb6439408f039a25f36f302c49f0970a956d))
1150
-
1151
- ## [0.102.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.101.0...portal-network@v0.102.0) (2025-03-24)
1152
-
1153
-
1154
- ### Features
1155
-
1156
- * agents with tools on AI chat ([#833](https://github.com/stack-spot/portal-commons/issues/833)) ([ab184a0](https://github.com/stack-spot/portal-commons/commit/ab184a09ade7636c78aeab4326c89fe736dff377))
1157
-
1158
- ## [0.101.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.100.0...portal-network@v0.101.0) (2025-03-24)
1159
-
1160
-
1161
- ### Features
1162
-
1163
- * add queries vpn ([2e575b3](https://github.com/stack-spot/portal-commons/commit/2e575b32c592ed19f4f09d3d5bdc90a98250125b))
1164
-
1165
- ## [0.100.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.5...portal-network@v0.100.0) (2025-03-21)
1166
-
1167
-
1168
- ### Features
1169
-
1170
- * add account endpoints trial ([#827](https://github.com/stack-spot/portal-commons/issues/827)) ([2527e76](https://github.com/stack-spot/portal-commons/commit/2527e76e256a6f53ddb8512b9a2cb7af19b6e4b1))
1171
-
1172
- ## [0.99.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.4...portal-network@v0.99.5) (2025-03-21)
1173
-
1174
-
1175
- ### Bug Fixes
1176
-
1177
- * change query list organizations ([abf9a19](https://github.com/stack-spot/portal-commons/commit/abf9a19e262407cbf1ce52e41fb3d0bb7b223ebc))
1178
- * change readme ([f6df58f](https://github.com/stack-spot/portal-commons/commit/f6df58f3d2c6bd019d9206d25972660e1c9429b1))
1179
- * readme ([#829](https://github.com/stack-spot/portal-commons/issues/829)) ([cc29d2c](https://github.com/stack-spot/portal-commons/commit/cc29d2cca8482fa197f9c6af00a501f08a0f7a75))
1180
-
1181
- ## [0.99.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.3...portal-network@v0.99.4) (2025-03-21)
1182
-
1183
-
1184
- ### Bug Fixes
1185
-
1186
- * change query list organizations ([abf9a19](https://github.com/stack-spot/portal-commons/commit/abf9a19e262407cbf1ce52e41fb3d0bb7b223ebc))
1187
- * change readme ([f6df58f](https://github.com/stack-spot/portal-commons/commit/f6df58f3d2c6bd019d9206d25972660e1c9429b1))
1188
- * update workflow open api ([f9c1c67](https://github.com/stack-spot/portal-commons/commit/f9c1c67634285919f318ff809b707446a9ead46c))
1189
-
1190
- ## [0.99.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.3...portal-network@v0.99.4) (2025-03-21)
1191
-
1192
-
1193
- ### Bug Fixes
1194
-
1195
- * update workflow open api ([f9c1c67](https://github.com/stack-spot/portal-commons/commit/f9c1c67634285919f318ff809b707446a9ead46c))
1196
-
1197
- ## [0.99.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.2...portal-network@v0.99.3) (2025-03-19)
1198
-
1199
-
1200
- ### Bug Fixes
1201
-
1202
- * interpolate error masssges ([#810](https://github.com/stack-spot/portal-commons/issues/810)) ([351be8d](https://github.com/stack-spot/portal-commons/commit/351be8d00540061a491d36bd5c4884ec6487d8a9))
1203
-
1204
- ## [0.99.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.1...portal-network@v0.99.2) (2025-03-19)
1205
-
1206
-
1207
- ### Bug Fixes
1208
-
1209
- * Update swagger ([#816](https://github.com/stack-spot/portal-commons/issues/816)) ([e788bd0](https://github.com/stack-spot/portal-commons/commit/e788bd05b066d36b06c3845262929438cb15df35))
1210
-
1211
- ## [0.99.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.0...portal-network@v0.99.1) (2025-03-19)
1212
-
1213
-
1214
- ### Bug Fixes
1215
-
1216
- * Update swagger - standard props ([#814](https://github.com/stack-spot/portal-commons/issues/814)) ([6f1669d](https://github.com/stack-spot/portal-commons/commit/6f1669d55a5974513c7bc6a8525a764f5605bbc7))
1217
-
1218
- ## [0.99.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.98.0...portal-network@v0.99.0) (2025-03-19)
1219
-
1220
-
1221
- ### Features
1222
-
1223
- * Update swagger ([#812](https://github.com/stack-spot/portal-commons/issues/812)) ([1f1cc5b](https://github.com/stack-spot/portal-commons/commit/1f1cc5b2130e1f46a208fb8281e0b6aaae244657))
1224
-
1225
-
1226
- ### Bug Fixes
1227
-
1228
- * Fix 1388 remove duplicated client and upd ai ([#811](https://github.com/stack-spot/portal-commons/issues/811)) ([08014f5](https://github.com/stack-spot/portal-commons/commit/08014f56b0d3f9992e45376b957ca691b9bea6f1))
1229
-
1230
- ## [0.98.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.97.2...portal-network@v0.98.0) (2025-03-18)
1231
-
1232
-
1233
- ### Features
1234
-
1235
- * Feat 1388 include code buddy ([#808](https://github.com/stack-spot/portal-commons/issues/808)) ([e64704f](https://github.com/stack-spot/portal-commons/commit/e64704f1f60e0a2c492e3aa29f26ea4aacb1f738))
1236
-
1237
- ## [0.97.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.97.1...portal-network@v0.97.2) (2025-03-18)
1238
-
1239
-
1240
- ### Bug Fixes
1241
-
1242
- * Update code shift swagger ([#806](https://github.com/stack-spot/portal-commons/issues/806)) ([b44df4e](https://github.com/stack-spot/portal-commons/commit/b44df4e99569ac1dece15442d025b5aa934df465))
1243
-
1244
- ## [0.97.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.97.0...portal-network@v0.97.1) (2025-03-17)
1245
-
1246
-
1247
- ### Features
1248
-
1249
- * Rate Limit ([ba18cf9](https://github.com/stack-spot/portal-commons/commit/ba18cf940104a099e1c79bf859795d5d5f4d075f))
1250
-
1251
- ## [0.97.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.96.0...portal-network@v0.97.0) (2025-03-17)
1252
-
1253
-
1254
- ### Features
1255
-
1256
- * update workflow API ([#803](https://github.com/stack-spot/portal-commons/issues/803)) ([69abbfd](https://github.com/stack-spot/portal-commons/commit/69abbfd41d02a1dcb7a8ed7e3d0064db8f510956))
1257
-
1258
- ## [0.96.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.95.0...portal-network@v0.96.0) (2025-03-17)
1259
-
1260
-
1261
- ### Features
1262
-
1263
- * Add more code shift endpoints ([#802](https://github.com/stack-spot/portal-commons/issues/802)) ([5170771](https://github.com/stack-spot/portal-commons/commit/51707715c5a4e2df9007e88b428e065054938cb4))
1264
- * New code shift endpoints ([#799](https://github.com/stack-spot/portal-commons/issues/799)) ([0089f28](https://github.com/stack-spot/portal-commons/commit/0089f2878c5dcdf8190e019a75f253a5d9e0c962))
1265
-
1266
-
1267
- ### Bug Fixes
1268
-
1269
- * clearInputContextPluginAccount ([#801](https://github.com/stack-spot/portal-commons/issues/801)) ([ecbc917](https://github.com/stack-spot/portal-commons/commit/ecbc917bbc34e1da045720aafa25f557e5409f9b))
1270
-
1271
- ## [0.95.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.94.1...portal-network@v0.95.0) (2025-03-14)
1272
-
1273
-
1274
- ### Features
1275
-
1276
- * new delete context endpoints ([#797](https://github.com/stack-spot/portal-commons/issues/797)) ([582b703](https://github.com/stack-spot/portal-commons/commit/582b703cf58793ce2a668fc8d778f9367f32f34d))
1277
- * update code shift ([#789](https://github.com/stack-spot/portal-commons/issues/789)) ([8085787](https://github.com/stack-spot/portal-commons/commit/80857873161ba3e6ac05d2cf4c4b38c62493e958))
1278
-
1279
- ## [0.94.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.94.0...portal-network@v0.94.1) (2025-03-11)
1280
-
1281
-
1282
- ### Bug Fixes
1283
-
1284
- * fix code shift integration ([7c5d2cc](https://github.com/stack-spot/portal-commons/commit/7c5d2ccec5a49fa5b74cdebc05d5e937b6df28ee))
1285
-
1286
- ## [0.94.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.93.0...portal-network@v0.94.0) (2025-03-10)
1287
-
1288
-
1289
- ### Features
1290
-
1291
- * update plugin endpoints ([#782](https://github.com/stack-spot/portal-commons/issues/782)) ([e442736](https://github.com/stack-spot/portal-commons/commit/e442736ce17e562d052c2f7ee623423e3ec2a3ab))
1292
-
1293
- ## [0.93.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.92.0...portal-network@v0.93.0) (2025-03-10)
1294
-
1295
-
1296
- ### Features
1297
-
1298
- * init code shift ([#780](https://github.com/stack-spot/portal-commons/issues/780)) ([52697b7](https://github.com/stack-spot/portal-commons/commit/52697b7f0930ab1753e6e58e699bdcd29c0040e1))
1299
-
1300
- ## [0.92.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.91.0...portal-network@v0.92.0) (2025-03-07)
1301
-
1302
-
1303
- ### Features
1304
-
1305
- * add requests for network connection integration ([cb44300](https://github.com/stack-spot/portal-commons/commit/cb44300678776eda12bc8bb18eca5e88b82d60d9))
1306
-
1307
- ## [0.91.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.90.0...portal-network@v0.91.0) (2025-03-07)
1308
-
1309
-
1310
- ### Features
1311
-
1312
- * expose apiList ([#773](https://github.com/stack-spot/portal-commons/issues/773)) ([65ff688](https://github.com/stack-spot/portal-commons/commit/65ff68890a4d3dfdfb4b70f4b1dbe35613a37697))
1313
-
1314
- ## [0.90.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.89.0...portal-network@v0.90.0) (2025-02-28)
1315
-
1316
-
1317
- ### Features
1318
-
1319
- * Feat summary workflow by version id ([#769](https://github.com/stack-spot/portal-commons/issues/769)) ([13ad839](https://github.com/stack-spot/portal-commons/commit/13ad8390f66e86e920e39b8283fca9311132bb1b))
1320
-
1321
- ## [0.89.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.88.0...portal-network@v0.89.0) (2025-02-27)
1322
-
1323
-
1324
- ### Features
1325
-
1326
- * Feat 1307 status on list workflow ([#757](https://github.com/stack-spot/portal-commons/issues/757)) ([ab9fe85](https://github.com/stack-spot/portal-commons/commit/ab9fe85e3e29bc1db3839a31d8b045d97dee7a0d))
1327
-
1328
- ## [0.88.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.87.1...portal-network@v0.88.0) (2025-02-25)
1329
-
1330
-
1331
- ### Features
1332
-
1333
- * archive stacks ([#746](https://github.com/stack-spot/portal-commons/issues/746)) ([7c1533f](https://github.com/stack-spot/portal-commons/commit/7c1533fec5193e5ef775ba79cf314a1f4abece5c))
1334
-
1335
- ## [0.87.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.87.0...portal-network@v0.87.1) (2025-02-25)
1336
-
1337
-
1338
- ### Bug Fixes
1339
-
1340
- * 1088 connection interface ([35375c9](https://github.com/stack-spot/portal-commons/commit/35375c9b885a8496f703dd9c840c3086cd5229c5))
1341
-
1342
- ## [0.87.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.86.1...portal-network@v0.87.0) (2025-02-20)
1343
-
1344
-
1345
- ### Features
1346
-
1347
- * Feat 1307 Workflow Deprecate and Unpublish ([#724](https://github.com/stack-spot/portal-commons/issues/724)) ([45be253](https://github.com/stack-spot/portal-commons/commit/45be25395034c0b743ad7e5a78fbc01265ca06ed))
1348
-
1349
- ## [0.86.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.86.0...portal-network@v0.86.1) (2025-02-20)
1350
-
1351
-
1352
- ### Bug Fixes
1353
-
1354
- * Updated SecretResponse ([#740](https://github.com/stack-spot/portal-commons/issues/740)) ([2ff7dbe](https://github.com/stack-spot/portal-commons/commit/2ff7dbe7a65992d5ee42b9f3c06c61c312c37a11))
1355
-
1356
- ## [0.86.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.85.0...portal-network@v0.86.0) (2025-02-19)
1357
-
1358
-
1359
- ### Features
1360
-
1361
- * update error message mappings ([#738](https://github.com/stack-spot/portal-commons/issues/738)) ([7065b9c](https://github.com/stack-spot/portal-commons/commit/7065b9cf2519c95003c8e5ea8f8a3ff1bf2a79f7))
1362
-
1363
- ## [0.85.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.84.1...portal-network@v0.85.0) (2025-02-18)
1364
-
1365
-
1366
- ### Features
1367
-
1368
- * 2084 secrets ([#723](https://github.com/stack-spot/portal-commons/issues/723)) ([4034dea](https://github.com/stack-spot/portal-commons/commit/4034dea7217fa677caa8c611f0ae1336b793f5e1))
1369
-
1370
- ## [0.84.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.84.0...portal-network@v0.84.1) (2025-02-18)
1371
-
1372
-
1373
- ### Bug Fixes
1374
-
1375
- * type ([#735](https://github.com/stack-spot/portal-commons/issues/735)) ([61308b7](https://github.com/stack-spot/portal-commons/commit/61308b73da61b8a1752130031e138b680be10fa6))
1376
-
1377
- ## [0.84.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.2...portal-network@v0.84.0) (2025-02-17)
1378
-
1379
-
1380
- ### Features
1381
-
1382
- * Add content dependencies ([#733](https://github.com/stack-spot/portal-commons/issues/733)) ([e3bfa03](https://github.com/stack-spot/portal-commons/commit/e3bfa038cc2b58b1416ede18d7787875c55e9de9))
1383
-
1384
- ## [0.83.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.1...portal-network@v0.83.2) (2025-02-13)
1385
-
1386
-
1387
- ### Bug Fixes
1388
-
1389
- * swagger ([#731](https://github.com/stack-spot/portal-commons/issues/731)) ([cbd8973](https://github.com/stack-spot/portal-commons/commit/cbd89731227bcaae9662c895652e9a25095cd483))
1390
- * update plugins endpoint mapping ([#730](https://github.com/stack-spot/portal-commons/issues/730)) ([ced22ab](https://github.com/stack-spot/portal-commons/commit/ced22ab8745383396965ed3f7123800ddd050fda))
1391
-
1392
- ## [0.83.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.0...portal-network@v0.83.1) (2025-02-13)
1393
-
1394
-
1395
- ### Bug Fixes
1396
-
1397
- * remove requests and update cloud platform swagger ([#728](https://github.com/stack-spot/portal-commons/issues/728)) ([5a605de](https://github.com/stack-spot/portal-commons/commit/5a605deafdae55bf72be0bb93f05dc35b172e59d))
1398
-
1399
- ## [0.83.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.3...portal-network@v0.83.0) (2025-02-13)
1400
-
1401
-
1402
- ### Features
1403
-
1404
- * map update plugins services ([#672](https://github.com/stack-spot/portal-commons/issues/672)) ([07a716a](https://github.com/stack-spot/portal-commons/commit/07a716aa18689a894ec7910702c416d6d8af0dee))
1405
-
1406
- ## [0.82.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.2...portal-network@v0.82.3) (2025-02-11)
1407
-
1408
-
1409
- ### Bug Fixes
1410
-
1411
- * Update swagger ([#725](https://github.com/stack-spot/portal-commons/issues/725)) ([35e01ac](https://github.com/stack-spot/portal-commons/commit/35e01ac89d31c094724a66a8e93ec08b755ba4d0))
1412
-
1413
- ## [0.82.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.1...portal-network@v0.82.2) (2025-02-10)
1414
-
1415
-
1416
- ### Bug Fixes
1417
-
1418
- * Fix type add resource to workspace ([#715](https://github.com/stack-spot/portal-commons/issues/715)) ([116c385](https://github.com/stack-spot/portal-commons/commit/116c3855f70fbe9dc15d08b930b02181d6c4018f))
1419
-
1420
- ## [0.82.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.0...portal-network@v0.82.1) (2025-02-07)
1421
-
1422
-
1423
- ### Bug Fixes
1424
-
1425
- * Up swagger ([#704](https://github.com/stack-spot/portal-commons/issues/704)) ([71b4074](https://github.com/stack-spot/portal-commons/commit/71b4074d16821b8cfc8527124b9b0557a89c0cf5))
1426
-
1427
- ## [0.82.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.81.2...portal-network@v0.82.0) (2025-02-07)
1428
-
1429
-
1430
- ### Features
1431
-
1432
- * update swagger cloud platform and horizon ([#702](https://github.com/stack-spot/portal-commons/issues/702)) ([b61de8c](https://github.com/stack-spot/portal-commons/commit/b61de8c48a64535916dfceb48797629845c2c560))
1433
-
1434
- ## [0.81.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.81.1...portal-network@v0.81.2) (2025-02-06)
1435
-
1436
-
1437
- ### Bug Fixes
1438
-
1439
- * infra rollback ([#700](https://github.com/stack-spot/portal-commons/issues/700)) ([1dbb853](https://github.com/stack-spot/portal-commons/commit/1dbb8539c1921fcd9cf2728b5e594be49c365aaa))
1440
-
1441
- ## [0.81.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.81.0...portal-network@v0.81.1) (2025-02-06)
1442
-
1443
-
1444
- ### Bug Fixes
1445
-
1446
- * app rollback ([#698](https://github.com/stack-spot/portal-commons/issues/698)) ([074c14b](https://github.com/stack-spot/portal-commons/commit/074c14bd363b2af3fc00ca4f2fcef3b6c81db627))
1447
-
1448
- ## [0.81.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.80.1...portal-network@v0.81.0) (2025-02-06)
1449
-
1450
-
1451
- ### Features
1452
-
1453
- * Feat 1196 upd content ([#694](https://github.com/stack-spot/portal-commons/issues/694)) ([07a8ec0](https://github.com/stack-spot/portal-commons/commit/07a8ec07a58ad38da7160dd9a403ec233583a243))
1454
-
1455
- ## [0.80.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.80.0...portal-network@v0.80.1) (2025-02-06)
1456
-
1457
-
1458
- ### Bug Fixes
1459
-
1460
- * Update swagger and fix type ([#695](https://github.com/stack-spot/portal-commons/issues/695)) ([0786000](https://github.com/stack-spot/portal-commons/commit/07860002862be00c598619504d8d092fe4be9d96))
1461
-
1462
- ## [0.80.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.79.1...portal-network@v0.80.0) (2025-02-06)
1463
-
1464
-
1465
- ### Features
1466
-
1467
- * Updates runtime manager to expose admin endpoints to use in extensions ([#692](https://github.com/stack-spot/portal-commons/issues/692)) ([d666108](https://github.com/stack-spot/portal-commons/commit/d6661082e9f9f49cc6697a182b72f618ceb4543e))
1468
-
1469
- ## [0.79.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.79.0...portal-network@v0.79.1) (2025-02-05)
1470
-
1471
-
1472
- ### Bug Fixes
1473
-
1474
- * Update swagger ([#687](https://github.com/stack-spot/portal-commons/issues/687)) ([f9a27fb](https://github.com/stack-spot/portal-commons/commit/f9a27fba58bde909e1e3ff902c526895f0bab18a))
1475
-
1476
- ## [0.79.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.78.0...portal-network@v0.79.0) (2025-02-05)
1477
-
1478
-
1479
- ### Features
1480
-
1481
- * Update workspace ai swagger ([#685](https://github.com/stack-spot/portal-commons/issues/685)) ([734175b](https://github.com/stack-spot/portal-commons/commit/734175b961643d91dbc373fda66289510ca53a27))
1482
-
1483
- ## [0.78.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.77.1...portal-network@v0.78.0) (2025-01-31)
1484
-
1485
-
1486
- ### Features
1487
-
1488
- * add workspace ai ([#680](https://github.com/stack-spot/portal-commons/issues/680)) ([c113b72](https://github.com/stack-spot/portal-commons/commit/c113b723897d5efbec5d75112fe6f39c748252b4))
1489
-
1490
- ## [0.77.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.77.0...portal-network@v0.77.1) (2025-01-30)
1491
-
1492
-
1493
- ### Bug Fixes
1494
-
1495
- * udpate cloud platform swagger ([#678](https://github.com/stack-spot/portal-commons/issues/678)) ([d853b70](https://github.com/stack-spot/portal-commons/commit/d853b709f7243276b0ca8a19d3d9eb8fecb79786))
1496
-
1497
- ## [0.77.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.76.0...portal-network@v0.77.0) (2025-01-30)
1498
-
1499
-
1500
- ### Features
1501
-
1502
- * update cloud platform and horizon ([1380712](https://github.com/stack-spot/portal-commons/commit/13807120abc3ecd0375ca3b89a5c3b2c1a315d2e))
1503
-
1504
- ## [0.76.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.75.0...portal-network@v0.76.0) (2025-01-30)
1505
-
1506
-
1507
- ### Features
1508
-
1509
- * update libs of environments ([7763fa1](https://github.com/stack-spot/portal-commons/commit/7763fa1cc929d0e6ff83e2f16ddbc64f5256851e))
1510
- * update version ([#674](https://github.com/stack-spot/portal-commons/issues/674)) ([d997bec](https://github.com/stack-spot/portal-commons/commit/d997bec5be68b877da77ae849233cf1955e59350))
1511
-
1512
- ## [0.75.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.74.0...portal-network@v0.75.0) (2025-01-28)
1513
-
1514
-
1515
- ### Features
1516
-
1517
- * 1222 account extensions ([#667](https://github.com/stack-spot/portal-commons/issues/667)) ([18d1e45](https://github.com/stack-spot/portal-commons/commit/18d1e45f129dbf001aa6e3e8fdaca597c6aabe2b))
1518
-
1519
- ## [0.74.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.73.0...portal-network@v0.74.0) (2025-01-28)
1520
-
1521
-
1522
- ### Features
1523
-
1524
- * update workspace manager ([#664](https://github.com/stack-spot/portal-commons/issues/664)) ([3aa369a](https://github.com/stack-spot/portal-commons/commit/3aa369a1f7cf9c4f9dd61adb32228809df5c8e62))
1525
-
1526
- ## [0.73.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.72.1...portal-network@v0.73.0) (2025-01-23)
1527
-
1528
-
1529
- ### Features
1530
-
1531
- * update-agent-api ([bc0fb5d](https://github.com/stack-spot/portal-commons/commit/bc0fb5deccf50a2960ca6687efb37498f768b7d7))
1532
-
1533
- ## [0.72.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.72.0...portal-network@v0.72.1) (2025-01-21)
1534
-
1535
-
1536
- ### Bug Fixes
1537
-
1538
- * 2164 paginations ([efbcf90](https://github.com/stack-spot/portal-commons/commit/efbcf90113b4716dd12d423eaba6eec0e2c9b90f))
1539
-
1540
- ## [0.72.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.71.0...portal-network@v0.72.0) (2025-01-20)
1541
-
1542
-
1543
- ### Features
1544
-
1545
- * 2164 pagination ([df428f7](https://github.com/stack-spot/portal-commons/commit/df428f7985b6a15c93fec9576e7f9d41d96eefb5))
1546
-
1547
- ## [0.71.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.70.0...portal-network@v0.71.0) (2025-01-17)
1548
-
1549
-
1550
- ### Features
1551
-
1552
- * update workspace manager ([#653](https://github.com/stack-spot/portal-commons/issues/653)) ([5ee76ff](https://github.com/stack-spot/portal-commons/commit/5ee76ff6f7e85d0a196c65644eb4ce000a8b6fff))
1553
-
1554
- ## [0.70.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.69.0...portal-network@v0.70.0) (2025-01-15)
1555
-
1556
-
1557
- ### Features
1558
-
1559
- * udpated content API ([#648](https://github.com/stack-spot/portal-commons/issues/648)) ([476d120](https://github.com/stack-spot/portal-commons/commit/476d120bbb5a5c95026955eb9148f70563a91497))
1560
-
1561
- ## [0.69.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.5...portal-network@v0.69.0) (2025-01-09)
1562
-
1563
-
1564
- ### Features
1565
-
1566
- * add infinite scroll in actions ([f03b0bb](https://github.com/stack-spot/portal-commons/commit/f03b0bbf8e21f7c03d3a18823295ecfcf7c6fe44))
1567
-
1568
-
1569
- ### Bug Fixes
1570
-
1571
- * update swagger cloud platform ([fabbf6d](https://github.com/stack-spot/portal-commons/commit/fabbf6d25b013f97737bdd2d76d4b48d2463e187))
1572
-
1573
- ## [0.68.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.4...portal-network@v0.68.5) (2025-01-08)
1574
-
1575
-
1576
- ### Bug Fixes
1577
-
1578
- * reset lock state in the consume method ([#637](https://github.com/stack-spot/portal-commons/issues/637)) ([c4ebdde](https://github.com/stack-spot/portal-commons/commit/c4ebddeff8b4238bcffc871448404031bc6130ea))
1579
-
1580
- ## [0.68.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.3...portal-network@v0.68.4) (2025-01-06)
1581
-
1582
-
1583
- ### Bug Fixes
1584
-
1585
- * Update swagger ([#633](https://github.com/stack-spot/portal-commons/issues/633)) ([ae91ab4](https://github.com/stack-spot/portal-commons/commit/ae91ab4ce8d896bd2072766785841905b0252404))
1586
-
1587
- ## [0.68.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.2...portal-network@v0.68.3) (2025-01-02)
1588
-
1589
-
1590
- ### Bug Fixes
1591
-
1592
- * updated auth lib on network ([#591](https://github.com/stack-spot/portal-commons/issues/591)) ([2a00f4e](https://github.com/stack-spot/portal-commons/commit/2a00f4e3c3e12ea9de9202b1a93c143fdf48392f))
1593
-
1594
- ## [0.68.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.1...portal-network@v0.68.2) (2024-12-30)
1595
-
1596
-
1597
- ### Bug Fixes
1598
-
1599
- * Update swagger ([#622](https://github.com/stack-spot/portal-commons/issues/622)) ([c9d3e7f](https://github.com/stack-spot/portal-commons/commit/c9d3e7ffb7cfd3bb01d1158f578f9af93a02505e))
1600
-
1601
- ## [0.68.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.0...portal-network@v0.68.1) (2024-12-27)
1602
-
1603
-
1604
- ### Bug Fixes
1605
-
1606
- * update swagger ([4c66352](https://github.com/stack-spot/portal-commons/commit/4c663526a5d6f43b3c065f3ac57ff898a0eab343))
1607
-
1608
- ## [0.68.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.67.0...portal-network@v0.68.0) (2024-12-27)
1609
-
1610
-
1611
- ### Features
1612
-
1613
- * add queries in horizon client ([36c9444](https://github.com/stack-spot/portal-commons/commit/36c9444e08ebb6cb9f9d688afb3dca3397e3e702))
1614
-
1615
- ## [0.67.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.66.0...portal-network@v0.67.0) (2024-12-27)
1616
-
1617
-
1618
- ### Features
1619
-
1620
- * update libs banner ([#604](https://github.com/stack-spot/portal-commons/issues/604)) ([f2bc440](https://github.com/stack-spot/portal-commons/commit/f2bc440db6c65461a2b1228d0efc08ed3d883d67))
1621
-
1622
- ## [0.66.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.65.1...portal-network@v0.66.0) (2024-12-23)
1623
-
1624
-
1625
- ### Features
1626
-
1627
- * update content dictionary ([16a1995](https://github.com/stack-spot/portal-commons/commit/16a1995ea4e63d6ef345cc40927b264afa991903))
1628
- * update content dictionary ([16a1995](https://github.com/stack-spot/portal-commons/commit/16a1995ea4e63d6ef345cc40927b264afa991903))
1629
-
1630
- ## [0.65.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.65.0...portal-network@v0.65.1) (2024-12-20)
1631
-
1632
-
1633
- ### Bug Fixes
1634
-
1635
- * update cloud runtimes swagger ([aead878](https://github.com/stack-spot/portal-commons/commit/aead878452ad5d5664fa2cbf506319abe0289db4))
1636
-
1637
- ## [0.65.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.64.2...portal-network@v0.65.0) (2024-12-19)
1638
-
1639
-
1640
- ### Features
1641
-
1642
- * update swagger cloud platform and new queries ([9c308ec](https://github.com/stack-spot/portal-commons/commit/9c308ec528f127c36a38d0e3dfa510e0b84066bf))
1643
-
1644
- ## [0.64.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.64.1...portal-network@v0.64.2) (2024-12-18)
1645
-
1646
-
1647
- ### Bug Fixes
1648
-
1649
- * content api ([#589](https://github.com/stack-spot/portal-commons/issues/589)) ([e89b90f](https://github.com/stack-spot/portal-commons/commit/e89b90f2ad503248656b3d124e75f5b849fe0147))
1650
-
1651
- ## [0.64.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.64.0...portal-network@v0.64.1) (2024-12-17)
1652
-
1653
-
1654
- ### Bug Fixes
1655
-
1656
- * fix endpoints context plugin ([95cd9bc](https://github.com/stack-spot/portal-commons/commit/95cd9bc8c7bfa698787eacded6db69047ebeb513))
1657
-
1658
- ## [0.64.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.63.0...portal-network@v0.64.0) (2024-12-17)
1659
-
1660
-
1661
- ### Features
1662
-
1663
- * account workflows input ([#584](https://github.com/stack-spot/portal-commons/issues/584)) ([6c134d4](https://github.com/stack-spot/portal-commons/commit/6c134d4e832768d81b7f23d4743dbed6f6b801f6))
1664
-
1665
- ## [0.63.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.62.0...portal-network@v0.63.0) (2024-12-16)
1666
-
1667
-
1668
- ### Features
1669
-
1670
- * create app and infra using workflow ([2884164](https://github.com/stack-spot/portal-commons/commit/2884164440dee50c103ae0b1e05fa173d05436a8))
1671
-
1672
- ## [0.62.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.61.1...portal-network@v0.62.0) (2024-12-14)
1673
-
1674
-
1675
- ### Features
1676
-
1677
- * new workspace manager endpoints and extra large modal ([3b8768e](https://github.com/stack-spot/portal-commons/commit/3b8768eeb0b408059ab503ce19f3e22de5f2ad5e))
1678
-
1679
-
1680
- ### Bug Fixes
1681
-
1682
- * Update content swagger ([#576](https://github.com/stack-spot/portal-commons/issues/576)) ([316d1b6](https://github.com/stack-spot/portal-commons/commit/316d1b6704fc53aaff9902e202eab22c19befb88))
1683
-
1684
- ## [0.61.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.61.0...portal-network@v0.61.1) (2024-12-13)
1685
-
1686
-
1687
- ### Bug Fixes
1688
-
1689
- * add new queries ([7a2c4d1](https://github.com/stack-spot/portal-commons/commit/7a2c4d1ed3594d362569328010ea731204616805))
1690
-
1691
- ## [0.61.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.60.0...portal-network@v0.61.0) (2024-12-13)
1692
-
1693
-
1694
- ### Features
1695
-
1696
- * update swagger and add new queries ([08ec3ae](https://github.com/stack-spot/portal-commons/commit/08ec3aed95401b0b024141dd512101aeff58c800))
1697
-
1698
- ## [0.60.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.59.0...portal-network@v0.60.0) (2024-12-12)
1699
-
1700
-
1701
- ### Features
1702
-
1703
- * add endpoint filters app/infra ([42409b6](https://github.com/stack-spot/portal-commons/commit/42409b60923e1ff0d4a2694dbc4d00ae59c0f6ee))
1704
-
1705
- ## [0.59.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.7...portal-network@v0.59.0) (2024-12-12)
1706
-
1707
-
1708
- ### Features
1709
-
1710
- * new workflow services ([#569](https://github.com/stack-spot/portal-commons/issues/569)) ([0646dae](https://github.com/stack-spot/portal-commons/commit/0646dae9094607521deb0da14e08662dd82e7f81))
1711
-
1712
- ## [0.58.7](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.6...portal-network@v0.58.7) (2024-12-11)
1713
-
1714
-
1715
- ### Bug Fixes
1716
-
1717
- * session validation on request permission ([#562](https://github.com/stack-spot/portal-commons/issues/562)) ([03a814f](https://github.com/stack-spot/portal-commons/commit/03a814f3cc80c3af473801cf066e5ec5171a1f90))
1718
-
1719
- ## [0.58.6](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.5...portal-network@v0.58.6) (2024-12-11)
1720
-
1721
-
1722
- ### Bug Fixes
1723
-
1724
- * update swagger cloud platform ([29c3d5b](https://github.com/stack-spot/portal-commons/commit/29c3d5b638860a7e452033e95c0a52d26b6e08ad))
1725
-
1726
- ## [0.58.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.4...portal-network@v0.58.5) (2024-12-11)
1727
-
1728
-
1729
- ### Bug Fixes
1730
-
1731
- * infinite scroll in workflow by studio ([#555](https://github.com/stack-spot/portal-commons/issues/555)) ([41e1890](https://github.com/stack-spot/portal-commons/commit/41e189010517f4360a3c35b5321b706e9a80503d))
1732
- * update runtimes swagger ([da00f34](https://github.com/stack-spot/portal-commons/commit/da00f343099075d67e15e91228444d0fb9524098))
1733
-
1734
- ## [0.58.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.3...portal-network@v0.58.4) (2024-12-10)
1735
-
1736
-
1737
- ### Features
1738
-
1739
- * 881 upd content ([#531](https://github.com/stack-spot/portal-commons/issues/531)) ([7bb6e7d](https://github.com/stack-spot/portal-commons/commit/7bb6e7daf8af288466eb3c8178b1e96e3b2a1363))
1740
-
1741
- ## [0.58.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.2...portal-network@v0.58.3) (2024-12-09)
1742
-
1743
-
1744
- ### Bug Fixes
1745
-
1746
- * update cloud runtimes ([5774ef4](https://github.com/stack-spot/portal-commons/commit/5774ef4d289b05ff5dfadad8507331a571325129))
1747
-
1748
- ## [0.58.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.1...portal-network@v0.58.2) (2024-12-09)
1749
-
1750
-
1751
- ### Bug Fixes
1752
-
1753
- * Removed canvieworg ([#548](https://github.com/stack-spot/portal-commons/issues/548)) ([9e4d336](https://github.com/stack-spot/portal-commons/commit/9e4d3365586bf3d0c3523b80ea7f039c6ca30a52))
1754
-
1755
- ## [0.58.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.0...portal-network@v0.58.1) (2024-12-09)
1756
-
1757
-
1758
- ### Bug Fixes
1759
-
1760
- * Updated workspace api ([#546](https://github.com/stack-spot/portal-commons/issues/546)) ([5fea4bd](https://github.com/stack-spot/portal-commons/commit/5fea4bd951d880a49eb4728516bda3112dcacc78))
1761
-
1762
- ## [0.58.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.57.0...portal-network@v0.58.0) (2024-12-09)
1763
-
1764
-
1765
- ### Features
1766
-
1767
- * Added validate permission access endpoint ([#543](https://github.com/stack-spot/portal-commons/issues/543)) ([a147d7e](https://github.com/stack-spot/portal-commons/commit/a147d7ecde058ceb9be191ad72e57ccf1f3bc8a2))
1768
-
1769
- ## [0.57.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.56.2...portal-network@v0.57.0) (2024-12-09)
1770
-
1771
-
1772
- ### Features
1773
-
1774
- * Add workflow in stack services ([#530](https://github.com/stack-spot/portal-commons/issues/530)) ([7ff57f3](https://github.com/stack-spot/portal-commons/commit/7ff57f3124afa652a81d03023d21eae87c7588d6))
1775
-
1776
- ## [0.56.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.56.1...portal-network@v0.56.2) (2024-12-06)
1777
-
1778
-
1779
- ### Bug Fixes
1780
-
1781
- * update cloud cidr ([d0787f1](https://github.com/stack-spot/portal-commons/commit/d0787f1b530486a3a9c72bf595c52e9330a9b4de))
1782
-
1783
- ## [0.56.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.56.0...portal-network@v0.56.1) (2024-12-04)
1784
-
1785
-
1786
- ### Bug Fixes
1787
-
1788
- * change base url ([a3cdc77](https://github.com/stack-spot/portal-commons/commit/a3cdc779bafbe4f8e430cfaa6455a5fef3ed5681))
1789
-
1790
- ## [0.56.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.55.0...portal-network@v0.56.0) (2024-12-03)
1791
-
1792
-
1793
- ### Features
1794
-
1795
- * add cloud horizon client ([1a23263](https://github.com/stack-spot/portal-commons/commit/1a2326395ca543ca3114dde3c49dec0b411663f7))
1796
- * update cloud platform swagger ([1781c46](https://github.com/stack-spot/portal-commons/commit/1781c46d0986c8826a742528f743753d5907a922))
1797
-
1798
- ## [0.55.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.54.0...portal-network@v0.55.0) (2024-12-02)
1799
-
1800
-
1801
- ### Features
1802
-
1803
- * update error messages ([894bbd6](https://github.com/stack-spot/portal-commons/commit/894bbd63c737e3098b58c51b552905b05f7daac2))
1804
-
1805
-
1806
- ### Bug Fixes
1807
-
1808
- * Update for infinite scroll ([#520](https://github.com/stack-spot/portal-commons/issues/520)) ([d08a2ed](https://github.com/stack-spot/portal-commons/commit/d08a2edff772ef04e101ab6e68fc9ab232d97016))
1809
-
1810
- ## [0.54.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.3...portal-network@v0.54.0) (2024-11-29)
1811
-
1812
-
1813
- ### Features
1814
-
1815
- * Added insights client and usecanvieworg util ([#518](https://github.com/stack-spot/portal-commons/issues/518)) ([e0e70dd](https://github.com/stack-spot/portal-commons/commit/e0e70dd0644f47f80e2366f9f5a42a7d800772fa))
1816
-
1817
- ## [0.53.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.2...portal-network@v0.53.3) (2024-11-29)
1818
-
1819
-
1820
- ### Bug Fixes
1821
-
1822
- * update swagger ([094b478](https://github.com/stack-spot/portal-commons/commit/094b478032acdb71cb96e1114e1974b5d91b49b0))
1823
-
1824
- ## [0.53.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.1...portal-network@v0.53.2) (2024-11-21)
1825
-
1826
-
1827
- ### Bug Fixes
1828
-
1829
- * parsed api response error ([5768760](https://github.com/stack-spot/portal-commons/commit/576876055a46b53ef27247c81bc6b5a99711d65e))
1830
-
1831
- ## [0.53.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.0...portal-network@v0.53.1) (2024-11-11)
1832
-
1833
-
1834
- ### Bug Fixes
1835
-
1836
- * Update swagger ([#493](https://github.com/stack-spot/portal-commons/issues/493)) ([f9a6317](https://github.com/stack-spot/portal-commons/commit/f9a6317bc8413568264ba52a8254c9b22f3b3a66))
1837
-
1838
- ## [0.53.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.52.1...portal-network@v0.53.0) (2024-11-11)
1839
-
1840
-
1841
- ### Features
1842
-
1843
- * Add new input type text area ([#484](https://github.com/stack-spot/portal-commons/issues/484)) ([204cc5c](https://github.com/stack-spot/portal-commons/commit/204cc5ce1d199db5b3dbf16fc56826dbddf5ab5f))
1844
-
1845
- ## [0.52.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.52.0...portal-network@v0.52.1) (2024-11-08)
1846
-
1847
-
1848
- ### Bug Fixes
1849
-
1850
- * cloudPlatform client ([#490](https://github.com/stack-spot/portal-commons/issues/490)) ([cba2450](https://github.com/stack-spot/portal-commons/commit/cba245085abe0a63b98c7b9aa85f612115d9185f))
1851
-
1852
- ## [0.52.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.51.0...portal-network@v0.52.0) (2024-11-07)
1853
-
1854
-
1855
- ### Features
1856
-
1857
- * Feat 1970 upd wks api ([#489](https://github.com/stack-spot/portal-commons/issues/489)) ([19f7efd](https://github.com/stack-spot/portal-commons/commit/19f7efd5f55734d0ab5b327a70341e1c31792813))
1858
- * updated cloudPlatform client ([#487](https://github.com/stack-spot/portal-commons/issues/487)) ([7c0103c](https://github.com/stack-spot/portal-commons/commit/7c0103c4e6390f8ca8a62c5299630470d2637bf1))
1859
-
1860
- ## [0.51.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.50.1...portal-network@v0.51.0) (2024-11-07)
1861
-
1862
-
1863
- ### Features
1864
-
1865
- * adding activities ([#485](https://github.com/stack-spot/portal-commons/issues/485)) ([0c7bc6a](https://github.com/stack-spot/portal-commons/commit/0c7bc6a4d356e3c3fcb4a3b7e68b0f5ecdfd468b))
1866
-
1867
- ## [0.50.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.50.0...portal-network@v0.50.1) (2024-11-04)
1868
-
1869
-
1870
- ### Bug Fixes
1871
-
1872
- * Update workflow swagger ([#479](https://github.com/stack-spot/portal-commons/issues/479)) ([f160d76](https://github.com/stack-spot/portal-commons/commit/f160d76102c2ee101e0a02ef8129f7e829f480a4))
1873
-
1874
- ## [0.50.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.49.0...portal-network@v0.50.0) (2024-11-01)
1875
-
1876
-
1877
- ### Features
1878
-
1879
- * add foundation endpoitns in cloud-platform ([8b041d9](https://github.com/stack-spot/portal-commons/commit/8b041d9b77fd31a4d168b9f9b78eb36e2763ff1a))
1880
-
1881
- ## [0.49.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.48.0...portal-network@v0.49.0) (2024-11-01)
1882
-
1883
-
1884
- ### Features
1885
-
1886
- * adds missing error codes ([#475](https://github.com/stack-spot/portal-commons/issues/475)) ([09bc73d](https://github.com/stack-spot/portal-commons/commit/09bc73dbbd98b7854150364e11fefe15b781c9aa))
1887
-
1888
- ## [0.48.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.47.2...portal-network@v0.48.0) (2024-10-31)
1889
-
1890
-
1891
- ### Features
1892
-
1893
- * adds agent query ([#473](https://github.com/stack-spot/portal-commons/issues/473)) ([4e7e7c7](https://github.com/stack-spot/portal-commons/commit/4e7e7c7f302431c815c2565091e7e935ec6c20ef))
1894
-
1895
- ## [0.47.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.47.1...portal-network@v0.47.2) (2024-10-29)
1896
-
1897
-
1898
- ### Bug Fixes
1899
-
1900
- * swagger applications ([#469](https://github.com/stack-spot/portal-commons/issues/469)) ([492aa05](https://github.com/stack-spot/portal-commons/commit/492aa054cffa671059ea7f3ce82d4741afe2d539))
1901
-
1902
- ## [0.47.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.47.0...portal-network@v0.47.1) (2024-10-29)
1903
-
1904
-
1905
- ### Bug Fixes
1906
-
1907
- * applications infra 1877 ([cad9782](https://github.com/stack-spot/portal-commons/commit/cad978225667ec9568db3cdb6e5dee086cb690ee))
1908
-
1909
- ## [0.47.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.46.1...portal-network@v0.47.0) (2024-10-28)
1910
-
1911
-
1912
- ### Features
1913
-
1914
- * 1877 applications and infra screens ([#465](https://github.com/stack-spot/portal-commons/issues/465)) ([6737efd](https://github.com/stack-spot/portal-commons/commit/6737efd21737c96ec65adcef89974639fe720212))
1915
-
1916
- ## [0.46.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.46.0...portal-network@v0.46.1) (2024-10-25)
1917
-
1918
-
1919
- ### Bug Fixes
1920
-
1921
- * Update swagger ([#461](https://github.com/stack-spot/portal-commons/issues/461)) ([1d6b336](https://github.com/stack-spot/portal-commons/commit/1d6b336caf1e8878372b22eff4836b5b86bca00d))
1922
-
1923
- ## [0.46.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.45.1...portal-network@v0.46.0) (2024-10-24)
1924
-
1925
-
1926
- ### Features
1927
-
1928
- * ai quick commands + fixes ([#455](https://github.com/stack-spot/portal-commons/issues/455)) ([fbc020f](https://github.com/stack-spot/portal-commons/commit/fbc020ff4e764b6779fa3f02acc9a8417a067687))
1929
-
1930
- ## [0.45.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.45.0...portal-network@v0.45.1) (2024-10-23)
1931
-
1932
-
1933
- ### Bug Fixes
1934
-
1935
- * Update type ([#456](https://github.com/stack-spot/portal-commons/issues/456)) ([8185f4c](https://github.com/stack-spot/portal-commons/commit/8185f4c749fdb21a4268ab8f4c362b41b8668833))
1936
-
1937
- ## [0.45.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.44.0...portal-network@v0.45.0) (2024-10-22)
1938
-
1939
-
1940
- ### Features
1941
-
1942
- * 1877 workspaces ([#453](https://github.com/stack-spot/portal-commons/issues/453)) ([90eba92](https://github.com/stack-spot/portal-commons/commit/90eba922c0da218338ef8675293c27fa53bafa3a))
1943
-
1944
- ## [0.44.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.43.0...portal-network@v0.44.0) (2024-10-18)
1945
-
1946
-
1947
- ### Features
1948
-
1949
- * 1877 studios ([#443](https://github.com/stack-spot/portal-commons/issues/443)) ([8ebf849](https://github.com/stack-spot/portal-commons/commit/8ebf849cb87894970415e82df6e88b4395dae1e4))
1950
- * update object error return ([#402](https://github.com/stack-spot/portal-commons/issues/402)) ([9f1831c](https://github.com/stack-spot/portal-commons/commit/9f1831c51b0deb86b9e1f32bec509821bbdfc6a9))
1951
-
1952
-
1953
- ### Bug Fixes
1954
-
1955
- * notification swagger ([#442](https://github.com/stack-spot/portal-commons/issues/442)) ([cb27b1c](https://github.com/stack-spot/portal-commons/commit/cb27b1cd80118826cc6ceda649426d7d359b10d1))
1956
-
1957
- ## [0.43.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.2...portal-network@v0.43.0) (2024-10-17)
1958
-
1959
-
1960
- ### Features
1961
-
1962
- * update swagger cloud-platform prd ([f0aa187](https://github.com/stack-spot/portal-commons/commit/f0aa1872b4225858beeddc7452f8ce67d6e9032f))
1963
-
1964
- ## [0.42.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.1...portal-network@v0.42.2) (2024-10-16)
1965
-
1966
-
1967
- ### Bug Fixes
1968
-
1969
- * fixes infinite queries variables ([#434](https://github.com/stack-spot/portal-commons/issues/434)) ([83c62bd](https://github.com/stack-spot/portal-commons/commit/83c62bdc4ae3cb11caae18fafeddaefeb12c339f))
1970
-
1971
- ## [0.42.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.0...portal-network@v0.42.1) (2024-10-16)
1972
-
1973
-
1974
- ### Bug Fixes
1975
-
1976
- * update swagger to stg ([351580c](https://github.com/stack-spot/portal-commons/commit/351580c7a2c164f40245bbb0dfe174d6f86e2a7f))
1977
-
1978
- ## [0.42.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.41.0...portal-network@v0.42.0) (2024-10-16)
1979
-
1980
-
1981
- ### Features
1982
-
1983
- * update swagger ([f393364](https://github.com/stack-spot/portal-commons/commit/f39336478e230d198f1df7c0daba35e51b88151f))
1984
-
1985
- ## [0.41.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.40.1...portal-network@v0.41.0) (2024-10-14)
1986
-
1987
-
1988
- ### Features
1989
-
1990
- * agents + ks documents ([#426](https://github.com/stack-spot/portal-commons/issues/426)) ([143ca66](https://github.com/stack-spot/portal-commons/commit/143ca6698e4b52f9ad10e4a599365295e234fea4))
1991
-
1992
- ## [0.40.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.40.0...portal-network@v0.40.1) (2024-10-11)
1993
-
1994
-
1995
- ### Bug Fixes
1996
-
1997
- * update swagger cloud-platform ([2b5a1dc](https://github.com/stack-spot/portal-commons/commit/2b5a1dc6d7428243881589811c5eb7366381a130))
1998
-
1999
- ## [0.40.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.39.2...portal-network@v0.40.0) (2024-10-11)
2000
-
2001
-
2002
- ### Features
2003
-
2004
- * network ai ([#422](https://github.com/stack-spot/portal-commons/issues/422)) ([6bba349](https://github.com/stack-spot/portal-commons/commit/6bba3498f367787641fe583c5358725acd093de5))
2005
-
2006
- ## [0.39.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.39.1...portal-network@v0.39.2) (2024-10-10)
2007
-
2008
-
2009
- ### Bug Fixes
2010
-
2011
- * Update account swagger ([#417](https://github.com/stack-spot/portal-commons/issues/417)) ([af23973](https://github.com/stack-spot/portal-commons/commit/af23973c470198bde4fd9619cd97135a8308e009))
2012
-
2013
- ## [0.39.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.39.0...portal-network@v0.39.1) (2024-10-10)
2014
-
2015
-
2016
- ### Bug Fixes
2017
-
2018
- * content swagger ([#415](https://github.com/stack-spot/portal-commons/issues/415)) ([d928fb2](https://github.com/stack-spot/portal-commons/commit/d928fb2ad5b92573a1a03b65a4de02d5df8f67fa))
2019
-
2020
- ## [0.39.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.38.1...portal-network@v0.39.0) (2024-10-09)
2021
-
2022
-
2023
- ### Features
2024
-
2025
- * Add workflow get versions ([#412](https://github.com/stack-spot/portal-commons/issues/412)) ([7463ec4](https://github.com/stack-spot/portal-commons/commit/7463ec48075592e3eeda688111671879ecc738c5))
2026
-
2027
- ## [0.38.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.38.0...portal-network@v0.38.1) (2024-10-09)
2028
-
2029
-
2030
- ### Bug Fixes
2031
-
2032
- * add function to remove authorization ([623a87d](https://github.com/stack-spot/portal-commons/commit/623a87d68494c40476eeb21eeeb53fa72e6422df))
2033
-
2034
- ## [0.38.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.37.0...portal-network@v0.38.0) (2024-10-08)
2035
-
2036
-
2037
- ### Features
2038
-
2039
- * update swagger cloud-platform ([7891d55](https://github.com/stack-spot/portal-commons/commit/7891d5586b2325787f83be7c140277fea8b36e8d))
2040
-
2041
- ## [0.37.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.36.0...portal-network@v0.37.0) (2024-10-07)
2042
-
2043
-
2044
- ### Features
2045
-
2046
- * update content ([#406](https://github.com/stack-spot/portal-commons/issues/406)) ([a0e19f0](https://github.com/stack-spot/portal-commons/commit/a0e19f0a5f59b54410b4ece38fae28c47b570762))
2047
-
2048
- ## [0.36.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.35.0...portal-network@v0.36.0) (2024-10-04)
2049
-
2050
-
2051
- ### Features
2052
-
2053
- * Update content ([fb8daf6](https://github.com/stack-spot/portal-commons/commit/fb8daf6a3dbc18eff040328a0f248bdb886559dd))
2054
- * Workspace manager ([0349e8d](https://github.com/stack-spot/portal-commons/commit/0349e8d8e81c8146b7f42a7aee7d73f5dbdbd45b))
2055
-
2056
- ## [0.35.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.34.1...portal-network@v0.35.0) (2024-10-04)
2057
-
2058
-
2059
- ### Features
2060
-
2061
- * Update content swagger ([#397](https://github.com/stack-spot/portal-commons/issues/397)) ([7c5c0d2](https://github.com/stack-spot/portal-commons/commit/7c5c0d268072ea8af2ddda642e98113cc5003746))
2062
-
2063
- ## [0.34.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.34.0...portal-network@v0.34.1) (2024-10-03)
2064
-
2065
-
2066
- ### Bug Fixes
2067
-
2068
- * adjustment in cloud platform api ([f035480](https://github.com/stack-spot/portal-commons/commit/f03548000bb1d712067132c89bcbf65cc4209aea))
2069
-
2070
- ## [0.34.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.33.0...portal-network@v0.34.0) (2024-10-01)
2071
-
2072
-
2073
- ### Features
2074
-
2075
- * more workflow services ([#393](https://github.com/stack-spot/portal-commons/issues/393)) ([c8ad8de](https://github.com/stack-spot/portal-commons/commit/c8ad8dedfad8843ac070cf23a9dc3ea3c7e3aa15))
2076
- * platform client ([#395](https://github.com/stack-spot/portal-commons/issues/395)) ([9efb68f](https://github.com/stack-spot/portal-commons/commit/9efb68f26c35211c2991ad4b674e73f79b17d6ff))
2077
-
2078
- ## [0.33.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.32.0...portal-network@v0.33.0) (2024-09-25)
2079
-
2080
-
2081
- ### Features
2082
-
2083
- * makes react query cache stale, unless invalidated ([#388](https://github.com/stack-spot/portal-commons/issues/388)) ([d69ba66](https://github.com/stack-spot/portal-commons/commit/d69ba66a34120f22e09cedd17bddf792b9ab9538))
2084
-
2085
- ## [0.32.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.31.0...portal-network@v0.32.0) (2024-09-23)
2086
-
2087
-
2088
- ### Features
2089
-
2090
- * workflows list ([e97d1b0](https://github.com/stack-spot/portal-commons/commit/e97d1b0770fb5b619f593804f32fec72ac3bc822))
2091
-
2092
- ## [0.31.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.30.1...portal-network@v0.31.0) (2024-09-20)
2093
-
2094
-
2095
- ### Features
2096
-
2097
- * app and infra details and delete ([8de8144](https://github.com/stack-spot/portal-commons/commit/8de8144b289d36e22f9c359a1e6a0bad51b8b559))
2098
-
2099
-
2100
- ### Bug Fixes
2101
-
2102
- * Fix mutation to query client action ([#380](https://github.com/stack-spot/portal-commons/issues/380)) ([870abad](https://github.com/stack-spot/portal-commons/commit/870abade560b046834c042cc91074189af8fdbe5))
2103
- * Improve ws-manager permissions ([#374](https://github.com/stack-spot/portal-commons/issues/374)) ([9f8e139](https://github.com/stack-spot/portal-commons/commit/9f8e13929d428e27b8d45ca226138f55bef479ce))
2104
-
2105
- ## [0.30.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.30.0...portal-network@v0.30.1) (2024-09-19)
2106
-
2107
-
2108
- ### Bug Fixes
2109
-
2110
- * update workspace variable response ([#375](https://github.com/stack-spot/portal-commons/issues/375)) ([fb4651c](https://github.com/stack-spot/portal-commons/commit/fb4651cd71c7aa8fb3a8f55eee8634402b83f697))
2111
-
2112
- ## [0.30.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.29.0...portal-network@v0.30.0) (2024-09-18)
2113
-
2114
-
2115
- ### Features
2116
-
2117
- * add more fn workspace manager ([3d56751](https://github.com/stack-spot/portal-commons/commit/3d56751dce074a36321eb862ba5656c7388f3a5c))
2118
- * Add shared infra and app links fn ([#371](https://github.com/stack-spot/portal-commons/issues/371)) ([85dcc83](https://github.com/stack-spot/portal-commons/commit/85dcc83bf221de51f7da643e5156c7c8c326021d))
2119
-
2120
- ## [0.29.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.28.0...portal-network@v0.29.0) (2024-09-18)
2121
-
2122
-
2123
- ### Features
2124
-
2125
- * Add actions fn ([6111461](https://github.com/stack-spot/portal-commons/commit/611146176448eb3a2e87f4015f3cb4e5d4444129))
2126
-
2127
-
2128
- ### Bug Fixes
2129
-
2130
- * add missing fn ([c845e86](https://github.com/stack-spot/portal-commons/commit/c845e86c0d13561cde27b34e7ade09b068ce860c))
2131
-
2132
- ## [0.28.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.27.2...portal-network@v0.28.0) (2024-09-16)
2133
-
2134
-
2135
- ### Features
2136
-
2137
- * 2946 removed v1 from urls ([61ee854](https://github.com/stack-spot/portal-commons/commit/61ee8544db9aa5d3a9ee13f36fc3934c328f07c7))
2138
- * initial Refactor workspace manager ([#332](https://github.com/stack-spot/portal-commons/issues/332)) ([2597e6e](https://github.com/stack-spot/portal-commons/commit/2597e6e109ae14126534925658975180bd1f2276))
2139
-
2140
- ## [0.27.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.27.1...portal-network@v0.27.2) (2024-09-13)
2141
-
2142
-
2143
- ### Bug Fixes
2144
-
2145
- * 800 error message ([804124a](https://github.com/stack-spot/portal-commons/commit/804124a627d75314f62179f747d9ab3f27668ce1))
2146
-
2147
- ## [0.27.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.27.0...portal-network@v0.27.1) (2024-09-09)
2148
-
2149
-
2150
- ### Bug Fixes
2151
-
2152
- * fix cloud account type ([#352](https://github.com/stack-spot/portal-commons/issues/352)) ([32342d9](https://github.com/stack-spot/portal-commons/commit/32342d9b3a86ce4bc77f306dba76f9c3d23b2614))
2153
-
2154
- ## [0.27.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.26.0...portal-network@v0.27.0) (2024-09-09)
2155
-
2156
-
2157
- ### Features
2158
-
2159
- * network cloud account ([#350](https://github.com/stack-spot/portal-commons/issues/350)) ([82b0b66](https://github.com/stack-spot/portal-commons/commit/82b0b6634edffeab0ad0775b3e1a4b048340ec98))
2160
-
2161
- ## [0.26.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.25.0...portal-network@v0.26.0) (2024-09-04)
2162
-
2163
-
2164
- ### Features
2165
-
2166
- * updates workflow api ([#348](https://github.com/stack-spot/portal-commons/issues/348)) ([263b96e](https://github.com/stack-spot/portal-commons/commit/263b96e42889d620e959cd2237cf9ac69da85149))
2167
-
2168
- ## [0.25.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.24.0...portal-network@v0.25.0) (2024-09-03)
2169
-
2170
-
2171
- ### Features
2172
-
2173
- * more content fn ([985d7b2](https://github.com/stack-spot/portal-commons/commit/985d7b2c6590bb89defc9b1de1f5c7dc3d70707f))
2174
-
2175
-
2176
- ### Bug Fixes
2177
-
2178
- * update account client ([fb158e1](https://github.com/stack-spot/portal-commons/commit/fb158e1355adc956414f3e4db7078882a39594fa))
2179
-
2180
- ## [0.24.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.23.1...portal-network@v0.24.0) (2024-09-02)
2181
-
2182
-
2183
- ### Features
2184
-
2185
- * udpate resource action ([#337](https://github.com/stack-spot/portal-commons/issues/337)) ([866867d](https://github.com/stack-spot/portal-commons/commit/866867dde559a537ac7a24872b850bf241729c37))
2186
-
2187
- ## [0.23.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.23.0...portal-network@v0.23.1) (2024-08-30)
2188
-
2189
-
2190
- ### Bug Fixes
2191
-
2192
- * Show details if no translated message is found ([#331](https://github.com/stack-spot/portal-commons/issues/331)) ([f5b715b](https://github.com/stack-spot/portal-commons/commit/f5b715be6c78a950d6ead53d4e659bace7221a18))
2193
-
2194
- ## [0.23.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.22.0...portal-network@v0.23.0) (2024-08-28)
2195
-
2196
-
2197
- ### Features
2198
-
2199
- * wf graph data ([#328](https://github.com/stack-spot/portal-commons/issues/328)) ([212cc2c](https://github.com/stack-spot/portal-commons/commit/212cc2cb74ab15c6aacf523987d73c8ead434daa))
2200
-
2201
- ## [0.22.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.21.0...portal-network@v0.22.0) (2024-08-27)
2202
-
2203
-
2204
- ### Features
2205
-
2206
- * Add notification client ([#321](https://github.com/stack-spot/portal-commons/issues/321)) ([75dbbd6](https://github.com/stack-spot/portal-commons/commit/75dbbd6f01c217435872584e24722c3e6569b9bc))
2207
-
2208
-
2209
- ### Bug Fixes
2210
-
2211
- * remove authorization param ([#323](https://github.com/stack-spot/portal-commons/issues/323)) ([4ef2535](https://github.com/stack-spot/portal-commons/commit/4ef2535376b8f3267e8762218c1d623172d1c22b))
2212
-
2213
- ## [0.21.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.20.0...portal-network@v0.21.0) (2024-08-26)
2214
-
2215
-
2216
- ### Features
2217
-
2218
- * add request otp ([#318](https://github.com/stack-spot/portal-commons/issues/318)) ([6ad0e96](https://github.com/stack-spot/portal-commons/commit/6ad0e96a750110d613e69b4aeffe5f3000e702c7))
2219
-
2220
- ## [0.20.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.19.0...portal-network@v0.20.0) (2024-08-23)
2221
-
2222
-
2223
- ### Features
2224
-
2225
- * Add studio requests ([#311](https://github.com/stack-spot/portal-commons/issues/311)) ([ed5f891](https://github.com/stack-spot/portal-commons/commit/ed5f891bd5d3ce0bec559f02dbb1fbc3f2e63fdc))
2226
-
2227
- ## [0.19.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.18.1...portal-network@v0.19.0) (2024-08-21)
2228
-
2229
-
2230
- ### Features
2231
-
2232
- * Add more workspace fn ([a7c250d](https://github.com/stack-spot/portal-commons/commit/a7c250db8fdb8d6531134cf603c9f48bd099d87e))
2233
-
2234
- ## [0.18.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.18.0...portal-network@v0.18.1) (2024-08-21)
2235
-
2236
-
2237
- ### Bug Fixes
2238
-
2239
- * cloud-services/instance ([#303](https://github.com/stack-spot/portal-commons/issues/303)) ([b3342ab](https://github.com/stack-spot/portal-commons/commit/b3342abd82192520deb108d0e7c1832cb5f110c4))
2240
-
2241
- ## [0.18.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.17.0...portal-network@v0.18.0) (2024-08-21)
2242
-
2243
-
2244
- ### Features
2245
-
2246
- * Add content generated file ([abca941](https://github.com/stack-spot/portal-commons/commit/abca94138037b53af01dda7b22805e8e7ef093d6))
2247
- * Content links and more workspace fn ([1b8dd7e](https://github.com/stack-spot/portal-commons/commit/1b8dd7e3819b614a0437a65e1fb4caf269002a19))
2248
-
2249
- ## [0.17.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.16.1...portal-network@v0.17.0) (2024-08-19)
2250
-
2251
-
2252
- ### Features
2253
-
2254
- * New workspace requests ([#293](https://github.com/stack-spot/portal-commons/issues/293)) ([dfa3f6d](https://github.com/stack-spot/portal-commons/commit/dfa3f6da4482bbcbea89a2d77c0a6cb83f61d14f))
2255
-
2256
- ## [0.16.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.16.0...portal-network@v0.16.1) (2024-08-19)
2257
-
2258
-
2259
- ### Bug Fixes
2260
-
2261
- * Handling 403 error ([#292](https://github.com/stack-spot/portal-commons/issues/292)) ([ac91d7c](https://github.com/stack-spot/portal-commons/commit/ac91d7ced230594c0bb7bcb49a75c44b01704172))
2262
-
2263
- ## [0.16.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.15.0...portal-network@v0.16.0) (2024-08-19)
2264
-
2265
-
2266
- ### Features
2267
-
2268
- * network sso client ([#288](https://github.com/stack-spot/portal-commons/issues/288)) ([ce79680](https://github.com/stack-spot/portal-commons/commit/ce79680fcfb25e6ddae030f23150b3cab668464c))
2269
-
2270
-
2271
- ### Bug Fixes
2272
-
2273
- * network cloud-services ([#286](https://github.com/stack-spot/portal-commons/issues/286)) ([ae162e1](https://github.com/stack-spot/portal-commons/commit/ae162e1d4daa785b2ce0c3987a889ff053f13387))
2274
-
2275
- ## [0.15.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.14.1...portal-network@v0.15.0) (2024-08-16)
2276
-
2277
-
2278
- ### Features
2279
-
2280
- * network cloud services ([c89ca5e](https://github.com/stack-spot/portal-commons/commit/c89ca5e0b719cf5c5e51a48ee6a38a401c7ddb91))
2281
-
2282
-
2283
- ### Bug Fixes
2284
-
2285
- * workspace api types ([9584c40](https://github.com/stack-spot/portal-commons/commit/9584c4095a7eeb86363635353d92747dae8ce979))
2286
-
2287
- ## [0.14.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.14.0...portal-network@v0.14.1) (2024-08-15)
2288
-
2289
-
2290
- ### Bug Fixes
2291
-
2292
- * ws type ([bd605ee](https://github.com/stack-spot/portal-commons/commit/bd605ee2e95692336294cdf37e6c7036249f1eb6))
2293
-
2294
- ## [0.14.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.13.1...portal-network@v0.14.0) (2024-08-15)
2295
-
2296
-
2297
- ### Features
2298
-
2299
- * Initial ws refactor ([75c7fa4](https://github.com/stack-spot/portal-commons/commit/75c7fa4d0e288948d1a3a7a227d0eb23f556367a))
2300
- * refactor event bus client ([b15a059](https://github.com/stack-spot/portal-commons/commit/b15a059b09b9d9513f7b660139448dc89f757104))
2301
-
2302
- ## [0.13.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.13.0...portal-network@v0.13.1) (2024-08-13)
2303
-
2304
-
2305
- ### Bug Fixes
2306
-
2307
- * Fix prd url ([2098040](https://github.com/stack-spot/portal-commons/commit/2098040edbb56243559dca2da03aca859f9e7a82))
2308
-
2309
- ## [0.13.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.12.0...portal-network@v0.13.0) (2024-08-13)
2310
-
2311
-
2312
- ### Features
2313
-
2314
- * manual operation helpers ([0e9d54e](https://github.com/stack-spot/portal-commons/commit/0e9d54efa2ecf0632082491836b1404509032a80))
2315
- * Refactor workflow ([#258](https://github.com/stack-spot/portal-commons/issues/258)) ([1bb339b](https://github.com/stack-spot/portal-commons/commit/1bb339b89bea1452c639e6fd7f4b9663a2d95544))
2316
-
2317
- ## [0.12.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.11.0...portal-network@v0.12.0) (2024-08-12)
2318
-
2319
-
2320
- ### Features
2321
-
2322
- * add encrypt value ([3e7ff86](https://github.com/stack-spot/portal-commons/commit/3e7ff86a2cc95b3b44cf7ab97ceae387c2485815))
2323
-
2324
- ## [0.11.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.10.0...portal-network@v0.11.0) (2024-08-12)
2325
-
2326
-
2327
- ### Features
2328
-
2329
- * Add search client ([0053467](https://github.com/stack-spot/portal-commons/commit/0053467dba63d97b1814f6d97b96fa177d1e0c17))
2330
-
2331
- ## [0.10.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.9.0...portal-network@v0.10.0) (2024-08-12)
2332
-
2333
-
2334
- ### Features
2335
-
2336
- * network service credential ([#252](https://github.com/stack-spot/portal-commons/issues/252)) ([3e1158a](https://github.com/stack-spot/portal-commons/commit/3e1158a9ad2c5cb0b2c9cefe1ed7a61e330a279a))
2337
- * refactor runtime manager ([#251](https://github.com/stack-spot/portal-commons/issues/251)) ([5ed6787](https://github.com/stack-spot/portal-commons/commit/5ed67875ead085603821f951d4e89b4b2ce9f25b))
2338
-
2339
- ## [0.9.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.8.0...portal-network@v0.9.0) (2024-08-07)
2340
-
2341
-
2342
- ### Features
2343
-
2344
- * add embeded links requests ([6cb40d8](https://github.com/stack-spot/portal-commons/commit/6cb40d8f41371f4c00864848f878b251e8daac7a))
2345
-
2346
-
2347
- ### Bug Fixes
2348
-
2349
- * connection interface methods ([1ede473](https://github.com/stack-spot/portal-commons/commit/1ede473d8ac16ebe52891463082e92056c08397b))
2350
-
2351
- ## [0.8.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.7.0...portal-network@v0.8.0) (2024-08-07)
2352
-
2353
-
2354
- ### Features
2355
-
2356
- * network - scm ([#240](https://github.com/stack-spot/portal-commons/issues/240)) ([55278fb](https://github.com/stack-spot/portal-commons/commit/55278fbc8f6ea76bf50ab8c95806594fd6db1084))
2357
-
2358
- ## [0.7.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.6.0...portal-network@v0.7.0) (2024-08-07)
2359
-
2360
-
2361
- ### Features
2362
-
2363
- * add secrets client ([c5b7087](https://github.com/stack-spot/portal-commons/commit/c5b7087f6f65f1527964f1859a6a49f6ca8abbce))
2364
-
2365
- ## [0.6.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.5.0...portal-network@v0.6.0) (2024-08-05)
2366
-
2367
-
2368
- ### Features
2369
-
2370
- * resource + email in AccountClient ([#236](https://github.com/stack-spot/portal-commons/issues/236)) ([0d49447](https://github.com/stack-spot/portal-commons/commit/0d4944790529d9711013129a64caed50a48e59fe))
2371
-
2372
- ## [0.5.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.4.0...portal-network@v0.5.0) (2024-08-05)
2373
-
2374
-
2375
- ### Features
2376
-
2377
- * migrate environment client ([61b6671](https://github.com/stack-spot/portal-commons/commit/61b6671c5ab44141d90ebf1df2fa1e41fd18f9b1))
2378
-
2379
- ## [0.4.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.3.1...portal-network@v0.4.0) (2024-08-05)
2380
-
2381
-
2382
- ### Features
2383
-
2384
- * migrates roleClient ([#233](https://github.com/stack-spot/portal-commons/issues/233)) ([c1703a6](https://github.com/stack-spot/portal-commons/commit/c1703a6d190a79ec325120de0b1ba3724fc1de22))
2385
- * network group ([#231](https://github.com/stack-spot/portal-commons/issues/231)) ([09f9383](https://github.com/stack-spot/portal-commons/commit/09f93838285a17928cfa097eda8172242af2b392))
2386
-
2387
- ## [0.3.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.3.0...portal-network@v0.3.1) (2024-08-02)
2388
-
2389
-
2390
- ### Bug Fixes
2391
-
2392
- * adds network build to root ([#229](https://github.com/stack-spot/portal-commons/issues/229)) ([0e03d17](https://github.com/stack-spot/portal-commons/commit/0e03d17286acaea3f591a9de8009b445675ae0cf))
2393
-
2394
- ## [0.3.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.2.0...portal-network@v0.3.0) (2024-08-02)
2395
-
2396
-
2397
- ### Features
2398
-
2399
- * network - member ([#220](https://github.com/stack-spot/portal-commons/issues/220)) ([5bf22c2](https://github.com/stack-spot/portal-commons/commit/5bf22c29e25215052c0ad63dd6266695f437994b))
2400
-
2401
-
2402
- ### Bug Fixes
2403
-
2404
- * rewrite network client methods ([#216](https://github.com/stack-spot/portal-commons/issues/216)) ([f71bcfe](https://github.com/stack-spot/portal-commons/commit/f71bcfe53c95593e59e4cf69f23b176ab96cf02a))
2405
-
2406
- ## [0.2.0](https://github.com/stack-spot/portal-commons/compare/portal-network-v0.1.0...portal-network@v0.2.0) (2024-07-31)
2407
-
2408
-
2409
- ### Features
2410
-
2411
- * network library ([eec8b1b](https://github.com/stack-spot/portal-commons/commit/eec8b1b24c77d055884b8ed8c2ccac452c5b16e2))
2412
- * network: infinite query ([#214](https://github.com/stack-spot/portal-commons/issues/214)) ([aded3f7](https://github.com/stack-spot/portal-commons/commit/aded3f78665a829fd31d78766be7d5942aaa62e3))
1
+ # Changelog
2
+
3
+ ## [0.185.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.184.0-beta.1...portal-network-beta@v0.185.0-beta.1) (2025-10-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * add new request in worksapce manager ([#1674](https://github.com/stack-spot/portal-commons/issues/1674)) ([05bc8de](https://github.com/stack-spot/portal-commons/commit/05bc8dedb50041a0cdb9be074f4762dd9d6d9cd1))
9
+ * Adds v2 repository search API integration ([#1513](https://github.com/stack-spot/portal-commons/issues/1513)) ([e156518](https://github.com/stack-spot/portal-commons/commit/e1565186b560e30d032128a96ba76b16cc3f8aa1))
10
+
11
+ ## [0.184.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.183.0-beta.1...portal-network-beta@v0.184.0-beta.1) (2025-10-03)
12
+ ## [0.185.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.184.0...portal-network@v0.185.0) (2025-10-06)
13
+
14
+
15
+ ### Features
16
+
17
+ * Add get v3 agents, update swagger agent tools ([#1638](https://github.com/stack-spot/portal-commons/issues/1638)) ([f01b6f1](https://github.com/stack-spot/portal-commons/commit/f01b6f17950bb08331ed9fb289209594f82bbb7f))
18
+ * add workspace ai dictionary error file ([#1668](https://github.com/stack-spot/portal-commons/issues/1668)) ([a437ea2](https://github.com/stack-spot/portal-commons/commit/a437ea2d656a300ff4e1dc3e35ba8bf7a689cd49))
19
+ * update beta 'feat-3049-execution-modes-chat' into beta-release ([a545303](https://github.com/stack-spot/portal-commons/commit/a545303a95625b7a5ec19c06253ee388f8b1abe0))
20
+ * Update beta release ([#1653](https://github.com/stack-spot/portal-commons/issues/1653)) ([fe22548](https://github.com/stack-spot/portal-commons/commit/fe22548292f47a325c6e0eecb41f8b36ab8d5307))
21
+ * upgrades translation lib ([#1643](https://github.com/stack-spot/portal-commons/issues/1643)) ([05db11f](https://github.com/stack-spot/portal-commons/commit/05db11f399dd2c6e1815e74ee99f8b6c2e6fedef))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * Merge branch 'feat-3049-execution-modes-chat' into beta-release ([065c737](https://github.com/stack-spot/portal-commons/commit/065c7372f72da124a50bca9b53d06b1b937f4eae))
27
+ * Merge branch 'fix-trial-agents' into beta-release ([1239c2e](https://github.com/stack-spot/portal-commons/commit/1239c2e0f0082b1ad88c5168802275d657480262))
28
+ * Update swagger ([#1639](https://github.com/stack-spot/portal-commons/issues/1639)) ([d953972](https://github.com/stack-spot/portal-commons/commit/d953972405210de1a6b62e966d5a5a1fb5ea9b84))
29
+
30
+ ## [0.181.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.180.0-beta.1...portal-network-beta@v0.181.0-beta.1) (2025-10-03)
31
+ * Adds v2 repository search API integration ([#1513](https://github.com/stack-spot/portal-commons/issues/1513)) ([e156518](https://github.com/stack-spot/portal-commons/commit/e1565186b560e30d032128a96ba76b16cc3f8aa1))
32
+
33
+ ## [0.184.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.183.0...portal-network@v0.184.0) (2025-10-06)
34
+
35
+
36
+ ### Features
37
+
38
+ * add workspace ai dictionary error file ([#1668](https://github.com/stack-spot/portal-commons/issues/1668)) ([a437ea2](https://github.com/stack-spot/portal-commons/commit/a437ea2d656a300ff4e1dc3e35ba8bf7a689cd49))
39
+ * update beta 'feat-3049-execution-modes-chat' into beta-release ([a545303](https://github.com/stack-spot/portal-commons/commit/a545303a95625b7a5ec19c06253ee388f8b1abe0))
40
+ * add new request in worksapce manager ([#1674](https://github.com/stack-spot/portal-commons/issues/1674)) ([05bc8de](https://github.com/stack-spot/portal-commons/commit/05bc8dedb50041a0cdb9be074f4762dd9d6d9cd1))
41
+
42
+ ## [0.183.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.182.0...portal-network@v0.183.0) (2025-10-01)
43
+
44
+
45
+ ### Features
46
+
47
+ * add workspace ai dictionary error file ([#1668](https://github.com/stack-spot/portal-commons/issues/1668)) ([a437ea2](https://github.com/stack-spot/portal-commons/commit/a437ea2d656a300ff4e1dc3e35ba8bf7a689cd49))
48
+
49
+ ## [0.182.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.181.0...portal-network@v0.182.0) (2025-10-01)
50
+
51
+
52
+ ### Features
53
+
54
+ * Add get v3 agents, update swagger agent tools ([#1638](https://github.com/stack-spot/portal-commons/issues/1638)) ([f01b6f1](https://github.com/stack-spot/portal-commons/commit/f01b6f17950bb08331ed9fb289209594f82bbb7f))
55
+
56
+ ## [0.181.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.180.1...portal-network@v0.181.0) (2025-09-30)
57
+
58
+
59
+ ### Features
60
+
61
+ * 2288 association secrets ([#1476](https://github.com/stack-spot/portal-commons/issues/1476)) ([d14e33f](https://github.com/stack-spot/portal-commons/commit/d14e33f590d965ffacdcd997c30cc58d421148d1))
62
+ * Add analytics and SCM search endpoints support ([#1537](https://github.com/stack-spot/portal-commons/issues/1537)) ([e7f1389](https://github.com/stack-spot/portal-commons/commit/e7f1389a7c87a5455017f8af6653df79ff5aba2d))
63
+ * add analytics methods to code-shift client ([#1319](https://github.com/stack-spot/portal-commons/issues/1319)) ([634c612](https://github.com/stack-spot/portal-commons/commit/634c6129c20640a1ebd99fad767bdec42f1b2a95))
64
+ * add discover api (adp) ([#1510](https://github.com/stack-spot/portal-commons/issues/1510)) ([3690ee4](https://github.com/stack-spot/portal-commons/commit/3690ee44653f24e92e503fda2bd31d6b4e6b4e2d))
65
+ * added remote quick command endpoints ([#1440](https://github.com/stack-spot/portal-commons/issues/1440)) ([41f1c45](https://github.com/stack-spot/portal-commons/commit/41f1c457cd000509b2c20c2338f4bb9af2c50de7))
66
+ * Adds analytics details API ([#1435](https://github.com/stack-spot/portal-commons/issues/1435)) ([da1e3e1](https://github.com/stack-spot/portal-commons/commit/da1e3e1ef391f1d253e1abf4617ab6aee64999d3))
67
+ * exposed openapi request ([105155b](https://github.com/stack-spot/portal-commons/commit/105155b211e3ab0d12399c54ea32a40dc7c37405))
68
+ * exposed openapi request ([#1606](https://github.com/stack-spot/portal-commons/issues/1606)) ([e917526](https://github.com/stack-spot/portal-commons/commit/e91752611f5254ebb7e25ff1b654a6de45d87bed))
69
+ * Favorite agents on agent tools ([#1420](https://github.com/stack-spot/portal-commons/issues/1420)) ([8caeb02](https://github.com/stack-spot/portal-commons/commit/8caeb02e8102c17c56f20198530eb3e463629070))
70
+ * Feat 2141 field for QC end step ([#1542](https://github.com/stack-spot/portal-commons/issues/1542)) ([1fac22d](https://github.com/stack-spot/portal-commons/commit/1fac22d4236eb8a014df357622c4ba40348f658c))
71
+ * Feat list indexed files ks ([#1521](https://github.com/stack-spot/portal-commons/issues/1521)) ([993ff53](https://github.com/stack-spot/portal-commons/commit/993ff53969ed2a5099ea4d0743fe60e8cedea3ba))
72
+ * itau selft hosted ([#1527](https://github.com/stack-spot/portal-commons/issues/1527)) ([38abce7](https://github.com/stack-spot/portal-commons/commit/38abce78fcab84748924544d37aaa71e2149bd98))
73
+ * upgrades translation lib ([#1643](https://github.com/stack-spot/portal-commons/issues/1643)) ([05db11f](https://github.com/stack-spot/portal-commons/commit/05db11f399dd2c6e1815e74ee99f8b6c2e6fedef))
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * add error mapping in cloud platform ([#1522](https://github.com/stack-spot/portal-commons/issues/1522)) ([da78360](https://github.com/stack-spot/portal-commons/commit/da78360a42b273dd36465303b7bb77eb463cc849))
79
+ * agent tools buildStackSpotError ([#1478](https://github.com/stack-spot/portal-commons/issues/1478)) ([89455ae](https://github.com/stack-spot/portal-commons/commit/89455aeadf2b8b3090a807a755d1a4deaff9e26c))
80
+ * Change api call on message for agent toolkit details ([#1479](https://github.com/stack-spot/portal-commons/issues/1479)) ([023e57b](https://github.com/stack-spot/portal-commons/commit/023e57b3389fee9aac60fbde509823183e28ae70))
81
+ * create agent ([#1428](https://github.com/stack-spot/portal-commons/issues/1428)) ([d44173d](https://github.com/stack-spot/portal-commons/commit/d44173d9da98d9b3974dd594609b600fdb64aac1))
82
+ * endpoints itau ([#1584](https://github.com/stack-spot/portal-commons/issues/1584)) ([c40aecb](https://github.com/stack-spot/portal-commons/commit/c40aecbe724fbaa9a10fa7cfd3073de71ff1af51))
83
+ * interface FixedAddResourceToWorkspaceAi ([#1400](https://github.com/stack-spot/portal-commons/issues/1400)) ([ec455de](https://github.com/stack-spot/portal-commons/commit/ec455de188e04d23c3d1c5c98441a7c2ea7d87b6))
84
+ * List agents available to be added to other agents ([#1433](https://github.com/stack-spot/portal-commons/issues/1433)) ([2436a7e](https://github.com/stack-spot/portal-commons/commit/2436a7e7060bba950c8e6b91832c66db42482e71))
85
+ * tokens limit ([#1519](https://github.com/stack-spot/portal-commons/issues/1519)) ([b7fdd19](https://github.com/stack-spot/portal-commons/commit/b7fdd19b4051b123b33c0ef073c57780b856f29a))
86
+ * translation in cloud platform errors ([#1583](https://github.com/stack-spot/portal-commons/issues/1583)) ([3a47adf](https://github.com/stack-spot/portal-commons/commit/3a47adf33b90f21a421a76db80940e59bc07e1fc))
87
+ * update agent tools and add getSecretsByIds ([#1458](https://github.com/stack-spot/portal-commons/issues/1458)) ([eee24d0](https://github.com/stack-spot/portal-commons/commit/eee24d0ba9d8b92291156a65beeaf513b476a8db))
88
+ * Update code buddy ([#1431](https://github.com/stack-spot/portal-commons/issues/1431)) ([b283553](https://github.com/stack-spot/portal-commons/commit/b2835539279961f16fca56265cdd6f00ff3afc5c))
89
+ * update code buddy ([#1494](https://github.com/stack-spot/portal-commons/issues/1494)) ([a21d681](https://github.com/stack-spot/portal-commons/commit/a21d681600e055e9696e68818a626affa85c1850))
90
+ * update horizon api ([#1470](https://github.com/stack-spot/portal-commons/issues/1470)) ([9f99d84](https://github.com/stack-spot/portal-commons/commit/9f99d841e2d9ea1ec93d560264e70dc58c4a26cd))
91
+ * workspace input ([#1523](https://github.com/stack-spot/portal-commons/issues/1523)) ([5447804](https://github.com/stack-spot/portal-commons/commit/5447804dad162a7e78304c2079721403f3a5c0bb))
92
+
93
+ ## [0.180.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.179.0...portal-network@v0.180.0) (2025-09-24)
94
+
95
+
96
+ ### Features
97
+
98
+ * Add analytics and SCM search endpoints support ([#1537](https://github.com/stack-spot/portal-commons/issues/1537)) ([e7f1389](https://github.com/stack-spot/portal-commons/commit/e7f1389a7c87a5455017f8af6653df79ff5aba2d))
99
+
100
+ ## [0.179.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.178.0...portal-network@v0.179.0) (2025-09-23)
101
+
102
+
103
+ ### Features
104
+
105
+ * exposed openapi request ([#1606](https://github.com/stack-spot/portal-commons/issues/1606)) ([e917526](https://github.com/stack-spot/portal-commons/commit/e91752611f5254ebb7e25ff1b654a6de45d87bed))
106
+
107
+ ## [0.178.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.177.3...portal-network@v0.178.0) (2025-09-23)
108
+
109
+
110
+ ### Features
111
+
112
+ * 2288 association secrets ([#1476](https://github.com/stack-spot/portal-commons/issues/1476)) ([d14e33f](https://github.com/stack-spot/portal-commons/commit/d14e33f590d965ffacdcd997c30cc58d421148d1))
113
+ * add analytics methods to code-shift client ([#1319](https://github.com/stack-spot/portal-commons/issues/1319)) ([634c612](https://github.com/stack-spot/portal-commons/commit/634c6129c20640a1ebd99fad767bdec42f1b2a95))
114
+ * add discover api (adp) ([#1510](https://github.com/stack-spot/portal-commons/issues/1510)) ([3690ee4](https://github.com/stack-spot/portal-commons/commit/3690ee44653f24e92e503fda2bd31d6b4e6b4e2d))
115
+ * added remote quick command endpoints ([#1440](https://github.com/stack-spot/portal-commons/issues/1440)) ([41f1c45](https://github.com/stack-spot/portal-commons/commit/41f1c457cd000509b2c20c2338f4bb9af2c50de7))
116
+ * Adds analytics details API ([#1435](https://github.com/stack-spot/portal-commons/issues/1435)) ([da1e3e1](https://github.com/stack-spot/portal-commons/commit/da1e3e1ef391f1d253e1abf4617ab6aee64999d3))
117
+ * Favorite agents on agent tools ([#1420](https://github.com/stack-spot/portal-commons/issues/1420)) ([8caeb02](https://github.com/stack-spot/portal-commons/commit/8caeb02e8102c17c56f20198530eb3e463629070))
118
+ * Feat 2141 field for QC end step ([#1542](https://github.com/stack-spot/portal-commons/issues/1542)) ([1fac22d](https://github.com/stack-spot/portal-commons/commit/1fac22d4236eb8a014df357622c4ba40348f658c))
119
+ * Feat list indexed files ks ([#1521](https://github.com/stack-spot/portal-commons/issues/1521)) ([993ff53](https://github.com/stack-spot/portal-commons/commit/993ff53969ed2a5099ea4d0743fe60e8cedea3ba))
120
+ * itau selft hosted ([#1527](https://github.com/stack-spot/portal-commons/issues/1527)) ([38abce7](https://github.com/stack-spot/portal-commons/commit/38abce78fcab84748924544d37aaa71e2149bd98))
121
+
122
+
123
+ ### Bug Fixes
124
+
125
+ * add error mapping in cloud platform ([#1522](https://github.com/stack-spot/portal-commons/issues/1522)) ([da78360](https://github.com/stack-spot/portal-commons/commit/da78360a42b273dd36465303b7bb77eb463cc849))
126
+ * agent tools buildStackSpotError ([#1478](https://github.com/stack-spot/portal-commons/issues/1478)) ([89455ae](https://github.com/stack-spot/portal-commons/commit/89455aeadf2b8b3090a807a755d1a4deaff9e26c))
127
+ * Change api call on message for agent toolkit details ([#1479](https://github.com/stack-spot/portal-commons/issues/1479)) ([023e57b](https://github.com/stack-spot/portal-commons/commit/023e57b3389fee9aac60fbde509823183e28ae70))
128
+ * create agent ([#1428](https://github.com/stack-spot/portal-commons/issues/1428)) ([d44173d](https://github.com/stack-spot/portal-commons/commit/d44173d9da98d9b3974dd594609b600fdb64aac1))
129
+ * endpoints itau ([#1584](https://github.com/stack-spot/portal-commons/issues/1584)) ([c40aecb](https://github.com/stack-spot/portal-commons/commit/c40aecbe724fbaa9a10fa7cfd3073de71ff1af51))
130
+ * interface FixedAddResourceToWorkspaceAi ([#1400](https://github.com/stack-spot/portal-commons/issues/1400)) ([ec455de](https://github.com/stack-spot/portal-commons/commit/ec455de188e04d23c3d1c5c98441a7c2ea7d87b6))
131
+ * List agents available to be added to other agents ([#1433](https://github.com/stack-spot/portal-commons/issues/1433)) ([2436a7e](https://github.com/stack-spot/portal-commons/commit/2436a7e7060bba950c8e6b91832c66db42482e71))
132
+ * tokens limit ([#1519](https://github.com/stack-spot/portal-commons/issues/1519)) ([b7fdd19](https://github.com/stack-spot/portal-commons/commit/b7fdd19b4051b123b33c0ef073c57780b856f29a))
133
+ * update agent tools and add getSecretsByIds ([#1458](https://github.com/stack-spot/portal-commons/issues/1458)) ([eee24d0](https://github.com/stack-spot/portal-commons/commit/eee24d0ba9d8b92291156a65beeaf513b476a8db))
134
+ * Update code buddy ([#1431](https://github.com/stack-spot/portal-commons/issues/1431)) ([b283553](https://github.com/stack-spot/portal-commons/commit/b2835539279961f16fca56265cdd6f00ff3afc5c))
135
+ * update code buddy ([#1494](https://github.com/stack-spot/portal-commons/issues/1494)) ([a21d681](https://github.com/stack-spot/portal-commons/commit/a21d681600e055e9696e68818a626affa85c1850))
136
+ * update horizon api ([#1470](https://github.com/stack-spot/portal-commons/issues/1470)) ([9f99d84](https://github.com/stack-spot/portal-commons/commit/9f99d841e2d9ea1ec93d560264e70dc58c4a26cd))
137
+ * workspace input ([#1523](https://github.com/stack-spot/portal-commons/issues/1523)) ([5447804](https://github.com/stack-spot/portal-commons/commit/5447804dad162a7e78304c2079721403f3a5c0bb))
138
+
139
+ ## [0.177.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.177.1...portal-network@v0.177.2) (2025-09-22)
140
+
141
+
142
+ ### Bug Fixes
143
+
144
+ * endpoints itau ([#1584](https://github.com/stack-spot/portal-commons/issues/1584)) ([c40aecb](https://github.com/stack-spot/portal-commons/commit/c40aecbe724fbaa9a10fa7cfd3073de71ff1af51))
145
+
146
+ ## [0.177.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.177.0...portal-network@v0.177.1) (2025-09-19)
147
+
148
+
149
+ ### Features
150
+
151
+ * itau selft hosted ([#1527](https://github.com/stack-spot/portal-commons/issues/1527)) ([38abce7](https://github.com/stack-spot/portal-commons/commit/38abce78fcab84748924544d37aaa71e2149bd98))
152
+
153
+ ## [0.177.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.176.1...portal-network@v0.177.0) (2025-09-17)
154
+
155
+
156
+ ### Features
157
+
158
+ * Feat 2141 field for QC end step ([#1542](https://github.com/stack-spot/portal-commons/issues/1542)) ([1fac22d](https://github.com/stack-spot/portal-commons/commit/1fac22d4236eb8a014df357622c4ba40348f658c))
159
+
160
+ ## [0.176.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.176.0...portal-network@v0.176.1) (2025-09-16)
161
+
162
+
163
+ ### Bug Fixes
164
+
165
+ * workspace input ([#1523](https://github.com/stack-spot/portal-commons/issues/1523)) ([5447804](https://github.com/stack-spot/portal-commons/commit/5447804dad162a7e78304c2079721403f3a5c0bb))
166
+
167
+ ## [0.176.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.175.1...portal-network@v0.176.0) (2025-09-15)
168
+
169
+
170
+ ### Features
171
+
172
+ * Feat list indexed files ks ([#1521](https://github.com/stack-spot/portal-commons/issues/1521)) ([993ff53](https://github.com/stack-spot/portal-commons/commit/993ff53969ed2a5099ea4d0743fe60e8cedea3ba))
173
+
174
+
175
+ ### Bug Fixes
176
+
177
+ * add error mapping in cloud platform ([#1522](https://github.com/stack-spot/portal-commons/issues/1522)) ([da78360](https://github.com/stack-spot/portal-commons/commit/da78360a42b273dd36465303b7bb77eb463cc849))
178
+
179
+ ## [0.175.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.175.0...portal-network@v0.175.1) (2025-09-12)
180
+
181
+
182
+ ### Bug Fixes
183
+
184
+ * tokens limit ([#1519](https://github.com/stack-spot/portal-commons/issues/1519)) ([b7fdd19](https://github.com/stack-spot/portal-commons/commit/b7fdd19b4051b123b33c0ef073c57780b856f29a))
185
+
186
+ ## [0.175.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.174.0...portal-network@v0.175.0) (2025-09-04)
187
+
188
+
189
+ ### Features
190
+
191
+ * Adds analytics details API ([#1435](https://github.com/stack-spot/portal-commons/issues/1435)) ([da1e3e1](https://github.com/stack-spot/portal-commons/commit/da1e3e1ef391f1d253e1abf4617ab6aee64999d3))
192
+
193
+ ## [0.174.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.173.1...portal-network@v0.174.0) (2025-09-04)
194
+
195
+
196
+ ### Features
197
+
198
+ * add discover api (adp) ([#1510](https://github.com/stack-spot/portal-commons/issues/1510)) ([3690ee4](https://github.com/stack-spot/portal-commons/commit/3690ee44653f24e92e503fda2bd31d6b4e6b4e2d))
199
+
200
+ ## [0.173.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.173.0...portal-network@v0.173.1) (2025-08-28)
201
+
202
+
203
+ ### Bug Fixes
204
+
205
+ * agent tools buildStackSpotError ([#1478](https://github.com/stack-spot/portal-commons/issues/1478)) ([89455ae](https://github.com/stack-spot/portal-commons/commit/89455aeadf2b8b3090a807a755d1a4deaff9e26c))
206
+ * Change api call on message for agent toolkit details ([#1479](https://github.com/stack-spot/portal-commons/issues/1479)) ([023e57b](https://github.com/stack-spot/portal-commons/commit/023e57b3389fee9aac60fbde509823183e28ae70))
207
+ * update code buddy ([#1494](https://github.com/stack-spot/portal-commons/issues/1494)) ([a21d681](https://github.com/stack-spot/portal-commons/commit/a21d681600e055e9696e68818a626affa85c1850))
208
+
209
+ ## [0.173.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.172.2...portal-network@v0.173.0) (2025-08-26)
210
+
211
+
212
+ ### Features
213
+
214
+ * 2288 association secrets ([#1476](https://github.com/stack-spot/portal-commons/issues/1476)) ([d14e33f](https://github.com/stack-spot/portal-commons/commit/d14e33f590d965ffacdcd997c30cc58d421148d1))
215
+
216
+ ## [0.172.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.172.1...portal-network@v0.172.2) (2025-08-26)
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * update horizon api ([#1470](https://github.com/stack-spot/portal-commons/issues/1470)) ([9f99d84](https://github.com/stack-spot/portal-commons/commit/9f99d841e2d9ea1ec93d560264e70dc58c4a26cd))
222
+
223
+ ## [0.172.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.172.0...portal-network@v0.172.1) (2025-08-25)
224
+
225
+
226
+ ### Bug Fixes
227
+
228
+ * update agent tools and add getSecretsByIds ([#1458](https://github.com/stack-spot/portal-commons/issues/1458)) ([eee24d0](https://github.com/stack-spot/portal-commons/commit/eee24d0ba9d8b92291156a65beeaf513b476a8db))
229
+
230
+ ## [0.172.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.3...portal-network@v0.172.0) (2025-08-21)
231
+
232
+
233
+ ### Features
234
+
235
+ * added remote quick command endpoints ([#1440](https://github.com/stack-spot/portal-commons/issues/1440)) ([41f1c45](https://github.com/stack-spot/portal-commons/commit/41f1c457cd000509b2c20c2338f4bb9af2c50de7))
236
+
237
+ ## [0.171.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.2...portal-network@v0.171.3) (2025-08-20)
238
+
239
+
240
+ ### Bug Fixes
241
+
242
+ * List agents available to be added to other agents ([#1433](https://github.com/stack-spot/portal-commons/issues/1433)) ([2436a7e](https://github.com/stack-spot/portal-commons/commit/2436a7e7060bba950c8e6b91832c66db42482e71))
243
+
244
+ ## [0.171.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.1...portal-network@v0.171.2) (2025-08-19)
245
+
246
+
247
+ ### Bug Fixes
248
+
249
+ * Update code buddy ([#1431](https://github.com/stack-spot/portal-commons/issues/1431)) ([b283553](https://github.com/stack-spot/portal-commons/commit/b2835539279961f16fca56265cdd6f00ff3afc5c))
250
+
251
+ ## [0.171.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.171.0...portal-network@v0.171.1) (2025-08-19)
252
+
253
+
254
+ ### Bug Fixes
255
+
256
+ * create agent ([#1428](https://github.com/stack-spot/portal-commons/issues/1428)) ([d44173d](https://github.com/stack-spot/portal-commons/commit/d44173d9da98d9b3974dd594609b600fdb64aac1))
257
+
258
+ ## [0.171.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.170.0...portal-network@v0.171.0) (2025-08-18)
259
+
260
+
261
+ ### Features
262
+
263
+ * add analytics methods to code-shift client ([#1319](https://github.com/stack-spot/portal-commons/issues/1319)) ([634c612](https://github.com/stack-spot/portal-commons/commit/634c6129c20640a1ebd99fad767bdec42f1b2a95))
264
+
265
+ ## [0.170.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.169.1...portal-network@v0.170.0) (2025-08-15)
266
+
267
+
268
+ ### Features
269
+
270
+ * Favorite agents on agent tools ([#1420](https://github.com/stack-spot/portal-commons/issues/1420)) ([8caeb02](https://github.com/stack-spot/portal-commons/commit/8caeb02e8102c17c56f20198530eb3e463629070))
271
+
272
+ ## [0.169.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.169.0...portal-network@v0.169.1) (2025-08-14)
273
+
274
+
275
+ ### Bug Fixes
276
+
277
+ * interface FixedAddResourceToWorkspaceAi ([#1400](https://github.com/stack-spot/portal-commons/issues/1400)) ([ec455de](https://github.com/stack-spot/portal-commons/commit/ec455de188e04d23c3d1c5c98441a7c2ea7d87b6))
278
+
279
+ ## [0.169.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.168.0...portal-network@v0.169.0) (2025-08-13)
280
+
281
+
282
+ ### Features
283
+
284
+ * Change knowledge_source_config from knowledge_sources_config ([#1361](https://github.com/stack-spot/portal-commons/issues/1361)) ([0f52ff42eebe8b](https://github.com/stack-spot/portal-commons/pull/52ff42e51822f483ac4785320f49952a6081d64f))
285
+
286
+ * Upd account api ([#1373](https://github.com/stack-spot/portal-commons/issues/1373)) ([0febe8b](https://github.com/stack-spot/portal-commons/pull/0febe8bbde9d36c4a68300c16b641dc0ad70918b))
287
+
288
+
289
+ ## [0.168.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.167.2...portal-network@v0.168.0) (2025-08-07)
290
+
291
+
292
+ ### Features
293
+
294
+ * Upd agent tools api ([#1357](https://github.com/stack-spot/portal-commons/issues/1357)) ([572c68f](https://github.com/stack-spot/portal-commons/commit/572c68faaaea9ed78ca361a8864477c4d29adc95))
295
+
296
+ ## [0.167.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.167.1...portal-network@v0.167.2) (2025-08-07)
297
+
298
+
299
+ ### Bug Fixes
300
+
301
+ * Fix enum workspace ai ([#1355](https://github.com/stack-spot/portal-commons/issues/1355)) ([4a485be](https://github.com/stack-spot/portal-commons/commit/4a485be42b222364330453bcbaab1c27983b4d93))
302
+
303
+ ## [0.167.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.167.0...portal-network@v0.167.1) (2025-08-07)
304
+
305
+
306
+ ### Bug Fixes
307
+
308
+ * update horizon swagger ([#1352](https://github.com/stack-spot/portal-commons/issues/1352)) ([e6368f2](https://github.com/stack-spot/portal-commons/commit/e6368f2d1790de07d1b1b5b342aecd869fb067c6))
309
+
310
+ ## [0.167.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.166.0...portal-network@v0.167.0) (2025-08-05)
311
+
312
+
313
+ ### Features
314
+
315
+ * add new requests in cloud horizon ([#1337](https://github.com/stack-spot/portal-commons/issues/1337)) ([9e5fb25](https://github.com/stack-spot/portal-commons/commit/9e5fb2543b1be6b2a44bebb5f0b6eab0bb57f890))
316
+
317
+ ## [0.166.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.165.2...portal-network@v0.166.0) (2025-08-04)
318
+
319
+
320
+ ### Features
321
+
322
+ * Feat migration api agent ([#1322](https://github.com/stack-spot/portal-commons/issues/1322)) ([f72d5a0](https://github.com/stack-spot/portal-commons/commit/f72d5a0726f8785a0586f44406b237734e86c9d6))
323
+
324
+ ## [0.165.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.165.1...portal-network@v0.165.2) (2025-08-04)
325
+
326
+
327
+ ### Bug Fixes
328
+
329
+ * ai error message ([#1323](https://github.com/stack-spot/portal-commons/issues/1323)) ([6c46066](https://github.com/stack-spot/portal-commons/commit/6c46066d1f37a2c65bd227453ef45d8e7bdc09dc))
330
+
331
+ ## [0.165.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.165.0...portal-network@v0.165.1) (2025-07-30)
332
+
333
+
334
+ ### Bug Fixes
335
+
336
+ * Update swagger ([#1308](https://github.com/stack-spot/portal-commons/issues/1308)) ([0deae63](https://github.com/stack-spot/portal-commons/commit/0deae632864fc9485d81bb574eac14b8f625dbf5))
337
+
338
+ ## [0.165.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.164.0...portal-network@v0.165.0) (2025-07-30)
339
+
340
+
341
+ ### Features
342
+
343
+ * visibility filter to retrieve recently used agents ([da72243](https://github.com/stack-spot/portal-commons/commit/da72243f22b3c5dcbdc4dab73a10355e2fe59589))
344
+ * visibility filter to retrieve recently used agents ([#1306](https://github.com/stack-spot/portal-commons/issues/1306)) ([32ffc84](https://github.com/stack-spot/portal-commons/commit/32ffc84131164d0e7c4f2d15280be1cdab924dd6))
345
+
346
+ ## [0.164.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.163.0...portal-network@v0.164.0) (2025-07-28)
347
+
348
+
349
+ ### Features
350
+
351
+ * change default agent to stackspot flex ([#1298](https://github.com/stack-spot/portal-commons/issues/1298)) ([7ae7a42](https://github.com/stack-spot/portal-commons/commit/7ae7a42dea47727fef84a1c015a9f276e341eca6))
352
+
353
+ ## [0.163.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.3...portal-network@v0.163.0) (2025-07-28)
354
+
355
+
356
+ ### Features
357
+
358
+ * Refactors API types and adds workflow input query ([#1296](https://github.com/stack-spot/portal-commons/issues/1296)) ([046e102](https://github.com/stack-spot/portal-commons/commit/046e1021a1d5722beacd6a57d2e3a9b6fa037659))
359
+
360
+ ## [0.162.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.2...portal-network@v0.162.3) (2025-07-24)
361
+
362
+
363
+ ### Bug Fixes
364
+
365
+ * sendAgentMessage ([#1287](https://github.com/stack-spot/portal-commons/issues/1287)) ([0d4f1da](https://github.com/stack-spot/portal-commons/commit/0d4f1da6ed04ea5fb6b3ffabf518f9320b95218b))
366
+
367
+ ## [0.162.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.1...portal-network@v0.162.2) (2025-07-24)
368
+
369
+
370
+ ### Bug Fixes
371
+
372
+ * add sendAgentMessage ([#1285](https://github.com/stack-spot/portal-commons/issues/1285)) ([dc412d5](https://github.com/stack-spot/portal-commons/commit/dc412d55b701285c93a19f708639028a60e48b67))
373
+
374
+ ## [0.162.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.162.0...portal-network@v0.162.1) (2025-07-24)
375
+
376
+
377
+ ### Bug Fixes
378
+
379
+ * ensure getting correct agent default ([#1282](https://github.com/stack-spot/portal-commons/issues/1282)) ([c35495c](https://github.com/stack-spot/portal-commons/commit/c35495c72023064777aec25a8913e00100b877e1))
380
+
381
+ ## [0.162.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.161.0...portal-network@v0.162.0) (2025-07-23)
382
+
383
+
384
+ ### Features
385
+
386
+ * Adds support for suggested error messages in API response ([#1201](https://github.com/stack-spot/portal-commons/issues/1201)) ([9f99742](https://github.com/stack-spot/portal-commons/commit/9f99742c6dfe1b5d554ba4bbcf901e27aa8d5b05))
387
+
388
+ ## [0.161.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.160.1...portal-network@v0.161.0) (2025-07-22)
389
+
390
+
391
+ ### Features
392
+
393
+ * implement support for overriding the API config file for local testing ([#1251](https://github.com/stack-spot/portal-commons/issues/1251)) ([14b86fd](https://github.com/stack-spot/portal-commons/commit/14b86fd5f44fd2fe965d1190fd57ecb73137c8a5))
394
+ * improve API typing based on static JSON ([b87ad41](https://github.com/stack-spot/portal-commons/commit/b87ad41b8384397fd0724184a56aa0ca4a167d89))
395
+
396
+ ## [0.160.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.160.0...portal-network@v0.160.1) (2025-07-21)
397
+
398
+
399
+ ### Bug Fixes
400
+
401
+ * agent tools ([#1207](https://github.com/stack-spot/portal-commons/issues/1207)) ([2ebb9b5](https://github.com/stack-spot/portal-commons/commit/2ebb9b5b7c3c228cc29c288cd79b1efd4be04f89))
402
+
403
+ ## [0.160.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.159.0...portal-network@v0.160.0) (2025-07-21)
404
+
405
+
406
+ ### Features
407
+
408
+ * Upd version network ([#1266](https://github.com/stack-spot/portal-commons/issues/1266)) ([95d9b8c](https://github.com/stack-spot/portal-commons/commit/95d9b8c358d3cad4166658e974fef88be0ec503a))
409
+
410
+ ## [0.159.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.158.0...portal-network@v0.159.0) (2025-07-18)
411
+
412
+
413
+ ### Features
414
+
415
+ * Feat magic link for fido ([#1243](https://github.com/stack-spot/portal-commons/issues/1243)) ([01db6fc](https://github.com/stack-spot/portal-commons/commit/01db6fc16112e5d5718819f1bcb149442db98982))
416
+
417
+ ## [0.158.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.157.0...portal-network@v0.158.0) (2025-07-17)
418
+
419
+
420
+ ### Features
421
+
422
+ * workflow extensions ([#1234](https://github.com/stack-spot/portal-commons/issues/1234)) ([3b320ab](https://github.com/stack-spot/portal-commons/commit/3b320ab7ecff15c3af48625d1ba22396b36dcffc))
423
+
424
+ ## [0.157.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.156.2...portal-network@v0.157.0) (2025-07-16)
425
+
426
+
427
+ ### Features
428
+
429
+ * add query in workspace manager ([#1232](https://github.com/stack-spot/portal-commons/issues/1232)) ([17c617f](https://github.com/stack-spot/portal-commons/commit/17c617fbde32035f4d2ed677ebcec55b1463a3d2))
430
+
431
+ ## [0.156.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.156.1...portal-network@v0.156.2) (2025-07-15)
432
+
433
+
434
+ ### Bug Fixes
435
+
436
+ * update discover prd url ([#1218](https://github.com/stack-spot/portal-commons/issues/1218)) ([7b67606](https://github.com/stack-spot/portal-commons/commit/7b6760621ccbce2040387128d210c3a6ad7a36da))
437
+
438
+ ## [0.156.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.156.0...portal-network@v0.156.1) (2025-07-15)
439
+
440
+
441
+ ### Bug Fixes
442
+
443
+ * changes in discover api ([#1215](https://github.com/stack-spot/portal-commons/issues/1215)) ([cb95a55](https://github.com/stack-spot/portal-commons/commit/cb95a550824854e268cce2b2a7e8adaf1b360e83))
444
+
445
+ ## [0.156.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.155.0...portal-network@v0.156.0) (2025-07-11)
446
+
447
+
448
+ ### Features
449
+
450
+ * 1530 refactor ks ([#1187](https://github.com/stack-spot/portal-commons/issues/1187)) ([b133ec8](https://github.com/stack-spot/portal-commons/commit/b133ec8a047623adf4db9d839017a551fae80029))
451
+
452
+ ## [0.155.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.154.1...portal-network@v0.155.0) (2025-07-10)
453
+
454
+
455
+ ### Features
456
+
457
+ * Add calculate condition ([#1170](https://github.com/stack-spot/portal-commons/issues/1170)) ([9a4557f](https://github.com/stack-spot/portal-commons/commit/9a4557f1a5d810649f6222c5181cd8c1e53c3d54))
458
+
459
+ ## [0.154.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.154.0...portal-network@v0.154.1) (2025-07-10)
460
+
461
+
462
+ ### Bug Fixes
463
+
464
+ * Improve naming ([#1188](https://github.com/stack-spot/portal-commons/issues/1188)) ([5beeb04](https://github.com/stack-spot/portal-commons/commit/5beeb040a4adc22ba38c1dfeaf866105e4236b9d))
465
+
466
+ ## [0.154.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.153.0...portal-network@v0.154.0) (2025-07-10)
467
+
468
+
469
+ ### Features
470
+
471
+ * New account methods ([#1185](https://github.com/stack-spot/portal-commons/issues/1185)) ([2ada8ea](https://github.com/stack-spot/portal-commons/commit/2ada8eaaf1362bb90e43920d58d02be8cede93db))
472
+
473
+ ## [0.153.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.152.0...portal-network@v0.153.0) (2025-07-10)
474
+
475
+
476
+ ### Features
477
+
478
+ * add new requests in data integration api ([#1180](https://github.com/stack-spot/portal-commons/issues/1180)) ([c72662b](https://github.com/stack-spot/portal-commons/commit/c72662bef9f71a6fa166838e669d79987428b026))
479
+
480
+ ## [0.152.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.151.0...portal-network@v0.152.0) (2025-07-08)
481
+
482
+
483
+ ### Features
484
+
485
+ * add new requests in workspace ai ([#1177](https://github.com/stack-spot/portal-commons/issues/1177)) ([02a1c3b](https://github.com/stack-spot/portal-commons/commit/02a1c3bec4dbbe012a558159dcc6df8137396ba9))
486
+
487
+ ## [0.151.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.150.2...portal-network@v0.151.0) (2025-07-07)
488
+
489
+
490
+ ### Features
491
+
492
+ * toolkit fork ([#1171](https://github.com/stack-spot/portal-commons/issues/1171)) ([73b8c4a](https://github.com/stack-spot/portal-commons/commit/73b8c4a382885fb396bc1d05e0c6bce69c1dbff0))
493
+
494
+ ## [0.150.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.150.1...portal-network@v0.150.2) (2025-07-03)
495
+
496
+
497
+ ### Bug Fixes
498
+
499
+ * map cnt workflow errors ([#1165](https://github.com/stack-spot/portal-commons/issues/1165)) ([4409958](https://github.com/stack-spot/portal-commons/commit/4409958fbc4e7448a128f61ccdb9dcc8fc274c30))
500
+
501
+ ## [0.150.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.150.0...portal-network@v0.150.1) (2025-07-03)
502
+
503
+
504
+ ### Features
505
+
506
+ * add workflow error message ([#1150](https://github.com/stack-spot/portal-commons/issues/1150)) ([f6e71f8](https://github.com/stack-spot/portal-commons/commit/f6e71f825a6d97c9ef42673d1589d99cb49d2426))
507
+
508
+ ## [0.150.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.149.0...portal-network@v0.150.0) (2025-07-02)
509
+
510
+
511
+ ### Features
512
+
513
+ * more agent tools requests ([#1124](https://github.com/stack-spot/portal-commons/issues/1124)) ([1a0943d](https://github.com/stack-spot/portal-commons/commit/1a0943d192dc6b34fc67600e8d182f55fc739f0f))
514
+
515
+ ## [0.149.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.148.0...portal-network@v0.149.0) (2025-07-02)
516
+
517
+
518
+ ### Features
519
+
520
+ * add query history discover ([#1122](https://github.com/stack-spot/portal-commons/issues/1122)) ([6edda56](https://github.com/stack-spot/portal-commons/commit/6edda56d1a2c3591acc341b29661c7ec587baa49))
521
+
522
+ ## [0.148.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.147.0...portal-network@v0.148.0) (2025-07-01)
523
+
524
+
525
+ ### Features
526
+
527
+ * Add filters ([#1120](https://github.com/stack-spot/portal-commons/issues/1120)) ([67199a2](https://github.com/stack-spot/portal-commons/commit/67199a2ef5aff48c70fef19db749d737648bc614))
528
+
529
+ ## [0.147.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.146.2...portal-network@v0.147.0) (2025-06-30)
530
+
531
+
532
+ ### Features
533
+
534
+ * 2464 agent tools ([#1118](https://github.com/stack-spot/portal-commons/issues/1118)) ([6e9ebb7](https://github.com/stack-spot/portal-commons/commit/6e9ebb7729d4173e2f97cbd98129cf55fae266a2))
535
+
536
+ ## [0.146.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.146.1...portal-network@v0.146.2) (2025-06-26)
537
+
538
+
539
+ ### Bug Fixes
540
+
541
+ * update code error message ([#1116](https://github.com/stack-spot/portal-commons/issues/1116)) ([3f07955](https://github.com/stack-spot/portal-commons/commit/3f079559ea9a4fac5f58f441e64acc81137e64bb))
542
+
543
+ ## [0.146.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.146.0...portal-network@v0.146.1) (2025-06-26)
544
+
545
+
546
+ ### Bug Fixes
547
+
548
+ * add new code errors in cloud platform api ([#1112](https://github.com/stack-spot/portal-commons/issues/1112)) ([93fae98](https://github.com/stack-spot/portal-commons/commit/93fae98b3c2abcc1b9fbce37c203be4a1f90ec9e))
549
+
550
+ ## [0.146.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.145.1...portal-network@v0.146.0) (2025-06-25)
551
+
552
+
553
+ ### Features
554
+
555
+ * 2720 badge official ([#1110](https://github.com/stack-spot/portal-commons/issues/1110)) ([a025848](https://github.com/stack-spot/portal-commons/commit/a025848b1bda06215b970288ee55337138f222f0))
556
+
557
+ ## [0.145.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.145.0...portal-network@v0.145.1) (2025-06-24)
558
+
559
+
560
+ ### Bug Fixes
561
+
562
+ * update cloud platform ([#1108](https://github.com/stack-spot/portal-commons/issues/1108)) ([e4ced3c](https://github.com/stack-spot/portal-commons/commit/e4ced3c796170ea9a307fa6ede6d312885fd39bd))
563
+
564
+ ## [0.145.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.144.0...portal-network@v0.145.0) (2025-06-24)
565
+
566
+
567
+ ### Features
568
+
569
+ * add scf dictionary ([#1106](https://github.com/stack-spot/portal-commons/issues/1106)) ([8c7e6cd](https://github.com/stack-spot/portal-commons/commit/8c7e6cd4e060b3c054cfda745ba2e07eade2f8c6))
570
+
571
+ ## [0.144.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.4...portal-network@v0.144.0) (2025-06-24)
572
+
573
+
574
+ ### Features
575
+
576
+ * lib add custom workflow version ([1b1780a](https://github.com/stack-spot/portal-commons/commit/1b1780a2f5ffe20aa388bb56f8d578a2a0e9989a))
577
+
578
+ ## [0.143.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.3...portal-network@v0.143.4) (2025-06-20)
579
+
580
+
581
+ ### Bug Fixes
582
+
583
+ * 1368 mandate import type ([#1101](https://github.com/stack-spot/portal-commons/issues/1101)) ([0c244b5](https://github.com/stack-spot/portal-commons/commit/0c244b5f1ada94eb4b8f5c785c0f4b9da8a2a39f))
584
+
585
+ ## [0.143.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.2...portal-network@v0.143.3) (2025-06-18)
586
+
587
+
588
+ ### Bug Fixes
589
+
590
+ * QC fetch type ([#1099](https://github.com/stack-spot/portal-commons/issues/1099)) ([42e6880](https://github.com/stack-spot/portal-commons/commit/42e68802f173d64cd0d20e3ebceaf679707db945))
591
+
592
+ ## [0.143.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.1...portal-network@v0.143.2) (2025-06-18)
593
+
594
+
595
+ ### Bug Fixes
596
+
597
+ * Adds support for tags and improves API flexibility ([#1097](https://github.com/stack-spot/portal-commons/issues/1097)) ([73f799d](https://github.com/stack-spot/portal-commons/commit/73f799d1e7d97e6d37d4b450dcdebecc18adaac2))
598
+
599
+ ## [0.143.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.143.0...portal-network@v0.143.1) (2025-06-17)
600
+
601
+
602
+ ### Bug Fixes
603
+
604
+ * Change fetch_result qc to manual ([#1092](https://github.com/stack-spot/portal-commons/issues/1092)) ([adb09fd](https://github.com/stack-spot/portal-commons/commit/adb09fdc6d9488ba7da450e199ef495c8a54ef3f))
605
+
606
+ ## [0.143.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.142.1...portal-network@v0.143.0) (2025-06-17)
607
+
608
+
609
+ ### Features
610
+
611
+ * Update Code buddy swagger ([#1088](https://github.com/stack-spot/portal-commons/issues/1088)) ([f594a8f](https://github.com/stack-spot/portal-commons/commit/f594a8f56af4a437df83a0ef8ed860d91881ceb4))
612
+
613
+ ## [0.142.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.142.0...portal-network@v0.142.1) (2025-06-16)
614
+
615
+
616
+ ### Bug Fixes
617
+
618
+ * Adds support for module type and updates request properties ([#1076](https://github.com/stack-spot/portal-commons/issues/1076)) ([26e2e52](https://github.com/stack-spot/portal-commons/commit/26e2e5241f0db75d02970e484be505ee27c430b3))
619
+
620
+ ## [0.142.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.141.1...portal-network@v0.142.0) (2025-06-12)
621
+
622
+
623
+ ### Features
624
+
625
+ * add new endpoint to save knowledge objects ([#1082](https://github.com/stack-spot/portal-commons/issues/1082)) ([59610ef](https://github.com/stack-spot/portal-commons/commit/59610efb043195e57a86ea22bb493a0dc973164e))
626
+ * Update inference and add read file ([#1083](https://github.com/stack-spot/portal-commons/issues/1083)) ([c4233b7](https://github.com/stack-spot/portal-commons/commit/c4233b766bb057bb72b94417d9c94b3fff18c099))
627
+
628
+ ## [0.141.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.141.0...portal-network@v0.141.1) (2025-06-12)
629
+
630
+
631
+ ### Bug Fixes
632
+
633
+ * save ks splitted method ([#1077](https://github.com/stack-spot/portal-commons/issues/1077)) ([d32c70e](https://github.com/stack-spot/portal-commons/commit/d32c70e6790a56ff2236dd40feaa6f2e5dc4f40d))
634
+
635
+ ## [0.141.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.140.0...portal-network@v0.141.0) (2025-06-11)
636
+
637
+
638
+ ### Features
639
+
640
+ * 2321 feature flag ([#1070](https://github.com/stack-spot/portal-commons/issues/1070)) ([7579759](https://github.com/stack-spot/portal-commons/commit/7579759b764440539d1471d7e5638b806bbf9ec2))
641
+ * 987 audience ([#1073](https://github.com/stack-spot/portal-commons/issues/1073)) ([87fc6e6](https://github.com/stack-spot/portal-commons/commit/87fc6e64fd4c20c8535442cbdc281f21f4ba7b24))
642
+ * program group support to network client ([#1068](https://github.com/stack-spot/portal-commons/issues/1068)) ([5faf994](https://github.com/stack-spot/portal-commons/commit/5faf994fa8a6b2e8fc06030f60a80386e19dd7bc))
643
+
644
+ ## [0.140.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.139.0...portal-network@v0.140.0) (2025-06-11)
645
+
646
+
647
+ ### Features
648
+
649
+ * add new queries discover ([#1069](https://github.com/stack-spot/portal-commons/issues/1069)) ([7ad0b01](https://github.com/stack-spot/portal-commons/commit/7ad0b019043eaf15958c5077cf1d953af418e363))
650
+
651
+ ## [0.139.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.138.1...portal-network@v0.139.0) (2025-06-10)
652
+
653
+
654
+ ### Features
655
+
656
+ * file upload in data-integration ([#1065](https://github.com/stack-spot/portal-commons/issues/1065)) ([3af5f31](https://github.com/stack-spot/portal-commons/commit/3af5f314bbbf4bcbd2a22447fd19284dd8b114d4))
657
+
658
+ ## [0.138.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.138.0...portal-network@v0.138.1) (2025-06-10)
659
+
660
+
661
+ ### Bug Fixes
662
+
663
+ * update payload horizon ([#1063](https://github.com/stack-spot/portal-commons/issues/1063)) ([b5a7583](https://github.com/stack-spot/portal-commons/commit/b5a7583e59430aaf144201c7d87b306a4956690c))
664
+
665
+ ## [0.138.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.137.0...portal-network@v0.138.0) (2025-06-10)
666
+
667
+
668
+ ### Features
669
+
670
+ * lib network external link service ([#1061](https://github.com/stack-spot/portal-commons/issues/1061)) ([b397698](https://github.com/stack-spot/portal-commons/commit/b397698120ff566aff846192ca876e5985728542))
671
+
672
+ ## [0.137.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.5...portal-network@v0.137.0) (2025-06-09)
673
+
674
+
675
+ ### Features
676
+
677
+ * code shift integrations ([#1059](https://github.com/stack-spot/portal-commons/issues/1059)) ([403349d](https://github.com/stack-spot/portal-commons/commit/403349d741372ee6e5912ed70511e140e386e2cc))
678
+
679
+ ## [0.136.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.4...portal-network@v0.136.5) (2025-06-06)
680
+
681
+
682
+ ### Bug Fixes
683
+
684
+ * map code shift errors ([#1056](https://github.com/stack-spot/portal-commons/issues/1056)) ([bc1b4ba](https://github.com/stack-spot/portal-commons/commit/bc1b4ba721335ceb636fd1eea4e092e643e24bc5))
685
+
686
+ ## [0.136.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.3...portal-network@v0.136.4) (2025-06-05)
687
+
688
+
689
+ ### Bug Fixes
690
+
691
+ * update swagger discover ([#1054](https://github.com/stack-spot/portal-commons/issues/1054)) ([7dc3f72](https://github.com/stack-spot/portal-commons/commit/7dc3f7277593d745bb30668ecc85c61b76d027aa))
692
+
693
+ ## [0.136.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.2...portal-network@v0.136.3) (2025-06-05)
694
+
695
+
696
+ ### Bug Fixes
697
+
698
+ * prd url in discover api ([#1051](https://github.com/stack-spot/portal-commons/issues/1051)) ([10cb9cc](https://github.com/stack-spot/portal-commons/commit/10cb9cca58918cc6519aabc632d5d35684470d7f))
699
+ * Update code shift ([#1053](https://github.com/stack-spot/portal-commons/issues/1053)) ([f500e4e](https://github.com/stack-spot/portal-commons/commit/f500e4e5f51cf926a19ee9e2ec76d7adee0f9188))
700
+
701
+ ## [0.136.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.1...portal-network@v0.136.2) (2025-06-04)
702
+
703
+
704
+ ### Bug Fixes
705
+
706
+ * update attach query ([#1048](https://github.com/stack-spot/portal-commons/issues/1048)) ([bf25592](https://github.com/stack-spot/portal-commons/commit/bf255929dc2fa255833f1c4353b20431b4abd84d))
707
+
708
+ ## [0.136.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.136.0...portal-network@v0.136.1) (2025-06-04)
709
+
710
+
711
+ ### Bug Fixes
712
+
713
+ * Update account ([#1046](https://github.com/stack-spot/portal-commons/issues/1046)) ([02d7dad](https://github.com/stack-spot/portal-commons/commit/02d7dad516cf94595f321e1dde8154fbced469f1))
714
+
715
+ ## [0.136.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.135.0...portal-network@v0.136.0) (2025-06-04)
716
+
717
+
718
+ ### Features
719
+
720
+ * Multi llm ([#1042](https://github.com/stack-spot/portal-commons/issues/1042)) ([8ff4c12](https://github.com/stack-spot/portal-commons/commit/8ff4c1281ec7b7d02f176be61afc6ebe36c6a77e))
721
+
722
+ ## [0.135.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.134.1...portal-network@v0.135.0) (2025-06-04)
723
+
724
+
725
+ ### Features
726
+
727
+ * adds support for retrying workflow executions and fetching attempts ([18e877d](https://github.com/stack-spot/portal-commons/commit/18e877d8c94e346520f6e7021738baf6feabf030))
728
+
729
+ ## [0.134.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.134.0...portal-network@v0.134.1) (2025-06-03)
730
+
731
+
732
+ ### Bug Fixes
733
+
734
+ * update cloud horizon types ([#1039](https://github.com/stack-spot/portal-commons/issues/1039)) ([c27964f](https://github.com/stack-spot/portal-commons/commit/c27964f5c1b6ed84f83aa954ac92bbc42deec505))
735
+
736
+ ## [0.134.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.3...portal-network@v0.134.0) (2025-06-02)
737
+
738
+
739
+ ### Features
740
+
741
+ * 2685 mao ([#1036](https://github.com/stack-spot/portal-commons/issues/1036)) ([ccac734](https://github.com/stack-spot/portal-commons/commit/ccac734885cd86ba55c5021bec1b6a4376de454b))
742
+
743
+ ## [0.133.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.2...portal-network@v0.133.3) (2025-05-30)
744
+
745
+
746
+ ### Bug Fixes
747
+
748
+ * correction request method ([0d9a066](https://github.com/stack-spot/portal-commons/commit/0d9a0663efca4da5720c16eed8ae66de10ea4831))
749
+ * correction request method ([#1034](https://github.com/stack-spot/portal-commons/issues/1034)) ([57ef44f](https://github.com/stack-spot/portal-commons/commit/57ef44fc95f9687807f2e13d76ac9634913bb3dd))
750
+
751
+ ## [0.133.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.1...portal-network@v0.133.2) (2025-05-30)
752
+
753
+
754
+ ### Bug Fixes
755
+
756
+ * features flag method ([#1031](https://github.com/stack-spot/portal-commons/issues/1031)) ([2e03653](https://github.com/stack-spot/portal-commons/commit/2e03653a00792041e67e94cd609e8cc73aa52ff0))
757
+
758
+ ## [0.133.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.133.0...portal-network@v0.133.1) (2025-05-29)
759
+
760
+
761
+ ### Bug Fixes
762
+
763
+ * correction name and url of super ([#1029](https://github.com/stack-spot/portal-commons/issues/1029)) ([ba0fbf3](https://github.com/stack-spot/portal-commons/commit/ba0fbf3cfe3b5020dbbb9faf4f19c8faa09f892f))
764
+
765
+ ## [0.133.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.132.0...portal-network@v0.133.0) (2025-05-29)
766
+
767
+
768
+ ### Features
769
+
770
+ * 2667 freemium ([#1027](https://github.com/stack-spot/portal-commons/issues/1027)) ([a6596b6](https://github.com/stack-spot/portal-commons/commit/a6596b6322239bb98933665e10f331e73ab89644))
771
+
772
+ ## [0.132.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.131.0...portal-network@v0.132.0) (2025-05-29)
773
+
774
+
775
+ ### Features
776
+
777
+ * add create document query ([#1025](https://github.com/stack-spot/portal-commons/issues/1025)) ([1b670bf](https://github.com/stack-spot/portal-commons/commit/1b670bf7febd1c10e7780ae0b97f8bbbf128067e))
778
+
779
+ ## [0.131.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.130.0...portal-network@v0.131.0) (2025-05-28)
780
+
781
+
782
+ ### Features
783
+
784
+ * add hypotheses integration ([#1023](https://github.com/stack-spot/portal-commons/issues/1023)) ([ec5b00a](https://github.com/stack-spot/portal-commons/commit/ec5b00a32746b4d23f8c81b6e04eeeb72a8c8eae))
785
+
786
+ ## [0.130.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.129.0...portal-network@v0.130.0) (2025-05-27)
787
+
788
+
789
+ ### Features
790
+
791
+ * 1376 import context in account ([#1020](https://github.com/stack-spot/portal-commons/issues/1020)) ([1c0aa38](https://github.com/stack-spot/portal-commons/commit/1c0aa388d4ea1283729baaec2b2ed2709432a855))
792
+
793
+ ## [0.129.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.128.1...portal-network@v0.129.0) (2025-05-27)
794
+
795
+
796
+ ### Features
797
+
798
+ * 1366 Update client of workspace for import context ([#1018](https://github.com/stack-spot/portal-commons/issues/1018)) ([cb0f59f](https://github.com/stack-spot/portal-commons/commit/cb0f59f80b88819c7d01f0218b6fe1672221846c))
799
+
800
+ ## [0.128.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.128.0...portal-network@v0.128.1) (2025-05-23)
801
+
802
+
803
+ ### Bug Fixes
804
+
805
+ * Support stream qc ([#1016](https://github.com/stack-spot/portal-commons/issues/1016)) ([958203e](https://github.com/stack-spot/portal-commons/commit/958203e7607085cae79a5a974e2b49eaaff84dc3))
806
+
807
+ ## [0.128.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.127.1...portal-network@v0.128.0) (2025-05-23)
808
+
809
+
810
+ ### Features
811
+
812
+ * add new request cloud horizon ([#1014](https://github.com/stack-spot/portal-commons/issues/1014)) ([c70bea8](https://github.com/stack-spot/portal-commons/commit/c70bea888b3bd6fde312fb31e1943d6e3ac851a1))
813
+
814
+ ## [0.127.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.127.0...portal-network@v0.127.1) (2025-05-22)
815
+
816
+
817
+ ### Bug Fixes
818
+
819
+ * accessibility error and add update agent ([#1009](https://github.com/stack-spot/portal-commons/issues/1009)) ([1155a59](https://github.com/stack-spot/portal-commons/commit/1155a59d4a155098a303d7f58ac5e19acac90e5c))
820
+
821
+ ## [0.127.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.126.0...portal-network@v0.127.0) (2025-05-22)
822
+
823
+
824
+ ### Features
825
+
826
+ * Upd Workspace AI ([#1005](https://github.com/stack-spot/portal-commons/issues/1005)) ([d23713f](https://github.com/stack-spot/portal-commons/commit/d23713fd61ec576a0917fa801af79691d28daa8b))
827
+
828
+ ## [0.126.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.125.0...portal-network@v0.126.0) (2025-05-21)
829
+
830
+
831
+ ### Features
832
+
833
+ * Expose update QC ([#1003](https://github.com/stack-spot/portal-commons/issues/1003)) ([3423298](https://github.com/stack-spot/portal-commons/commit/3423298eab947b30e58715b9c31c73b837462369))
834
+
835
+ ## [0.125.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.124.1...portal-network@v0.125.0) (2025-05-16)
836
+
837
+
838
+ ### Features
839
+
840
+ * add api management ([#999](https://github.com/stack-spot/portal-commons/issues/999)) ([ea62a0f](https://github.com/stack-spot/portal-commons/commit/ea62a0fec29a9a37ab833e5f54b8e3a843062a78))
841
+
842
+ ## [0.124.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.124.0...portal-network@v0.124.1) (2025-05-15)
843
+
844
+
845
+ ### Bug Fixes
846
+
847
+ * update workspace ai client ([#1000](https://github.com/stack-spot/portal-commons/issues/1000)) ([1fd07a9](https://github.com/stack-spot/portal-commons/commit/1fd07a9fa1d4b517a462f8ed01edbb1cd4980d0c))
848
+
849
+ ## [0.124.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.123.2...portal-network@v0.124.0) (2025-05-12)
850
+
851
+
852
+ ### Features
853
+
854
+ * add query to get allAgents, agentById and agentDefault ([#947](https://github.com/stack-spot/portal-commons/issues/947)) ([6e5cda5](https://github.com/stack-spot/portal-commons/commit/6e5cda52a8c1e67493bd071e25fe2e2afc8953c4))
855
+
856
+ ## [0.123.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.123.1...portal-network@v0.123.2) (2025-05-08)
857
+
858
+
859
+ ### Bug Fixes
860
+
861
+ * update cloud platform swagger ([#992](https://github.com/stack-spot/portal-commons/issues/992)) ([5bc20e6](https://github.com/stack-spot/portal-commons/commit/5bc20e6cc3c977a2980572864987effdabf4d0bf))
862
+
863
+ ## [0.123.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.123.0...portal-network@v0.123.1) (2025-05-07)
864
+
865
+
866
+ ### Bug Fixes
867
+
868
+ * scm list ([6a18301](https://github.com/stack-spot/portal-commons/commit/6a183017dd74936972b9bf65c53e68fa1373b283))
869
+
870
+ ## [0.123.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.122.1...portal-network@v0.123.0) (2025-05-07)
871
+
872
+
873
+ ### Features
874
+
875
+ * notification audience ([5b6636e](https://github.com/stack-spot/portal-commons/commit/5b6636e52488dd32fece6b2b09d5410e16eea5c6))
876
+
877
+ ## [0.122.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.122.0...portal-network@v0.122.1) (2025-05-07)
878
+
879
+
880
+ ### Bug Fixes
881
+
882
+ * add news endpoint in content client ([#985](https://github.com/stack-spot/portal-commons/issues/985)) ([e1ae1ab](https://github.com/stack-spot/portal-commons/commit/e1ae1abe7ba081c05e3c549a26f831e60f8b9cff))
883
+
884
+ ## [0.122.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.121.1...portal-network@v0.122.0) (2025-05-05)
885
+
886
+
887
+ ### Features
888
+
889
+ * Feat 1376 workflow context requests ([#980](https://github.com/stack-spot/portal-commons/issues/980)) ([3470b83](https://github.com/stack-spot/portal-commons/commit/3470b83017b7ae33ff5aba1a74946d7c767c33e3))
890
+
891
+ ## [0.121.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.121.0...portal-network@v0.121.1) (2025-04-30)
892
+
893
+
894
+ ### Bug Fixes
895
+
896
+ * update insights ([#978](https://github.com/stack-spot/portal-commons/issues/978)) ([e0a0f5b](https://github.com/stack-spot/portal-commons/commit/e0a0f5b3b089741ac7c50feaa061232a9192285c))
897
+
898
+ ## [0.121.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.120.0...portal-network@v0.121.0) (2025-04-30)
899
+
900
+
901
+ ### Features
902
+
903
+ * campaign code services ([#975](https://github.com/stack-spot/portal-commons/issues/975)) ([07f29ce](https://github.com/stack-spot/portal-commons/commit/07f29ceb05f65b2f8525bf6dcc4d21d373e71e25))
904
+
905
+ ## [0.120.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.119.1...portal-network@v0.120.0) (2025-04-30)
906
+
907
+
908
+ ### Features
909
+
910
+ * Add search repo flow ([#973](https://github.com/stack-spot/portal-commons/issues/973)) ([fe6f0b0](https://github.com/stack-spot/portal-commons/commit/fe6f0b0fb00dfb6f9877ce6efdc5870a1ad6f14c))
911
+
912
+ ## [0.119.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.119.0...portal-network@v0.119.1) (2025-04-30)
913
+
914
+
915
+ ### Bug Fixes
916
+
917
+ * up workspace ai swagger ([#971](https://github.com/stack-spot/portal-commons/issues/971)) ([ab3c4b3](https://github.com/stack-spot/portal-commons/commit/ab3c4b33ae2a00927549b816cee1bed08ec283d3))
918
+
919
+ ## [0.119.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.118.1...portal-network@v0.119.0) (2025-04-29)
920
+
921
+
922
+ ### Features
923
+
924
+ * Add code shift settings endpoints ([#968](https://github.com/stack-spot/portal-commons/issues/968)) ([f03263f](https://github.com/stack-spot/portal-commons/commit/f03263f757d3c42c43c316eb1059e3a7b596f4ec))
925
+
926
+
927
+ ### Bug Fixes
928
+
929
+ * add endpoint to get workspaces and fix manual query ([#970](https://github.com/stack-spot/portal-commons/issues/970)) ([6a99193](https://github.com/stack-spot/portal-commons/commit/6a99193c33b7507dca4603a665b09a00bc1561cf))
930
+
931
+ ## [0.118.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.118.0...portal-network@v0.118.1) (2025-04-29)
932
+
933
+
934
+ ### Bug Fixes
935
+
936
+ * add endpoint createTrialAgents ([#966](https://github.com/stack-spot/portal-commons/issues/966)) ([023c9e5](https://github.com/stack-spot/portal-commons/commit/023c9e52a064fb20bd5843fdc9f90f62a0c7eb99))
937
+
938
+ ## [0.118.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.117.0...portal-network@v0.118.0) (2025-04-28)
939
+
940
+
941
+ ### Features
942
+
943
+ * 1503 message slug ([#954](https://github.com/stack-spot/portal-commons/issues/954)) ([775c700](https://github.com/stack-spot/portal-commons/commit/775c70072f8750d8ed69a4c136cd402032e38b3d))
944
+ * add component form ([fbc608d](https://github.com/stack-spot/portal-commons/commit/fbc608d0b2aaa8f99fc154a6a79141984c93daf3))
945
+ * Update code shift client ([#965](https://github.com/stack-spot/portal-commons/issues/965)) ([3ecd1bd](https://github.com/stack-spot/portal-commons/commit/3ecd1bdc78ff229da236f2f7cea3145712bf2cff))
946
+
947
+ ## [0.117.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.4...portal-network@v0.117.0) (2025-04-22)
948
+
949
+
950
+ ### Features
951
+
952
+ * adds new types and updates existing types in the account API ([#933](https://github.com/stack-spot/portal-commons/issues/933)) ([264bcc2](https://github.com/stack-spot/portal-commons/commit/264bcc2d76771d71767d4f9615d42ccadfd85200))
953
+
954
+ ## [0.116.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.3...portal-network@v0.116.4) (2025-04-17)
955
+
956
+
957
+ ### Bug Fixes
958
+
959
+ * Update account ([#942](https://github.com/stack-spot/portal-commons/issues/942)) ([7f019ac](https://github.com/stack-spot/portal-commons/commit/7f019acac3ea6e38631b6dafedcfd21ec9539b62))
960
+
961
+ ## [0.116.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.2...portal-network@v0.116.3) (2025-04-16)
962
+
963
+
964
+ ### Bug Fixes
965
+
966
+ * add correct env of production inference api ([#936](https://github.com/stack-spot/portal-commons/issues/936)) ([cebb66d](https://github.com/stack-spot/portal-commons/commit/cebb66d20c2d5ff87b1878339aad327bc66581e3))
967
+
968
+ ## [0.116.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.1...portal-network@v0.116.2) (2025-04-15)
969
+
970
+
971
+ ### Bug Fixes
972
+
973
+ * update data integration prd url ([7575a72](https://github.com/stack-spot/portal-commons/commit/7575a72197ed1d8711517d14f42d7d503fb7e419))
974
+
975
+ ## [0.116.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.116.0...portal-network@v0.116.1) (2025-04-14)
976
+
977
+
978
+ ### Bug Fixes
979
+
980
+ * update swagger data integration ([0cfa752](https://github.com/stack-spot/portal-commons/commit/0cfa75226799e60993c1fdab4c1640f31da9b6d2))
981
+
982
+ ## [0.116.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.115.0...portal-network@v0.116.0) (2025-04-14)
983
+
984
+
985
+ ### Features
986
+
987
+ * add new request in data integration ([6ba0351](https://github.com/stack-spot/portal-commons/commit/6ba03515b0c347a326681edb0f75c75c2437a441))
988
+
989
+ ## [0.115.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.114.0...portal-network@v0.115.0) (2025-04-14)
990
+
991
+
992
+ ### Features
993
+
994
+ * Feat upd favorites ([#912](https://github.com/stack-spot/portal-commons/issues/912)) ([d76fcd4](https://github.com/stack-spot/portal-commons/commit/d76fcd457e8f111a20d88dbd21a8dc58dde54bd2))
995
+
996
+ ## [0.114.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.7...portal-network@v0.114.0) (2025-04-11)
997
+
998
+
999
+ ### Features
1000
+
1001
+ * Add code shift create module ([#915](https://github.com/stack-spot/portal-commons/issues/915)) ([ea987dc](https://github.com/stack-spot/portal-commons/commit/ea987dc48c284f6d273542e20bf718d5c5d8fc92))
1002
+ * add data integration api ([d14f204](https://github.com/stack-spot/portal-commons/commit/d14f204c8871400836c7d7b8cff98aa97c14a858))
1003
+
1004
+
1005
+ ### Bug Fixes
1006
+
1007
+ * Make session manager readonly ([#919](https://github.com/stack-spot/portal-commons/issues/919)) ([49fc475](https://github.com/stack-spot/portal-commons/commit/49fc475cc914998c2db92dc7509ed45942132f1d))
1008
+
1009
+ ## [0.113.7](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.6...portal-network@v0.113.7) (2025-04-07)
1010
+
1011
+
1012
+ ### Bug Fixes
1013
+
1014
+ * add inferenceDictionary ([#899](https://github.com/stack-spot/portal-commons/issues/899)) ([c360770](https://github.com/stack-spot/portal-commons/commit/c3607705c89be89579dd9a08ba638517b6d1a3ef))
1015
+
1016
+ ## [0.113.6](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.5...portal-network@v0.113.6) (2025-04-05)
1017
+
1018
+
1019
+ ### Features
1020
+
1021
+ * add ai inference api ([#897](https://github.com/stack-spot/portal-commons/issues/897)) ([d8daeb5](https://github.com/stack-spot/portal-commons/commit/d8daeb54fd0fab77a2fe4e3c2c94a2be7b97f28d))
1022
+
1023
+ ## [0.113.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.4...portal-network@v0.113.5) (2025-04-04)
1024
+
1025
+
1026
+ ### Bug Fixes
1027
+
1028
+ * Update swagger ([#893](https://github.com/stack-spot/portal-commons/issues/893)) ([83d8f44](https://github.com/stack-spot/portal-commons/commit/83d8f44ff15c65d417200d0cabef870acf5020d4))
1029
+
1030
+ ## [0.113.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.3...portal-network@v0.113.4) (2025-04-03)
1031
+
1032
+
1033
+ ### Bug Fixes
1034
+
1035
+ * api url ([#890](https://github.com/stack-spot/portal-commons/issues/890)) ([2cbca89](https://github.com/stack-spot/portal-commons/commit/2cbca897754347ae0ffef5687a8bae2c8c3290e6))
1036
+ * change api prd of cloud horizon ([#889](https://github.com/stack-spot/portal-commons/issues/889)) ([5370bdd](https://github.com/stack-spot/portal-commons/commit/5370bddfdf806f4c30b9a1691433163e6380055b))
1037
+
1038
+ ## [0.113.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.2...portal-network@v0.113.3) (2025-04-03)
1039
+
1040
+
1041
+ ### Bug Fixes
1042
+
1043
+ * agent apits doc ([#886](https://github.com/stack-spot/portal-commons/issues/886)) ([e0a0921](https://github.com/stack-spot/portal-commons/commit/e0a09216d6709860ee11d41d6f519d60e811d342))
1044
+ * Update code shift api ([#888](https://github.com/stack-spot/portal-commons/issues/888)) ([8dcfd50](https://github.com/stack-spot/portal-commons/commit/8dcfd504b8365d6d6e8cb81282bdc6a5ea7e00c6))
1045
+
1046
+ ## [0.113.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.1...portal-network@v0.113.2) (2025-04-03)
1047
+
1048
+
1049
+ ### Bug Fixes
1050
+
1051
+ * add get publicAgent ([#884](https://github.com/stack-spot/portal-commons/issues/884)) ([142629a](https://github.com/stack-spot/portal-commons/commit/142629ac85c96a430d61827b62787cc4ea609637))
1052
+
1053
+ ## [0.113.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.113.0...portal-network@v0.113.1) (2025-04-02)
1054
+
1055
+
1056
+ ### Bug Fixes
1057
+
1058
+ * update swagger horizon ([9f8edbb](https://github.com/stack-spot/portal-commons/commit/9f8edbb15086fbd02a488f49a2cc942c756c6545))
1059
+
1060
+ ## [0.113.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.112.1...portal-network@v0.113.0) (2025-04-02)
1061
+
1062
+
1063
+ ### Features
1064
+
1065
+ * implements attempts in the chat (ai) ([#878](https://github.com/stack-spot/portal-commons/issues/878)) ([4abf0b5](https://github.com/stack-spot/portal-commons/commit/4abf0b501ff677705c4ea499ee5263f1cdcfdfa3))
1066
+
1067
+ ## [0.112.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.112.0...portal-network@v0.112.1) (2025-04-02)
1068
+
1069
+
1070
+ ### Bug Fixes
1071
+
1072
+ * add permissions endpoint ([#876](https://github.com/stack-spot/portal-commons/issues/876)) ([e54dfe2](https://github.com/stack-spot/portal-commons/commit/e54dfe2b9e3774b1b45b5c0f653456f6e3641647))
1073
+
1074
+ ## [0.112.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.111.1...portal-network@v0.112.0) (2025-04-01)
1075
+
1076
+
1077
+ ### Features
1078
+
1079
+ * add new horizon queries ([a0bed47](https://github.com/stack-spot/portal-commons/commit/a0bed47585a12fd5b81f8808d8432e82e9ef8e9e))
1080
+
1081
+ ## [0.111.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.111.0...portal-network@v0.111.1) (2025-04-01)
1082
+
1083
+
1084
+ ### Bug Fixes
1085
+
1086
+ * update swagger ([#872](https://github.com/stack-spot/portal-commons/issues/872)) ([52e5d08](https://github.com/stack-spot/portal-commons/commit/52e5d089bbc1b59a56f9bca6a416eb13ca50652d))
1087
+
1088
+ ## [0.111.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.110.0...portal-network@v0.111.0) (2025-03-31)
1089
+
1090
+
1091
+ ### Features
1092
+
1093
+ * services for rate-limit in account api ([44c5b53](https://github.com/stack-spot/portal-commons/commit/44c5b532ac2cf69507c20a70912c9bfd74e14d92))
1094
+
1095
+
1096
+ ### Bug Fixes
1097
+
1098
+ * Update code shift swagger ([#867](https://github.com/stack-spot/portal-commons/issues/867)) ([245c5ae](https://github.com/stack-spot/portal-commons/commit/245c5ae03203c5f893e3772972e3c46101edba6d))
1099
+
1100
+ ## [0.110.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.109.0...portal-network@v0.110.0) (2025-03-28)
1101
+
1102
+
1103
+ ### Features
1104
+
1105
+ * add new endpoints horizon ([#866](https://github.com/stack-spot/portal-commons/issues/866)) ([6f51c01](https://github.com/stack-spot/portal-commons/commit/6f51c01836b82a008e2c46ece59c9a4e365bf26e))
1106
+
1107
+
1108
+ ### Bug Fixes
1109
+
1110
+ * Add new ai method ([#864](https://github.com/stack-spot/portal-commons/issues/864)) ([3dd16ef](https://github.com/stack-spot/portal-commons/commit/3dd16ef43f9179820c83c4aa3192760e98167792))
1111
+
1112
+ ## [0.109.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.108.0...portal-network@v0.109.0) (2025-03-28)
1113
+
1114
+
1115
+ ### Features
1116
+
1117
+ * New ai endpoints ([#862](https://github.com/stack-spot/portal-commons/issues/862)) ([2b51725](https://github.com/stack-spot/portal-commons/commit/2b51725ca782cf0f29b23cf43646e223d98ed7a8))
1118
+
1119
+ ## [0.108.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.107.0...portal-network@v0.108.0) (2025-03-27)
1120
+
1121
+
1122
+ ### Features
1123
+
1124
+ * update workspace manager ([#860](https://github.com/stack-spot/portal-commons/issues/860)) ([dd0a9b9](https://github.com/stack-spot/portal-commons/commit/dd0a9b9214075dd4ac9c2fad7df49c6fe80fb132))
1125
+
1126
+ ## [0.107.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.106.0...portal-network@v0.107.0) (2025-03-27)
1127
+
1128
+
1129
+ ### Features
1130
+
1131
+ * Add download endpoint ([#858](https://github.com/stack-spot/portal-commons/issues/858)) ([574fe25](https://github.com/stack-spot/portal-commons/commit/574fe253c94c12966e886acc8ea9c3d8aa4df2ea))
1132
+
1133
+ ## [0.106.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.105.1...portal-network@v0.106.0) (2025-03-27)
1134
+
1135
+
1136
+ ### Features
1137
+
1138
+ * Upd api wks manager ([#856](https://github.com/stack-spot/portal-commons/issues/856)) ([5499091](https://github.com/stack-spot/portal-commons/commit/54990913a22a214f0ab37ae6a95a3006933b97ee))
1139
+
1140
+ ## [0.105.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.105.0...portal-network@v0.105.1) (2025-03-26)
1141
+
1142
+
1143
+ ### Bug Fixes
1144
+
1145
+ * Update code shift ([#854](https://github.com/stack-spot/portal-commons/issues/854)) ([c1737ad](https://github.com/stack-spot/portal-commons/commit/c1737ad8941e2cde815a807d5ea4110adcb509bf))
1146
+
1147
+ ## [0.105.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.104.2...portal-network@v0.105.0) (2025-03-26)
1148
+
1149
+
1150
+ ### Features
1151
+
1152
+ * Upd workspace manager ([#851](https://github.com/stack-spot/portal-commons/issues/851)) ([bd47d3e](https://github.com/stack-spot/portal-commons/commit/bd47d3e4f72eb6fa195e91cc90f4f7d3f24ac875))
1153
+
1154
+ ## [0.104.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.104.1...portal-network@v0.104.2) (2025-03-26)
1155
+
1156
+
1157
+ ### Bug Fixes
1158
+
1159
+ * adds error message for code CNT_CONTENT_NO_PERMISSION_TO_ARCHIVE ([#849](https://github.com/stack-spot/portal-commons/issues/849)) ([dcac360](https://github.com/stack-spot/portal-commons/commit/dcac360bc178a7b9cf754ff7d14fbea89c5e636f))
1160
+
1161
+ ## [0.104.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.104.0...portal-network@v0.104.1) (2025-03-25)
1162
+
1163
+
1164
+ ### Bug Fixes
1165
+
1166
+ * Update swagger ([#847](https://github.com/stack-spot/portal-commons/issues/847)) ([811b104](https://github.com/stack-spot/portal-commons/commit/811b104a6b5de3703c4f2e602a3b1db4ae2e5f99))
1167
+
1168
+ ## [0.104.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.103.0...portal-network@v0.104.0) (2025-03-25)
1169
+
1170
+
1171
+ ### Features
1172
+
1173
+ * Add tokens usage ([#844](https://github.com/stack-spot/portal-commons/issues/844)) ([52a27cd](https://github.com/stack-spot/portal-commons/commit/52a27cd3ac6a3c2fb8ed25ae7edce128f22c31d7))
1174
+
1175
+ ## [0.103.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.102.0...portal-network@v0.103.0) (2025-03-25)
1176
+
1177
+
1178
+ ### Features
1179
+
1180
+ * Add remove account ([#841](https://github.com/stack-spot/portal-commons/issues/841)) ([df178f6](https://github.com/stack-spot/portal-commons/commit/df178f6da859e79c62770204596cd138053daec0))
1181
+ * tools ([#843](https://github.com/stack-spot/portal-commons/issues/843)) ([fb8aeb6](https://github.com/stack-spot/portal-commons/commit/fb8aeb6439408f039a25f36f302c49f0970a956d))
1182
+
1183
+ ## [0.102.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.101.0...portal-network@v0.102.0) (2025-03-24)
1184
+
1185
+
1186
+ ### Features
1187
+
1188
+ * agents with tools on AI chat ([#833](https://github.com/stack-spot/portal-commons/issues/833)) ([ab184a0](https://github.com/stack-spot/portal-commons/commit/ab184a09ade7636c78aeab4326c89fe736dff377))
1189
+
1190
+ ## [0.101.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.100.0...portal-network@v0.101.0) (2025-03-24)
1191
+
1192
+
1193
+ ### Features
1194
+
1195
+ * add queries vpn ([2e575b3](https://github.com/stack-spot/portal-commons/commit/2e575b32c592ed19f4f09d3d5bdc90a98250125b))
1196
+
1197
+ ## [0.100.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.5...portal-network@v0.100.0) (2025-03-21)
1198
+
1199
+
1200
+ ### Features
1201
+
1202
+ * add account endpoints trial ([#827](https://github.com/stack-spot/portal-commons/issues/827)) ([2527e76](https://github.com/stack-spot/portal-commons/commit/2527e76e256a6f53ddb8512b9a2cb7af19b6e4b1))
1203
+
1204
+ ## [0.99.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.4...portal-network@v0.99.5) (2025-03-21)
1205
+
1206
+
1207
+ ### Bug Fixes
1208
+
1209
+ * change query list organizations ([abf9a19](https://github.com/stack-spot/portal-commons/commit/abf9a19e262407cbf1ce52e41fb3d0bb7b223ebc))
1210
+ * change readme ([f6df58f](https://github.com/stack-spot/portal-commons/commit/f6df58f3d2c6bd019d9206d25972660e1c9429b1))
1211
+ * readme ([#829](https://github.com/stack-spot/portal-commons/issues/829)) ([cc29d2c](https://github.com/stack-spot/portal-commons/commit/cc29d2cca8482fa197f9c6af00a501f08a0f7a75))
1212
+
1213
+ ## [0.99.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.3...portal-network@v0.99.4) (2025-03-21)
1214
+
1215
+
1216
+ ### Bug Fixes
1217
+
1218
+ * change query list organizations ([abf9a19](https://github.com/stack-spot/portal-commons/commit/abf9a19e262407cbf1ce52e41fb3d0bb7b223ebc))
1219
+ * change readme ([f6df58f](https://github.com/stack-spot/portal-commons/commit/f6df58f3d2c6bd019d9206d25972660e1c9429b1))
1220
+ * update workflow open api ([f9c1c67](https://github.com/stack-spot/portal-commons/commit/f9c1c67634285919f318ff809b707446a9ead46c))
1221
+
1222
+ ## [0.99.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.3...portal-network@v0.99.4) (2025-03-21)
1223
+
1224
+
1225
+ ### Bug Fixes
1226
+
1227
+ * update workflow open api ([f9c1c67](https://github.com/stack-spot/portal-commons/commit/f9c1c67634285919f318ff809b707446a9ead46c))
1228
+
1229
+ ## [0.99.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.2...portal-network@v0.99.3) (2025-03-19)
1230
+
1231
+
1232
+ ### Bug Fixes
1233
+
1234
+ * interpolate error masssges ([#810](https://github.com/stack-spot/portal-commons/issues/810)) ([351be8d](https://github.com/stack-spot/portal-commons/commit/351be8d00540061a491d36bd5c4884ec6487d8a9))
1235
+
1236
+ ## [0.99.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.1...portal-network@v0.99.2) (2025-03-19)
1237
+
1238
+
1239
+ ### Bug Fixes
1240
+
1241
+ * Update swagger ([#816](https://github.com/stack-spot/portal-commons/issues/816)) ([e788bd0](https://github.com/stack-spot/portal-commons/commit/e788bd05b066d36b06c3845262929438cb15df35))
1242
+
1243
+ ## [0.99.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.99.0...portal-network@v0.99.1) (2025-03-19)
1244
+
1245
+
1246
+ ### Bug Fixes
1247
+
1248
+ * Update swagger - standard props ([#814](https://github.com/stack-spot/portal-commons/issues/814)) ([6f1669d](https://github.com/stack-spot/portal-commons/commit/6f1669d55a5974513c7bc6a8525a764f5605bbc7))
1249
+
1250
+ ## [0.99.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.98.0...portal-network@v0.99.0) (2025-03-19)
1251
+
1252
+
1253
+ ### Features
1254
+
1255
+ * Update swagger ([#812](https://github.com/stack-spot/portal-commons/issues/812)) ([1f1cc5b](https://github.com/stack-spot/portal-commons/commit/1f1cc5b2130e1f46a208fb8281e0b6aaae244657))
1256
+
1257
+
1258
+ ### Bug Fixes
1259
+
1260
+ * Fix 1388 remove duplicated client and upd ai ([#811](https://github.com/stack-spot/portal-commons/issues/811)) ([08014f5](https://github.com/stack-spot/portal-commons/commit/08014f56b0d3f9992e45376b957ca691b9bea6f1))
1261
+
1262
+ ## [0.98.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.97.2...portal-network@v0.98.0) (2025-03-18)
1263
+
1264
+
1265
+ ### Features
1266
+
1267
+ * Feat 1388 include code buddy ([#808](https://github.com/stack-spot/portal-commons/issues/808)) ([e64704f](https://github.com/stack-spot/portal-commons/commit/e64704f1f60e0a2c492e3aa29f26ea4aacb1f738))
1268
+
1269
+ ## [0.97.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.97.1...portal-network@v0.97.2) (2025-03-18)
1270
+
1271
+
1272
+ ### Bug Fixes
1273
+
1274
+ * Update code shift swagger ([#806](https://github.com/stack-spot/portal-commons/issues/806)) ([b44df4e](https://github.com/stack-spot/portal-commons/commit/b44df4e99569ac1dece15442d025b5aa934df465))
1275
+
1276
+ ## [0.97.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.97.0...portal-network@v0.97.1) (2025-03-17)
1277
+
1278
+
1279
+ ### Features
1280
+
1281
+ * Rate Limit ([ba18cf9](https://github.com/stack-spot/portal-commons/commit/ba18cf940104a099e1c79bf859795d5d5f4d075f))
1282
+
1283
+ ## [0.97.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.96.0...portal-network@v0.97.0) (2025-03-17)
1284
+
1285
+
1286
+ ### Features
1287
+
1288
+ * update workflow API ([#803](https://github.com/stack-spot/portal-commons/issues/803)) ([69abbfd](https://github.com/stack-spot/portal-commons/commit/69abbfd41d02a1dcb7a8ed7e3d0064db8f510956))
1289
+
1290
+ ## [0.96.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.95.0...portal-network@v0.96.0) (2025-03-17)
1291
+
1292
+
1293
+ ### Features
1294
+
1295
+ * Add more code shift endpoints ([#802](https://github.com/stack-spot/portal-commons/issues/802)) ([5170771](https://github.com/stack-spot/portal-commons/commit/51707715c5a4e2df9007e88b428e065054938cb4))
1296
+ * New code shift endpoints ([#799](https://github.com/stack-spot/portal-commons/issues/799)) ([0089f28](https://github.com/stack-spot/portal-commons/commit/0089f2878c5dcdf8190e019a75f253a5d9e0c962))
1297
+
1298
+
1299
+ ### Bug Fixes
1300
+
1301
+ * clearInputContextPluginAccount ([#801](https://github.com/stack-spot/portal-commons/issues/801)) ([ecbc917](https://github.com/stack-spot/portal-commons/commit/ecbc917bbc34e1da045720aafa25f557e5409f9b))
1302
+
1303
+ ## [0.95.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.94.1...portal-network@v0.95.0) (2025-03-14)
1304
+
1305
+
1306
+ ### Features
1307
+
1308
+ * new delete context endpoints ([#797](https://github.com/stack-spot/portal-commons/issues/797)) ([582b703](https://github.com/stack-spot/portal-commons/commit/582b703cf58793ce2a668fc8d778f9367f32f34d))
1309
+ * update code shift ([#789](https://github.com/stack-spot/portal-commons/issues/789)) ([8085787](https://github.com/stack-spot/portal-commons/commit/80857873161ba3e6ac05d2cf4c4b38c62493e958))
1310
+
1311
+ ## [0.94.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.94.0...portal-network@v0.94.1) (2025-03-11)
1312
+
1313
+
1314
+ ### Bug Fixes
1315
+
1316
+ * fix code shift integration ([7c5d2cc](https://github.com/stack-spot/portal-commons/commit/7c5d2ccec5a49fa5b74cdebc05d5e937b6df28ee))
1317
+
1318
+ ## [0.94.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.93.0...portal-network@v0.94.0) (2025-03-10)
1319
+
1320
+
1321
+ ### Features
1322
+
1323
+ * update plugin endpoints ([#782](https://github.com/stack-spot/portal-commons/issues/782)) ([e442736](https://github.com/stack-spot/portal-commons/commit/e442736ce17e562d052c2f7ee623423e3ec2a3ab))
1324
+
1325
+ ## [0.93.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.92.0...portal-network@v0.93.0) (2025-03-10)
1326
+
1327
+
1328
+ ### Features
1329
+
1330
+ * init code shift ([#780](https://github.com/stack-spot/portal-commons/issues/780)) ([52697b7](https://github.com/stack-spot/portal-commons/commit/52697b7f0930ab1753e6e58e699bdcd29c0040e1))
1331
+
1332
+ ## [0.92.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.91.0...portal-network@v0.92.0) (2025-03-07)
1333
+
1334
+
1335
+ ### Features
1336
+
1337
+ * add requests for network connection integration ([cb44300](https://github.com/stack-spot/portal-commons/commit/cb44300678776eda12bc8bb18eca5e88b82d60d9))
1338
+
1339
+ ## [0.91.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.90.0...portal-network@v0.91.0) (2025-03-07)
1340
+
1341
+
1342
+ ### Features
1343
+
1344
+ * expose apiList ([#773](https://github.com/stack-spot/portal-commons/issues/773)) ([65ff688](https://github.com/stack-spot/portal-commons/commit/65ff68890a4d3dfdfb4b70f4b1dbe35613a37697))
1345
+
1346
+ ## [0.90.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.89.0...portal-network@v0.90.0) (2025-02-28)
1347
+
1348
+
1349
+ ### Features
1350
+
1351
+ * Feat summary workflow by version id ([#769](https://github.com/stack-spot/portal-commons/issues/769)) ([13ad839](https://github.com/stack-spot/portal-commons/commit/13ad8390f66e86e920e39b8283fca9311132bb1b))
1352
+
1353
+ ## [0.89.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.88.0...portal-network@v0.89.0) (2025-02-27)
1354
+
1355
+
1356
+ ### Features
1357
+
1358
+ * Feat 1307 status on list workflow ([#757](https://github.com/stack-spot/portal-commons/issues/757)) ([ab9fe85](https://github.com/stack-spot/portal-commons/commit/ab9fe85e3e29bc1db3839a31d8b045d97dee7a0d))
1359
+
1360
+ ## [0.88.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.87.1...portal-network@v0.88.0) (2025-02-25)
1361
+
1362
+
1363
+ ### Features
1364
+
1365
+ * archive stacks ([#746](https://github.com/stack-spot/portal-commons/issues/746)) ([7c1533f](https://github.com/stack-spot/portal-commons/commit/7c1533fec5193e5ef775ba79cf314a1f4abece5c))
1366
+
1367
+ ## [0.87.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.87.0...portal-network@v0.87.1) (2025-02-25)
1368
+
1369
+
1370
+ ### Bug Fixes
1371
+
1372
+ * 1088 connection interface ([35375c9](https://github.com/stack-spot/portal-commons/commit/35375c9b885a8496f703dd9c840c3086cd5229c5))
1373
+
1374
+ ## [0.87.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.86.1...portal-network@v0.87.0) (2025-02-20)
1375
+
1376
+
1377
+ ### Features
1378
+
1379
+ * Feat 1307 Workflow Deprecate and Unpublish ([#724](https://github.com/stack-spot/portal-commons/issues/724)) ([45be253](https://github.com/stack-spot/portal-commons/commit/45be25395034c0b743ad7e5a78fbc01265ca06ed))
1380
+
1381
+ ## [0.86.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.86.0...portal-network@v0.86.1) (2025-02-20)
1382
+
1383
+
1384
+ ### Bug Fixes
1385
+
1386
+ * Updated SecretResponse ([#740](https://github.com/stack-spot/portal-commons/issues/740)) ([2ff7dbe](https://github.com/stack-spot/portal-commons/commit/2ff7dbe7a65992d5ee42b9f3c06c61c312c37a11))
1387
+
1388
+ ## [0.86.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.85.0...portal-network@v0.86.0) (2025-02-19)
1389
+
1390
+
1391
+ ### Features
1392
+
1393
+ * update error message mappings ([#738](https://github.com/stack-spot/portal-commons/issues/738)) ([7065b9c](https://github.com/stack-spot/portal-commons/commit/7065b9cf2519c95003c8e5ea8f8a3ff1bf2a79f7))
1394
+
1395
+ ## [0.85.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.84.1...portal-network@v0.85.0) (2025-02-18)
1396
+
1397
+
1398
+ ### Features
1399
+
1400
+ * 2084 secrets ([#723](https://github.com/stack-spot/portal-commons/issues/723)) ([4034dea](https://github.com/stack-spot/portal-commons/commit/4034dea7217fa677caa8c611f0ae1336b793f5e1))
1401
+
1402
+ ## [0.84.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.84.0...portal-network@v0.84.1) (2025-02-18)
1403
+
1404
+
1405
+ ### Bug Fixes
1406
+
1407
+ * type ([#735](https://github.com/stack-spot/portal-commons/issues/735)) ([61308b7](https://github.com/stack-spot/portal-commons/commit/61308b73da61b8a1752130031e138b680be10fa6))
1408
+
1409
+ ## [0.84.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.2...portal-network@v0.84.0) (2025-02-17)
1410
+
1411
+
1412
+ ### Features
1413
+
1414
+ * Add content dependencies ([#733](https://github.com/stack-spot/portal-commons/issues/733)) ([e3bfa03](https://github.com/stack-spot/portal-commons/commit/e3bfa038cc2b58b1416ede18d7787875c55e9de9))
1415
+
1416
+ ## [0.83.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.1...portal-network@v0.83.2) (2025-02-13)
1417
+
1418
+
1419
+ ### Bug Fixes
1420
+
1421
+ * swagger ([#731](https://github.com/stack-spot/portal-commons/issues/731)) ([cbd8973](https://github.com/stack-spot/portal-commons/commit/cbd89731227bcaae9662c895652e9a25095cd483))
1422
+ * update plugins endpoint mapping ([#730](https://github.com/stack-spot/portal-commons/issues/730)) ([ced22ab](https://github.com/stack-spot/portal-commons/commit/ced22ab8745383396965ed3f7123800ddd050fda))
1423
+
1424
+ ## [0.83.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.0...portal-network@v0.83.1) (2025-02-13)
1425
+
1426
+
1427
+ ### Bug Fixes
1428
+
1429
+ * remove requests and update cloud platform swagger ([#728](https://github.com/stack-spot/portal-commons/issues/728)) ([5a605de](https://github.com/stack-spot/portal-commons/commit/5a605deafdae55bf72be0bb93f05dc35b172e59d))
1430
+
1431
+ ## [0.83.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.3...portal-network@v0.83.0) (2025-02-13)
1432
+
1433
+
1434
+ ### Features
1435
+
1436
+ * map update plugins services ([#672](https://github.com/stack-spot/portal-commons/issues/672)) ([07a716a](https://github.com/stack-spot/portal-commons/commit/07a716aa18689a894ec7910702c416d6d8af0dee))
1437
+
1438
+ ## [0.82.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.2...portal-network@v0.82.3) (2025-02-11)
1439
+
1440
+
1441
+ ### Bug Fixes
1442
+
1443
+ * Update swagger ([#725](https://github.com/stack-spot/portal-commons/issues/725)) ([35e01ac](https://github.com/stack-spot/portal-commons/commit/35e01ac89d31c094724a66a8e93ec08b755ba4d0))
1444
+
1445
+ ## [0.82.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.1...portal-network@v0.82.2) (2025-02-10)
1446
+
1447
+
1448
+ ### Bug Fixes
1449
+
1450
+ * Fix type add resource to workspace ([#715](https://github.com/stack-spot/portal-commons/issues/715)) ([116c385](https://github.com/stack-spot/portal-commons/commit/116c3855f70fbe9dc15d08b930b02181d6c4018f))
1451
+
1452
+ ## [0.82.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.82.0...portal-network@v0.82.1) (2025-02-07)
1453
+
1454
+
1455
+ ### Bug Fixes
1456
+
1457
+ * Up swagger ([#704](https://github.com/stack-spot/portal-commons/issues/704)) ([71b4074](https://github.com/stack-spot/portal-commons/commit/71b4074d16821b8cfc8527124b9b0557a89c0cf5))
1458
+
1459
+ ## [0.82.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.81.2...portal-network@v0.82.0) (2025-02-07)
1460
+
1461
+
1462
+ ### Features
1463
+
1464
+ * update swagger cloud platform and horizon ([#702](https://github.com/stack-spot/portal-commons/issues/702)) ([b61de8c](https://github.com/stack-spot/portal-commons/commit/b61de8c48a64535916dfceb48797629845c2c560))
1465
+
1466
+ ## [0.81.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.81.1...portal-network@v0.81.2) (2025-02-06)
1467
+
1468
+
1469
+ ### Bug Fixes
1470
+
1471
+ * infra rollback ([#700](https://github.com/stack-spot/portal-commons/issues/700)) ([1dbb853](https://github.com/stack-spot/portal-commons/commit/1dbb8539c1921fcd9cf2728b5e594be49c365aaa))
1472
+
1473
+ ## [0.81.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.81.0...portal-network@v0.81.1) (2025-02-06)
1474
+
1475
+
1476
+ ### Bug Fixes
1477
+
1478
+ * app rollback ([#698](https://github.com/stack-spot/portal-commons/issues/698)) ([074c14b](https://github.com/stack-spot/portal-commons/commit/074c14bd363b2af3fc00ca4f2fcef3b6c81db627))
1479
+
1480
+ ## [0.81.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.80.1...portal-network@v0.81.0) (2025-02-06)
1481
+
1482
+
1483
+ ### Features
1484
+
1485
+ * Feat 1196 upd content ([#694](https://github.com/stack-spot/portal-commons/issues/694)) ([07a8ec0](https://github.com/stack-spot/portal-commons/commit/07a8ec07a58ad38da7160dd9a403ec233583a243))
1486
+
1487
+ ## [0.80.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.80.0...portal-network@v0.80.1) (2025-02-06)
1488
+
1489
+
1490
+ ### Bug Fixes
1491
+
1492
+ * Update swagger and fix type ([#695](https://github.com/stack-spot/portal-commons/issues/695)) ([0786000](https://github.com/stack-spot/portal-commons/commit/07860002862be00c598619504d8d092fe4be9d96))
1493
+
1494
+ ## [0.80.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.79.1...portal-network@v0.80.0) (2025-02-06)
1495
+
1496
+
1497
+ ### Features
1498
+
1499
+ * Updates runtime manager to expose admin endpoints to use in extensions ([#692](https://github.com/stack-spot/portal-commons/issues/692)) ([d666108](https://github.com/stack-spot/portal-commons/commit/d6661082e9f9f49cc6697a182b72f618ceb4543e))
1500
+
1501
+ ## [0.79.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.79.0...portal-network@v0.79.1) (2025-02-05)
1502
+
1503
+
1504
+ ### Bug Fixes
1505
+
1506
+ * Update swagger ([#687](https://github.com/stack-spot/portal-commons/issues/687)) ([f9a27fb](https://github.com/stack-spot/portal-commons/commit/f9a27fba58bde909e1e3ff902c526895f0bab18a))
1507
+
1508
+ ## [0.79.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.78.0...portal-network@v0.79.0) (2025-02-05)
1509
+
1510
+
1511
+ ### Features
1512
+
1513
+ * Update workspace ai swagger ([#685](https://github.com/stack-spot/portal-commons/issues/685)) ([734175b](https://github.com/stack-spot/portal-commons/commit/734175b961643d91dbc373fda66289510ca53a27))
1514
+
1515
+ ## [0.78.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.77.1...portal-network@v0.78.0) (2025-01-31)
1516
+
1517
+
1518
+ ### Features
1519
+
1520
+ * add workspace ai ([#680](https://github.com/stack-spot/portal-commons/issues/680)) ([c113b72](https://github.com/stack-spot/portal-commons/commit/c113b723897d5efbec5d75112fe6f39c748252b4))
1521
+
1522
+ ## [0.77.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.77.0...portal-network@v0.77.1) (2025-01-30)
1523
+
1524
+
1525
+ ### Bug Fixes
1526
+
1527
+ * udpate cloud platform swagger ([#678](https://github.com/stack-spot/portal-commons/issues/678)) ([d853b70](https://github.com/stack-spot/portal-commons/commit/d853b709f7243276b0ca8a19d3d9eb8fecb79786))
1528
+
1529
+ ## [0.77.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.76.0...portal-network@v0.77.0) (2025-01-30)
1530
+
1531
+
1532
+ ### Features
1533
+
1534
+ * update cloud platform and horizon ([1380712](https://github.com/stack-spot/portal-commons/commit/13807120abc3ecd0375ca3b89a5c3b2c1a315d2e))
1535
+
1536
+ ## [0.76.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.75.0...portal-network@v0.76.0) (2025-01-30)
1537
+
1538
+
1539
+ ### Features
1540
+
1541
+ * update libs of environments ([7763fa1](https://github.com/stack-spot/portal-commons/commit/7763fa1cc929d0e6ff83e2f16ddbc64f5256851e))
1542
+ * update version ([#674](https://github.com/stack-spot/portal-commons/issues/674)) ([d997bec](https://github.com/stack-spot/portal-commons/commit/d997bec5be68b877da77ae849233cf1955e59350))
1543
+
1544
+ ## [0.75.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.74.0...portal-network@v0.75.0) (2025-01-28)
1545
+
1546
+
1547
+ ### Features
1548
+
1549
+ * 1222 account extensions ([#667](https://github.com/stack-spot/portal-commons/issues/667)) ([18d1e45](https://github.com/stack-spot/portal-commons/commit/18d1e45f129dbf001aa6e3e8fdaca597c6aabe2b))
1550
+
1551
+ ## [0.74.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.73.0...portal-network@v0.74.0) (2025-01-28)
1552
+
1553
+
1554
+ ### Features
1555
+
1556
+ * update workspace manager ([#664](https://github.com/stack-spot/portal-commons/issues/664)) ([3aa369a](https://github.com/stack-spot/portal-commons/commit/3aa369a1f7cf9c4f9dd61adb32228809df5c8e62))
1557
+
1558
+ ## [0.73.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.72.1...portal-network@v0.73.0) (2025-01-23)
1559
+
1560
+
1561
+ ### Features
1562
+
1563
+ * update-agent-api ([bc0fb5d](https://github.com/stack-spot/portal-commons/commit/bc0fb5deccf50a2960ca6687efb37498f768b7d7))
1564
+
1565
+ ## [0.72.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.72.0...portal-network@v0.72.1) (2025-01-21)
1566
+
1567
+
1568
+ ### Bug Fixes
1569
+
1570
+ * 2164 paginations ([efbcf90](https://github.com/stack-spot/portal-commons/commit/efbcf90113b4716dd12d423eaba6eec0e2c9b90f))
1571
+
1572
+ ## [0.72.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.71.0...portal-network@v0.72.0) (2025-01-20)
1573
+
1574
+
1575
+ ### Features
1576
+
1577
+ * 2164 pagination ([df428f7](https://github.com/stack-spot/portal-commons/commit/df428f7985b6a15c93fec9576e7f9d41d96eefb5))
1578
+
1579
+ ## [0.71.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.70.0...portal-network@v0.71.0) (2025-01-17)
1580
+
1581
+
1582
+ ### Features
1583
+
1584
+ * update workspace manager ([#653](https://github.com/stack-spot/portal-commons/issues/653)) ([5ee76ff](https://github.com/stack-spot/portal-commons/commit/5ee76ff6f7e85d0a196c65644eb4ce000a8b6fff))
1585
+
1586
+ ## [0.70.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.69.0...portal-network@v0.70.0) (2025-01-15)
1587
+
1588
+
1589
+ ### Features
1590
+
1591
+ * udpated content API ([#648](https://github.com/stack-spot/portal-commons/issues/648)) ([476d120](https://github.com/stack-spot/portal-commons/commit/476d120bbb5a5c95026955eb9148f70563a91497))
1592
+
1593
+ ## [0.69.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.5...portal-network@v0.69.0) (2025-01-09)
1594
+
1595
+
1596
+ ### Features
1597
+
1598
+ * add infinite scroll in actions ([f03b0bb](https://github.com/stack-spot/portal-commons/commit/f03b0bbf8e21f7c03d3a18823295ecfcf7c6fe44))
1599
+
1600
+
1601
+ ### Bug Fixes
1602
+
1603
+ * update swagger cloud platform ([fabbf6d](https://github.com/stack-spot/portal-commons/commit/fabbf6d25b013f97737bdd2d76d4b48d2463e187))
1604
+
1605
+ ## [0.68.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.4...portal-network@v0.68.5) (2025-01-08)
1606
+
1607
+
1608
+ ### Bug Fixes
1609
+
1610
+ * reset lock state in the consume method ([#637](https://github.com/stack-spot/portal-commons/issues/637)) ([c4ebdde](https://github.com/stack-spot/portal-commons/commit/c4ebddeff8b4238bcffc871448404031bc6130ea))
1611
+
1612
+ ## [0.68.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.3...portal-network@v0.68.4) (2025-01-06)
1613
+
1614
+
1615
+ ### Bug Fixes
1616
+
1617
+ * Update swagger ([#633](https://github.com/stack-spot/portal-commons/issues/633)) ([ae91ab4](https://github.com/stack-spot/portal-commons/commit/ae91ab4ce8d896bd2072766785841905b0252404))
1618
+
1619
+ ## [0.68.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.2...portal-network@v0.68.3) (2025-01-02)
1620
+
1621
+
1622
+ ### Bug Fixes
1623
+
1624
+ * updated auth lib on network ([#591](https://github.com/stack-spot/portal-commons/issues/591)) ([2a00f4e](https://github.com/stack-spot/portal-commons/commit/2a00f4e3c3e12ea9de9202b1a93c143fdf48392f))
1625
+
1626
+ ## [0.68.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.1...portal-network@v0.68.2) (2024-12-30)
1627
+
1628
+
1629
+ ### Bug Fixes
1630
+
1631
+ * Update swagger ([#622](https://github.com/stack-spot/portal-commons/issues/622)) ([c9d3e7f](https://github.com/stack-spot/portal-commons/commit/c9d3e7ffb7cfd3bb01d1158f578f9af93a02505e))
1632
+
1633
+ ## [0.68.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.68.0...portal-network@v0.68.1) (2024-12-27)
1634
+
1635
+
1636
+ ### Bug Fixes
1637
+
1638
+ * update swagger ([4c66352](https://github.com/stack-spot/portal-commons/commit/4c663526a5d6f43b3c065f3ac57ff898a0eab343))
1639
+
1640
+ ## [0.68.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.67.0...portal-network@v0.68.0) (2024-12-27)
1641
+
1642
+
1643
+ ### Features
1644
+
1645
+ * add queries in horizon client ([36c9444](https://github.com/stack-spot/portal-commons/commit/36c9444e08ebb6cb9f9d688afb3dca3397e3e702))
1646
+
1647
+ ## [0.67.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.66.0...portal-network@v0.67.0) (2024-12-27)
1648
+
1649
+
1650
+ ### Features
1651
+
1652
+ * update libs banner ([#604](https://github.com/stack-spot/portal-commons/issues/604)) ([f2bc440](https://github.com/stack-spot/portal-commons/commit/f2bc440db6c65461a2b1228d0efc08ed3d883d67))
1653
+
1654
+ ## [0.66.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.65.1...portal-network@v0.66.0) (2024-12-23)
1655
+
1656
+
1657
+ ### Features
1658
+
1659
+ * update content dictionary ([16a1995](https://github.com/stack-spot/portal-commons/commit/16a1995ea4e63d6ef345cc40927b264afa991903))
1660
+ * update content dictionary ([16a1995](https://github.com/stack-spot/portal-commons/commit/16a1995ea4e63d6ef345cc40927b264afa991903))
1661
+
1662
+ ## [0.65.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.65.0...portal-network@v0.65.1) (2024-12-20)
1663
+
1664
+
1665
+ ### Bug Fixes
1666
+
1667
+ * update cloud runtimes swagger ([aead878](https://github.com/stack-spot/portal-commons/commit/aead878452ad5d5664fa2cbf506319abe0289db4))
1668
+
1669
+ ## [0.65.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.64.2...portal-network@v0.65.0) (2024-12-19)
1670
+
1671
+
1672
+ ### Features
1673
+
1674
+ * update swagger cloud platform and new queries ([9c308ec](https://github.com/stack-spot/portal-commons/commit/9c308ec528f127c36a38d0e3dfa510e0b84066bf))
1675
+
1676
+ ## [0.64.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.64.1...portal-network@v0.64.2) (2024-12-18)
1677
+
1678
+
1679
+ ### Bug Fixes
1680
+
1681
+ * content api ([#589](https://github.com/stack-spot/portal-commons/issues/589)) ([e89b90f](https://github.com/stack-spot/portal-commons/commit/e89b90f2ad503248656b3d124e75f5b849fe0147))
1682
+
1683
+ ## [0.64.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.64.0...portal-network@v0.64.1) (2024-12-17)
1684
+
1685
+
1686
+ ### Bug Fixes
1687
+
1688
+ * fix endpoints context plugin ([95cd9bc](https://github.com/stack-spot/portal-commons/commit/95cd9bc8c7bfa698787eacded6db69047ebeb513))
1689
+
1690
+ ## [0.64.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.63.0...portal-network@v0.64.0) (2024-12-17)
1691
+
1692
+
1693
+ ### Features
1694
+
1695
+ * account workflows input ([#584](https://github.com/stack-spot/portal-commons/issues/584)) ([6c134d4](https://github.com/stack-spot/portal-commons/commit/6c134d4e832768d81b7f23d4743dbed6f6b801f6))
1696
+
1697
+ ## [0.63.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.62.0...portal-network@v0.63.0) (2024-12-16)
1698
+
1699
+
1700
+ ### Features
1701
+
1702
+ * create app and infra using workflow ([2884164](https://github.com/stack-spot/portal-commons/commit/2884164440dee50c103ae0b1e05fa173d05436a8))
1703
+
1704
+ ## [0.62.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.61.1...portal-network@v0.62.0) (2024-12-14)
1705
+
1706
+
1707
+ ### Features
1708
+
1709
+ * new workspace manager endpoints and extra large modal ([3b8768e](https://github.com/stack-spot/portal-commons/commit/3b8768eeb0b408059ab503ce19f3e22de5f2ad5e))
1710
+
1711
+
1712
+ ### Bug Fixes
1713
+
1714
+ * Update content swagger ([#576](https://github.com/stack-spot/portal-commons/issues/576)) ([316d1b6](https://github.com/stack-spot/portal-commons/commit/316d1b6704fc53aaff9902e202eab22c19befb88))
1715
+
1716
+ ## [0.61.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.61.0...portal-network@v0.61.1) (2024-12-13)
1717
+
1718
+
1719
+ ### Bug Fixes
1720
+
1721
+ * add new queries ([7a2c4d1](https://github.com/stack-spot/portal-commons/commit/7a2c4d1ed3594d362569328010ea731204616805))
1722
+
1723
+ ## [0.61.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.60.0...portal-network@v0.61.0) (2024-12-13)
1724
+
1725
+
1726
+ ### Features
1727
+
1728
+ * update swagger and add new queries ([08ec3ae](https://github.com/stack-spot/portal-commons/commit/08ec3aed95401b0b024141dd512101aeff58c800))
1729
+
1730
+ ## [0.60.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.59.0...portal-network@v0.60.0) (2024-12-12)
1731
+
1732
+
1733
+ ### Features
1734
+
1735
+ * add endpoint filters app/infra ([42409b6](https://github.com/stack-spot/portal-commons/commit/42409b60923e1ff0d4a2694dbc4d00ae59c0f6ee))
1736
+
1737
+ ## [0.59.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.7...portal-network@v0.59.0) (2024-12-12)
1738
+
1739
+
1740
+ ### Features
1741
+
1742
+ * new workflow services ([#569](https://github.com/stack-spot/portal-commons/issues/569)) ([0646dae](https://github.com/stack-spot/portal-commons/commit/0646dae9094607521deb0da14e08662dd82e7f81))
1743
+
1744
+ ## [0.58.7](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.6...portal-network@v0.58.7) (2024-12-11)
1745
+
1746
+
1747
+ ### Bug Fixes
1748
+
1749
+ * session validation on request permission ([#562](https://github.com/stack-spot/portal-commons/issues/562)) ([03a814f](https://github.com/stack-spot/portal-commons/commit/03a814f3cc80c3af473801cf066e5ec5171a1f90))
1750
+
1751
+ ## [0.58.6](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.5...portal-network@v0.58.6) (2024-12-11)
1752
+
1753
+
1754
+ ### Bug Fixes
1755
+
1756
+ * update swagger cloud platform ([29c3d5b](https://github.com/stack-spot/portal-commons/commit/29c3d5b638860a7e452033e95c0a52d26b6e08ad))
1757
+
1758
+ ## [0.58.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.4...portal-network@v0.58.5) (2024-12-11)
1759
+
1760
+
1761
+ ### Bug Fixes
1762
+
1763
+ * infinite scroll in workflow by studio ([#555](https://github.com/stack-spot/portal-commons/issues/555)) ([41e1890](https://github.com/stack-spot/portal-commons/commit/41e189010517f4360a3c35b5321b706e9a80503d))
1764
+ * update runtimes swagger ([da00f34](https://github.com/stack-spot/portal-commons/commit/da00f343099075d67e15e91228444d0fb9524098))
1765
+
1766
+ ## [0.58.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.3...portal-network@v0.58.4) (2024-12-10)
1767
+
1768
+
1769
+ ### Features
1770
+
1771
+ * 881 upd content ([#531](https://github.com/stack-spot/portal-commons/issues/531)) ([7bb6e7d](https://github.com/stack-spot/portal-commons/commit/7bb6e7daf8af288466eb3c8178b1e96e3b2a1363))
1772
+
1773
+ ## [0.58.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.2...portal-network@v0.58.3) (2024-12-09)
1774
+
1775
+
1776
+ ### Bug Fixes
1777
+
1778
+ * update cloud runtimes ([5774ef4](https://github.com/stack-spot/portal-commons/commit/5774ef4d289b05ff5dfadad8507331a571325129))
1779
+
1780
+ ## [0.58.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.1...portal-network@v0.58.2) (2024-12-09)
1781
+
1782
+
1783
+ ### Bug Fixes
1784
+
1785
+ * Removed canvieworg ([#548](https://github.com/stack-spot/portal-commons/issues/548)) ([9e4d336](https://github.com/stack-spot/portal-commons/commit/9e4d3365586bf3d0c3523b80ea7f039c6ca30a52))
1786
+
1787
+ ## [0.58.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.58.0...portal-network@v0.58.1) (2024-12-09)
1788
+
1789
+
1790
+ ### Bug Fixes
1791
+
1792
+ * Updated workspace api ([#546](https://github.com/stack-spot/portal-commons/issues/546)) ([5fea4bd](https://github.com/stack-spot/portal-commons/commit/5fea4bd951d880a49eb4728516bda3112dcacc78))
1793
+
1794
+ ## [0.58.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.57.0...portal-network@v0.58.0) (2024-12-09)
1795
+
1796
+
1797
+ ### Features
1798
+
1799
+ * Added validate permission access endpoint ([#543](https://github.com/stack-spot/portal-commons/issues/543)) ([a147d7e](https://github.com/stack-spot/portal-commons/commit/a147d7ecde058ceb9be191ad72e57ccf1f3bc8a2))
1800
+
1801
+ ## [0.57.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.56.2...portal-network@v0.57.0) (2024-12-09)
1802
+
1803
+
1804
+ ### Features
1805
+
1806
+ * Add workflow in stack services ([#530](https://github.com/stack-spot/portal-commons/issues/530)) ([7ff57f3](https://github.com/stack-spot/portal-commons/commit/7ff57f3124afa652a81d03023d21eae87c7588d6))
1807
+
1808
+ ## [0.56.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.56.1...portal-network@v0.56.2) (2024-12-06)
1809
+
1810
+
1811
+ ### Bug Fixes
1812
+
1813
+ * update cloud cidr ([d0787f1](https://github.com/stack-spot/portal-commons/commit/d0787f1b530486a3a9c72bf595c52e9330a9b4de))
1814
+
1815
+ ## [0.56.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.56.0...portal-network@v0.56.1) (2024-12-04)
1816
+
1817
+
1818
+ ### Bug Fixes
1819
+
1820
+ * change base url ([a3cdc77](https://github.com/stack-spot/portal-commons/commit/a3cdc779bafbe4f8e430cfaa6455a5fef3ed5681))
1821
+
1822
+ ## [0.56.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.55.0...portal-network@v0.56.0) (2024-12-03)
1823
+
1824
+
1825
+ ### Features
1826
+
1827
+ * add cloud horizon client ([1a23263](https://github.com/stack-spot/portal-commons/commit/1a2326395ca543ca3114dde3c49dec0b411663f7))
1828
+ * update cloud platform swagger ([1781c46](https://github.com/stack-spot/portal-commons/commit/1781c46d0986c8826a742528f743753d5907a922))
1829
+
1830
+ ## [0.55.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.54.0...portal-network@v0.55.0) (2024-12-02)
1831
+
1832
+
1833
+ ### Features
1834
+
1835
+ * update error messages ([894bbd6](https://github.com/stack-spot/portal-commons/commit/894bbd63c737e3098b58c51b552905b05f7daac2))
1836
+
1837
+
1838
+ ### Bug Fixes
1839
+
1840
+ * Update for infinite scroll ([#520](https://github.com/stack-spot/portal-commons/issues/520)) ([d08a2ed](https://github.com/stack-spot/portal-commons/commit/d08a2edff772ef04e101ab6e68fc9ab232d97016))
1841
+
1842
+ ## [0.54.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.3...portal-network@v0.54.0) (2024-11-29)
1843
+
1844
+
1845
+ ### Features
1846
+
1847
+ * Added insights client and usecanvieworg util ([#518](https://github.com/stack-spot/portal-commons/issues/518)) ([e0e70dd](https://github.com/stack-spot/portal-commons/commit/e0e70dd0644f47f80e2366f9f5a42a7d800772fa))
1848
+
1849
+ ## [0.53.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.2...portal-network@v0.53.3) (2024-11-29)
1850
+
1851
+
1852
+ ### Bug Fixes
1853
+
1854
+ * update swagger ([094b478](https://github.com/stack-spot/portal-commons/commit/094b478032acdb71cb96e1114e1974b5d91b49b0))
1855
+
1856
+ ## [0.53.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.1...portal-network@v0.53.2) (2024-11-21)
1857
+
1858
+
1859
+ ### Bug Fixes
1860
+
1861
+ * parsed api response error ([5768760](https://github.com/stack-spot/portal-commons/commit/576876055a46b53ef27247c81bc6b5a99711d65e))
1862
+
1863
+ ## [0.53.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.53.0...portal-network@v0.53.1) (2024-11-11)
1864
+
1865
+
1866
+ ### Bug Fixes
1867
+
1868
+ * Update swagger ([#493](https://github.com/stack-spot/portal-commons/issues/493)) ([f9a6317](https://github.com/stack-spot/portal-commons/commit/f9a6317bc8413568264ba52a8254c9b22f3b3a66))
1869
+
1870
+ ## [0.53.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.52.1...portal-network@v0.53.0) (2024-11-11)
1871
+
1872
+
1873
+ ### Features
1874
+
1875
+ * Add new input type text area ([#484](https://github.com/stack-spot/portal-commons/issues/484)) ([204cc5c](https://github.com/stack-spot/portal-commons/commit/204cc5ce1d199db5b3dbf16fc56826dbddf5ab5f))
1876
+
1877
+ ## [0.52.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.52.0...portal-network@v0.52.1) (2024-11-08)
1878
+
1879
+
1880
+ ### Bug Fixes
1881
+
1882
+ * cloudPlatform client ([#490](https://github.com/stack-spot/portal-commons/issues/490)) ([cba2450](https://github.com/stack-spot/portal-commons/commit/cba245085abe0a63b98c7b9aa85f612115d9185f))
1883
+
1884
+ ## [0.52.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.51.0...portal-network@v0.52.0) (2024-11-07)
1885
+
1886
+
1887
+ ### Features
1888
+
1889
+ * Feat 1970 upd wks api ([#489](https://github.com/stack-spot/portal-commons/issues/489)) ([19f7efd](https://github.com/stack-spot/portal-commons/commit/19f7efd5f55734d0ab5b327a70341e1c31792813))
1890
+ * updated cloudPlatform client ([#487](https://github.com/stack-spot/portal-commons/issues/487)) ([7c0103c](https://github.com/stack-spot/portal-commons/commit/7c0103c4e6390f8ca8a62c5299630470d2637bf1))
1891
+
1892
+ ## [0.51.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.50.1...portal-network@v0.51.0) (2024-11-07)
1893
+
1894
+
1895
+ ### Features
1896
+
1897
+ * adding activities ([#485](https://github.com/stack-spot/portal-commons/issues/485)) ([0c7bc6a](https://github.com/stack-spot/portal-commons/commit/0c7bc6a4d356e3c3fcb4a3b7e68b0f5ecdfd468b))
1898
+
1899
+ ## [0.50.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.50.0...portal-network@v0.50.1) (2024-11-04)
1900
+
1901
+
1902
+ ### Bug Fixes
1903
+
1904
+ * Update workflow swagger ([#479](https://github.com/stack-spot/portal-commons/issues/479)) ([f160d76](https://github.com/stack-spot/portal-commons/commit/f160d76102c2ee101e0a02ef8129f7e829f480a4))
1905
+
1906
+ ## [0.50.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.49.0...portal-network@v0.50.0) (2024-11-01)
1907
+
1908
+
1909
+ ### Features
1910
+
1911
+ * add foundation endpoitns in cloud-platform ([8b041d9](https://github.com/stack-spot/portal-commons/commit/8b041d9b77fd31a4d168b9f9b78eb36e2763ff1a))
1912
+
1913
+ ## [0.49.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.48.0...portal-network@v0.49.0) (2024-11-01)
1914
+
1915
+
1916
+ ### Features
1917
+
1918
+ * adds missing error codes ([#475](https://github.com/stack-spot/portal-commons/issues/475)) ([09bc73d](https://github.com/stack-spot/portal-commons/commit/09bc73dbbd98b7854150364e11fefe15b781c9aa))
1919
+
1920
+ ## [0.48.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.47.2...portal-network@v0.48.0) (2024-10-31)
1921
+
1922
+
1923
+ ### Features
1924
+
1925
+ * adds agent query ([#473](https://github.com/stack-spot/portal-commons/issues/473)) ([4e7e7c7](https://github.com/stack-spot/portal-commons/commit/4e7e7c7f302431c815c2565091e7e935ec6c20ef))
1926
+
1927
+ ## [0.47.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.47.1...portal-network@v0.47.2) (2024-10-29)
1928
+
1929
+
1930
+ ### Bug Fixes
1931
+
1932
+ * swagger applications ([#469](https://github.com/stack-spot/portal-commons/issues/469)) ([492aa05](https://github.com/stack-spot/portal-commons/commit/492aa054cffa671059ea7f3ce82d4741afe2d539))
1933
+
1934
+ ## [0.47.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.47.0...portal-network@v0.47.1) (2024-10-29)
1935
+
1936
+
1937
+ ### Bug Fixes
1938
+
1939
+ * applications infra 1877 ([cad9782](https://github.com/stack-spot/portal-commons/commit/cad978225667ec9568db3cdb6e5dee086cb690ee))
1940
+
1941
+ ## [0.47.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.46.1...portal-network@v0.47.0) (2024-10-28)
1942
+
1943
+
1944
+ ### Features
1945
+
1946
+ * 1877 applications and infra screens ([#465](https://github.com/stack-spot/portal-commons/issues/465)) ([6737efd](https://github.com/stack-spot/portal-commons/commit/6737efd21737c96ec65adcef89974639fe720212))
1947
+
1948
+ ## [0.46.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.46.0...portal-network@v0.46.1) (2024-10-25)
1949
+
1950
+
1951
+ ### Bug Fixes
1952
+
1953
+ * Update swagger ([#461](https://github.com/stack-spot/portal-commons/issues/461)) ([1d6b336](https://github.com/stack-spot/portal-commons/commit/1d6b336caf1e8878372b22eff4836b5b86bca00d))
1954
+
1955
+ ## [0.46.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.45.1...portal-network@v0.46.0) (2024-10-24)
1956
+
1957
+
1958
+ ### Features
1959
+
1960
+ * ai quick commands + fixes ([#455](https://github.com/stack-spot/portal-commons/issues/455)) ([fbc020f](https://github.com/stack-spot/portal-commons/commit/fbc020ff4e764b6779fa3f02acc9a8417a067687))
1961
+
1962
+ ## [0.45.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.45.0...portal-network@v0.45.1) (2024-10-23)
1963
+
1964
+
1965
+ ### Bug Fixes
1966
+
1967
+ * Update type ([#456](https://github.com/stack-spot/portal-commons/issues/456)) ([8185f4c](https://github.com/stack-spot/portal-commons/commit/8185f4c749fdb21a4268ab8f4c362b41b8668833))
1968
+
1969
+ ## [0.45.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.44.0...portal-network@v0.45.0) (2024-10-22)
1970
+
1971
+
1972
+ ### Features
1973
+
1974
+ * 1877 workspaces ([#453](https://github.com/stack-spot/portal-commons/issues/453)) ([90eba92](https://github.com/stack-spot/portal-commons/commit/90eba922c0da218338ef8675293c27fa53bafa3a))
1975
+
1976
+ ## [0.44.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.43.0...portal-network@v0.44.0) (2024-10-18)
1977
+
1978
+
1979
+ ### Features
1980
+
1981
+ * 1877 studios ([#443](https://github.com/stack-spot/portal-commons/issues/443)) ([8ebf849](https://github.com/stack-spot/portal-commons/commit/8ebf849cb87894970415e82df6e88b4395dae1e4))
1982
+ * update object error return ([#402](https://github.com/stack-spot/portal-commons/issues/402)) ([9f1831c](https://github.com/stack-spot/portal-commons/commit/9f1831c51b0deb86b9e1f32bec509821bbdfc6a9))
1983
+
1984
+
1985
+ ### Bug Fixes
1986
+
1987
+ * notification swagger ([#442](https://github.com/stack-spot/portal-commons/issues/442)) ([cb27b1c](https://github.com/stack-spot/portal-commons/commit/cb27b1cd80118826cc6ceda649426d7d359b10d1))
1988
+
1989
+ ## [0.43.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.2...portal-network@v0.43.0) (2024-10-17)
1990
+
1991
+
1992
+ ### Features
1993
+
1994
+ * update swagger cloud-platform prd ([f0aa187](https://github.com/stack-spot/portal-commons/commit/f0aa1872b4225858beeddc7452f8ce67d6e9032f))
1995
+
1996
+ ## [0.42.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.1...portal-network@v0.42.2) (2024-10-16)
1997
+
1998
+
1999
+ ### Bug Fixes
2000
+
2001
+ * fixes infinite queries variables ([#434](https://github.com/stack-spot/portal-commons/issues/434)) ([83c62bd](https://github.com/stack-spot/portal-commons/commit/83c62bdc4ae3cb11caae18fafeddaefeb12c339f))
2002
+
2003
+ ## [0.42.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.42.0...portal-network@v0.42.1) (2024-10-16)
2004
+
2005
+
2006
+ ### Bug Fixes
2007
+
2008
+ * update swagger to stg ([351580c](https://github.com/stack-spot/portal-commons/commit/351580c7a2c164f40245bbb0dfe174d6f86e2a7f))
2009
+
2010
+ ## [0.42.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.41.0...portal-network@v0.42.0) (2024-10-16)
2011
+
2012
+
2013
+ ### Features
2014
+
2015
+ * update swagger ([f393364](https://github.com/stack-spot/portal-commons/commit/f39336478e230d198f1df7c0daba35e51b88151f))
2016
+
2017
+ ## [0.41.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.40.1...portal-network@v0.41.0) (2024-10-14)
2018
+
2019
+
2020
+ ### Features
2021
+
2022
+ * agents + ks documents ([#426](https://github.com/stack-spot/portal-commons/issues/426)) ([143ca66](https://github.com/stack-spot/portal-commons/commit/143ca6698e4b52f9ad10e4a599365295e234fea4))
2023
+
2024
+ ## [0.40.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.40.0...portal-network@v0.40.1) (2024-10-11)
2025
+
2026
+
2027
+ ### Bug Fixes
2028
+
2029
+ * update swagger cloud-platform ([2b5a1dc](https://github.com/stack-spot/portal-commons/commit/2b5a1dc6d7428243881589811c5eb7366381a130))
2030
+
2031
+ ## [0.40.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.39.2...portal-network@v0.40.0) (2024-10-11)
2032
+
2033
+
2034
+ ### Features
2035
+
2036
+ * network ai ([#422](https://github.com/stack-spot/portal-commons/issues/422)) ([6bba349](https://github.com/stack-spot/portal-commons/commit/6bba3498f367787641fe583c5358725acd093de5))
2037
+
2038
+ ## [0.39.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.39.1...portal-network@v0.39.2) (2024-10-10)
2039
+
2040
+
2041
+ ### Bug Fixes
2042
+
2043
+ * Update account swagger ([#417](https://github.com/stack-spot/portal-commons/issues/417)) ([af23973](https://github.com/stack-spot/portal-commons/commit/af23973c470198bde4fd9619cd97135a8308e009))
2044
+
2045
+ ## [0.39.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.39.0...portal-network@v0.39.1) (2024-10-10)
2046
+
2047
+
2048
+ ### Bug Fixes
2049
+
2050
+ * content swagger ([#415](https://github.com/stack-spot/portal-commons/issues/415)) ([d928fb2](https://github.com/stack-spot/portal-commons/commit/d928fb2ad5b92573a1a03b65a4de02d5df8f67fa))
2051
+
2052
+ ## [0.39.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.38.1...portal-network@v0.39.0) (2024-10-09)
2053
+
2054
+
2055
+ ### Features
2056
+
2057
+ * Add workflow get versions ([#412](https://github.com/stack-spot/portal-commons/issues/412)) ([7463ec4](https://github.com/stack-spot/portal-commons/commit/7463ec48075592e3eeda688111671879ecc738c5))
2058
+
2059
+ ## [0.38.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.38.0...portal-network@v0.38.1) (2024-10-09)
2060
+
2061
+
2062
+ ### Bug Fixes
2063
+
2064
+ * add function to remove authorization ([623a87d](https://github.com/stack-spot/portal-commons/commit/623a87d68494c40476eeb21eeeb53fa72e6422df))
2065
+
2066
+ ## [0.38.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.37.0...portal-network@v0.38.0) (2024-10-08)
2067
+
2068
+
2069
+ ### Features
2070
+
2071
+ * update swagger cloud-platform ([7891d55](https://github.com/stack-spot/portal-commons/commit/7891d5586b2325787f83be7c140277fea8b36e8d))
2072
+
2073
+ ## [0.37.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.36.0...portal-network@v0.37.0) (2024-10-07)
2074
+
2075
+
2076
+ ### Features
2077
+
2078
+ * update content ([#406](https://github.com/stack-spot/portal-commons/issues/406)) ([a0e19f0](https://github.com/stack-spot/portal-commons/commit/a0e19f0a5f59b54410b4ece38fae28c47b570762))
2079
+
2080
+ ## [0.36.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.35.0...portal-network@v0.36.0) (2024-10-04)
2081
+
2082
+
2083
+ ### Features
2084
+
2085
+ * Update content ([fb8daf6](https://github.com/stack-spot/portal-commons/commit/fb8daf6a3dbc18eff040328a0f248bdb886559dd))
2086
+ * Workspace manager ([0349e8d](https://github.com/stack-spot/portal-commons/commit/0349e8d8e81c8146b7f42a7aee7d73f5dbdbd45b))
2087
+
2088
+ ## [0.35.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.34.1...portal-network@v0.35.0) (2024-10-04)
2089
+
2090
+
2091
+ ### Features
2092
+
2093
+ * Update content swagger ([#397](https://github.com/stack-spot/portal-commons/issues/397)) ([7c5c0d2](https://github.com/stack-spot/portal-commons/commit/7c5c0d268072ea8af2ddda642e98113cc5003746))
2094
+
2095
+ ## [0.34.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.34.0...portal-network@v0.34.1) (2024-10-03)
2096
+
2097
+
2098
+ ### Bug Fixes
2099
+
2100
+ * adjustment in cloud platform api ([f035480](https://github.com/stack-spot/portal-commons/commit/f03548000bb1d712067132c89bcbf65cc4209aea))
2101
+
2102
+ ## [0.34.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.33.0...portal-network@v0.34.0) (2024-10-01)
2103
+
2104
+
2105
+ ### Features
2106
+
2107
+ * more workflow services ([#393](https://github.com/stack-spot/portal-commons/issues/393)) ([c8ad8de](https://github.com/stack-spot/portal-commons/commit/c8ad8dedfad8843ac070cf23a9dc3ea3c7e3aa15))
2108
+ * platform client ([#395](https://github.com/stack-spot/portal-commons/issues/395)) ([9efb68f](https://github.com/stack-spot/portal-commons/commit/9efb68f26c35211c2991ad4b674e73f79b17d6ff))
2109
+
2110
+ ## [0.33.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.32.0...portal-network@v0.33.0) (2024-09-25)
2111
+
2112
+
2113
+ ### Features
2114
+
2115
+ * makes react query cache stale, unless invalidated ([#388](https://github.com/stack-spot/portal-commons/issues/388)) ([d69ba66](https://github.com/stack-spot/portal-commons/commit/d69ba66a34120f22e09cedd17bddf792b9ab9538))
2116
+
2117
+ ## [0.32.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.31.0...portal-network@v0.32.0) (2024-09-23)
2118
+
2119
+
2120
+ ### Features
2121
+
2122
+ * workflows list ([e97d1b0](https://github.com/stack-spot/portal-commons/commit/e97d1b0770fb5b619f593804f32fec72ac3bc822))
2123
+
2124
+ ## [0.31.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.30.1...portal-network@v0.31.0) (2024-09-20)
2125
+
2126
+
2127
+ ### Features
2128
+
2129
+ * app and infra details and delete ([8de8144](https://github.com/stack-spot/portal-commons/commit/8de8144b289d36e22f9c359a1e6a0bad51b8b559))
2130
+
2131
+
2132
+ ### Bug Fixes
2133
+
2134
+ * Fix mutation to query client action ([#380](https://github.com/stack-spot/portal-commons/issues/380)) ([870abad](https://github.com/stack-spot/portal-commons/commit/870abade560b046834c042cc91074189af8fdbe5))
2135
+ * Improve ws-manager permissions ([#374](https://github.com/stack-spot/portal-commons/issues/374)) ([9f8e139](https://github.com/stack-spot/portal-commons/commit/9f8e13929d428e27b8d45ca226138f55bef479ce))
2136
+
2137
+ ## [0.30.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.30.0...portal-network@v0.30.1) (2024-09-19)
2138
+
2139
+
2140
+ ### Bug Fixes
2141
+
2142
+ * update workspace variable response ([#375](https://github.com/stack-spot/portal-commons/issues/375)) ([fb4651c](https://github.com/stack-spot/portal-commons/commit/fb4651cd71c7aa8fb3a8f55eee8634402b83f697))
2143
+
2144
+ ## [0.30.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.29.0...portal-network@v0.30.0) (2024-09-18)
2145
+
2146
+
2147
+ ### Features
2148
+
2149
+ * add more fn workspace manager ([3d56751](https://github.com/stack-spot/portal-commons/commit/3d56751dce074a36321eb862ba5656c7388f3a5c))
2150
+ * Add shared infra and app links fn ([#371](https://github.com/stack-spot/portal-commons/issues/371)) ([85dcc83](https://github.com/stack-spot/portal-commons/commit/85dcc83bf221de51f7da643e5156c7c8c326021d))
2151
+
2152
+ ## [0.29.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.28.0...portal-network@v0.29.0) (2024-09-18)
2153
+
2154
+
2155
+ ### Features
2156
+
2157
+ * Add actions fn ([6111461](https://github.com/stack-spot/portal-commons/commit/611146176448eb3a2e87f4015f3cb4e5d4444129))
2158
+
2159
+
2160
+ ### Bug Fixes
2161
+
2162
+ * add missing fn ([c845e86](https://github.com/stack-spot/portal-commons/commit/c845e86c0d13561cde27b34e7ade09b068ce860c))
2163
+
2164
+ ## [0.28.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.27.2...portal-network@v0.28.0) (2024-09-16)
2165
+
2166
+
2167
+ ### Features
2168
+
2169
+ * 2946 removed v1 from urls ([61ee854](https://github.com/stack-spot/portal-commons/commit/61ee8544db9aa5d3a9ee13f36fc3934c328f07c7))
2170
+ * initial Refactor workspace manager ([#332](https://github.com/stack-spot/portal-commons/issues/332)) ([2597e6e](https://github.com/stack-spot/portal-commons/commit/2597e6e109ae14126534925658975180bd1f2276))
2171
+
2172
+ ## [0.27.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.27.1...portal-network@v0.27.2) (2024-09-13)
2173
+
2174
+
2175
+ ### Bug Fixes
2176
+
2177
+ * 800 error message ([804124a](https://github.com/stack-spot/portal-commons/commit/804124a627d75314f62179f747d9ab3f27668ce1))
2178
+
2179
+ ## [0.27.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.27.0...portal-network@v0.27.1) (2024-09-09)
2180
+
2181
+
2182
+ ### Bug Fixes
2183
+
2184
+ * fix cloud account type ([#352](https://github.com/stack-spot/portal-commons/issues/352)) ([32342d9](https://github.com/stack-spot/portal-commons/commit/32342d9b3a86ce4bc77f306dba76f9c3d23b2614))
2185
+
2186
+ ## [0.27.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.26.0...portal-network@v0.27.0) (2024-09-09)
2187
+
2188
+
2189
+ ### Features
2190
+
2191
+ * network cloud account ([#350](https://github.com/stack-spot/portal-commons/issues/350)) ([82b0b66](https://github.com/stack-spot/portal-commons/commit/82b0b6634edffeab0ad0775b3e1a4b048340ec98))
2192
+
2193
+ ## [0.26.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.25.0...portal-network@v0.26.0) (2024-09-04)
2194
+
2195
+
2196
+ ### Features
2197
+
2198
+ * updates workflow api ([#348](https://github.com/stack-spot/portal-commons/issues/348)) ([263b96e](https://github.com/stack-spot/portal-commons/commit/263b96e42889d620e959cd2237cf9ac69da85149))
2199
+
2200
+ ## [0.25.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.24.0...portal-network@v0.25.0) (2024-09-03)
2201
+
2202
+
2203
+ ### Features
2204
+
2205
+ * more content fn ([985d7b2](https://github.com/stack-spot/portal-commons/commit/985d7b2c6590bb89defc9b1de1f5c7dc3d70707f))
2206
+
2207
+
2208
+ ### Bug Fixes
2209
+
2210
+ * update account client ([fb158e1](https://github.com/stack-spot/portal-commons/commit/fb158e1355adc956414f3e4db7078882a39594fa))
2211
+
2212
+ ## [0.24.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.23.1...portal-network@v0.24.0) (2024-09-02)
2213
+
2214
+
2215
+ ### Features
2216
+
2217
+ * udpate resource action ([#337](https://github.com/stack-spot/portal-commons/issues/337)) ([866867d](https://github.com/stack-spot/portal-commons/commit/866867dde559a537ac7a24872b850bf241729c37))
2218
+
2219
+ ## [0.23.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.23.0...portal-network@v0.23.1) (2024-08-30)
2220
+
2221
+
2222
+ ### Bug Fixes
2223
+
2224
+ * Show details if no translated message is found ([#331](https://github.com/stack-spot/portal-commons/issues/331)) ([f5b715b](https://github.com/stack-spot/portal-commons/commit/f5b715be6c78a950d6ead53d4e659bace7221a18))
2225
+
2226
+ ## [0.23.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.22.0...portal-network@v0.23.0) (2024-08-28)
2227
+
2228
+
2229
+ ### Features
2230
+
2231
+ * wf graph data ([#328](https://github.com/stack-spot/portal-commons/issues/328)) ([212cc2c](https://github.com/stack-spot/portal-commons/commit/212cc2cb74ab15c6aacf523987d73c8ead434daa))
2232
+
2233
+ ## [0.22.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.21.0...portal-network@v0.22.0) (2024-08-27)
2234
+
2235
+
2236
+ ### Features
2237
+
2238
+ * Add notification client ([#321](https://github.com/stack-spot/portal-commons/issues/321)) ([75dbbd6](https://github.com/stack-spot/portal-commons/commit/75dbbd6f01c217435872584e24722c3e6569b9bc))
2239
+
2240
+
2241
+ ### Bug Fixes
2242
+
2243
+ * remove authorization param ([#323](https://github.com/stack-spot/portal-commons/issues/323)) ([4ef2535](https://github.com/stack-spot/portal-commons/commit/4ef2535376b8f3267e8762218c1d623172d1c22b))
2244
+
2245
+ ## [0.21.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.20.0...portal-network@v0.21.0) (2024-08-26)
2246
+
2247
+
2248
+ ### Features
2249
+
2250
+ * add request otp ([#318](https://github.com/stack-spot/portal-commons/issues/318)) ([6ad0e96](https://github.com/stack-spot/portal-commons/commit/6ad0e96a750110d613e69b4aeffe5f3000e702c7))
2251
+
2252
+ ## [0.20.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.19.0...portal-network@v0.20.0) (2024-08-23)
2253
+
2254
+
2255
+ ### Features
2256
+
2257
+ * Add studio requests ([#311](https://github.com/stack-spot/portal-commons/issues/311)) ([ed5f891](https://github.com/stack-spot/portal-commons/commit/ed5f891bd5d3ce0bec559f02dbb1fbc3f2e63fdc))
2258
+
2259
+ ## [0.19.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.18.1...portal-network@v0.19.0) (2024-08-21)
2260
+
2261
+
2262
+ ### Features
2263
+
2264
+ * Add more workspace fn ([a7c250d](https://github.com/stack-spot/portal-commons/commit/a7c250db8fdb8d6531134cf603c9f48bd099d87e))
2265
+
2266
+ ## [0.18.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.18.0...portal-network@v0.18.1) (2024-08-21)
2267
+
2268
+
2269
+ ### Bug Fixes
2270
+
2271
+ * cloud-services/instance ([#303](https://github.com/stack-spot/portal-commons/issues/303)) ([b3342ab](https://github.com/stack-spot/portal-commons/commit/b3342abd82192520deb108d0e7c1832cb5f110c4))
2272
+
2273
+ ## [0.18.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.17.0...portal-network@v0.18.0) (2024-08-21)
2274
+
2275
+
2276
+ ### Features
2277
+
2278
+ * Add content generated file ([abca941](https://github.com/stack-spot/portal-commons/commit/abca94138037b53af01dda7b22805e8e7ef093d6))
2279
+ * Content links and more workspace fn ([1b8dd7e](https://github.com/stack-spot/portal-commons/commit/1b8dd7e3819b614a0437a65e1fb4caf269002a19))
2280
+
2281
+ ## [0.17.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.16.1...portal-network@v0.17.0) (2024-08-19)
2282
+
2283
+
2284
+ ### Features
2285
+
2286
+ * New workspace requests ([#293](https://github.com/stack-spot/portal-commons/issues/293)) ([dfa3f6d](https://github.com/stack-spot/portal-commons/commit/dfa3f6da4482bbcbea89a2d77c0a6cb83f61d14f))
2287
+
2288
+ ## [0.16.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.16.0...portal-network@v0.16.1) (2024-08-19)
2289
+
2290
+
2291
+ ### Bug Fixes
2292
+
2293
+ * Handling 403 error ([#292](https://github.com/stack-spot/portal-commons/issues/292)) ([ac91d7c](https://github.com/stack-spot/portal-commons/commit/ac91d7ced230594c0bb7bcb49a75c44b01704172))
2294
+
2295
+ ## [0.16.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.15.0...portal-network@v0.16.0) (2024-08-19)
2296
+
2297
+
2298
+ ### Features
2299
+
2300
+ * network sso client ([#288](https://github.com/stack-spot/portal-commons/issues/288)) ([ce79680](https://github.com/stack-spot/portal-commons/commit/ce79680fcfb25e6ddae030f23150b3cab668464c))
2301
+
2302
+
2303
+ ### Bug Fixes
2304
+
2305
+ * network cloud-services ([#286](https://github.com/stack-spot/portal-commons/issues/286)) ([ae162e1](https://github.com/stack-spot/portal-commons/commit/ae162e1d4daa785b2ce0c3987a889ff053f13387))
2306
+
2307
+ ## [0.15.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.14.1...portal-network@v0.15.0) (2024-08-16)
2308
+
2309
+
2310
+ ### Features
2311
+
2312
+ * network cloud services ([c89ca5e](https://github.com/stack-spot/portal-commons/commit/c89ca5e0b719cf5c5e51a48ee6a38a401c7ddb91))
2313
+
2314
+
2315
+ ### Bug Fixes
2316
+
2317
+ * workspace api types ([9584c40](https://github.com/stack-spot/portal-commons/commit/9584c4095a7eeb86363635353d92747dae8ce979))
2318
+
2319
+ ## [0.14.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.14.0...portal-network@v0.14.1) (2024-08-15)
2320
+
2321
+
2322
+ ### Bug Fixes
2323
+
2324
+ * ws type ([bd605ee](https://github.com/stack-spot/portal-commons/commit/bd605ee2e95692336294cdf37e6c7036249f1eb6))
2325
+
2326
+ ## [0.14.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.13.1...portal-network@v0.14.0) (2024-08-15)
2327
+
2328
+
2329
+ ### Features
2330
+
2331
+ * Initial ws refactor ([75c7fa4](https://github.com/stack-spot/portal-commons/commit/75c7fa4d0e288948d1a3a7a227d0eb23f556367a))
2332
+ * refactor event bus client ([b15a059](https://github.com/stack-spot/portal-commons/commit/b15a059b09b9d9513f7b660139448dc89f757104))
2333
+
2334
+ ## [0.13.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.13.0...portal-network@v0.13.1) (2024-08-13)
2335
+
2336
+
2337
+ ### Bug Fixes
2338
+
2339
+ * Fix prd url ([2098040](https://github.com/stack-spot/portal-commons/commit/2098040edbb56243559dca2da03aca859f9e7a82))
2340
+
2341
+ ## [0.13.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.12.0...portal-network@v0.13.0) (2024-08-13)
2342
+
2343
+
2344
+ ### Features
2345
+
2346
+ * manual operation helpers ([0e9d54e](https://github.com/stack-spot/portal-commons/commit/0e9d54efa2ecf0632082491836b1404509032a80))
2347
+ * Refactor workflow ([#258](https://github.com/stack-spot/portal-commons/issues/258)) ([1bb339b](https://github.com/stack-spot/portal-commons/commit/1bb339b89bea1452c639e6fd7f4b9663a2d95544))
2348
+
2349
+ ## [0.12.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.11.0...portal-network@v0.12.0) (2024-08-12)
2350
+
2351
+
2352
+ ### Features
2353
+
2354
+ * add encrypt value ([3e7ff86](https://github.com/stack-spot/portal-commons/commit/3e7ff86a2cc95b3b44cf7ab97ceae387c2485815))
2355
+
2356
+ ## [0.11.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.10.0...portal-network@v0.11.0) (2024-08-12)
2357
+
2358
+
2359
+ ### Features
2360
+
2361
+ * Add search client ([0053467](https://github.com/stack-spot/portal-commons/commit/0053467dba63d97b1814f6d97b96fa177d1e0c17))
2362
+
2363
+ ## [0.10.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.9.0...portal-network@v0.10.0) (2024-08-12)
2364
+
2365
+
2366
+ ### Features
2367
+
2368
+ * network service credential ([#252](https://github.com/stack-spot/portal-commons/issues/252)) ([3e1158a](https://github.com/stack-spot/portal-commons/commit/3e1158a9ad2c5cb0b2c9cefe1ed7a61e330a279a))
2369
+ * refactor runtime manager ([#251](https://github.com/stack-spot/portal-commons/issues/251)) ([5ed6787](https://github.com/stack-spot/portal-commons/commit/5ed67875ead085603821f951d4e89b4b2ce9f25b))
2370
+
2371
+ ## [0.9.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.8.0...portal-network@v0.9.0) (2024-08-07)
2372
+
2373
+
2374
+ ### Features
2375
+
2376
+ * add embeded links requests ([6cb40d8](https://github.com/stack-spot/portal-commons/commit/6cb40d8f41371f4c00864848f878b251e8daac7a))
2377
+
2378
+
2379
+ ### Bug Fixes
2380
+
2381
+ * connection interface methods ([1ede473](https://github.com/stack-spot/portal-commons/commit/1ede473d8ac16ebe52891463082e92056c08397b))
2382
+
2383
+ ## [0.8.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.7.0...portal-network@v0.8.0) (2024-08-07)
2384
+
2385
+
2386
+ ### Features
2387
+
2388
+ * network - scm ([#240](https://github.com/stack-spot/portal-commons/issues/240)) ([55278fb](https://github.com/stack-spot/portal-commons/commit/55278fbc8f6ea76bf50ab8c95806594fd6db1084))
2389
+
2390
+ ## [0.7.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.6.0...portal-network@v0.7.0) (2024-08-07)
2391
+
2392
+
2393
+ ### Features
2394
+
2395
+ * add secrets client ([c5b7087](https://github.com/stack-spot/portal-commons/commit/c5b7087f6f65f1527964f1859a6a49f6ca8abbce))
2396
+
2397
+ ## [0.6.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.5.0...portal-network@v0.6.0) (2024-08-05)
2398
+
2399
+
2400
+ ### Features
2401
+
2402
+ * resource + email in AccountClient ([#236](https://github.com/stack-spot/portal-commons/issues/236)) ([0d49447](https://github.com/stack-spot/portal-commons/commit/0d4944790529d9711013129a64caed50a48e59fe))
2403
+
2404
+ ## [0.5.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.4.0...portal-network@v0.5.0) (2024-08-05)
2405
+
2406
+
2407
+ ### Features
2408
+
2409
+ * migrate environment client ([61b6671](https://github.com/stack-spot/portal-commons/commit/61b6671c5ab44141d90ebf1df2fa1e41fd18f9b1))
2410
+
2411
+ ## [0.4.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.3.1...portal-network@v0.4.0) (2024-08-05)
2412
+
2413
+
2414
+ ### Features
2415
+
2416
+ * migrates roleClient ([#233](https://github.com/stack-spot/portal-commons/issues/233)) ([c1703a6](https://github.com/stack-spot/portal-commons/commit/c1703a6d190a79ec325120de0b1ba3724fc1de22))
2417
+ * network group ([#231](https://github.com/stack-spot/portal-commons/issues/231)) ([09f9383](https://github.com/stack-spot/portal-commons/commit/09f93838285a17928cfa097eda8172242af2b392))
2418
+
2419
+ ## [0.3.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.3.0...portal-network@v0.3.1) (2024-08-02)
2420
+
2421
+
2422
+ ### Bug Fixes
2423
+
2424
+ * adds network build to root ([#229](https://github.com/stack-spot/portal-commons/issues/229)) ([0e03d17](https://github.com/stack-spot/portal-commons/commit/0e03d17286acaea3f591a9de8009b445675ae0cf))
2425
+
2426
+ ## [0.3.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.2.0...portal-network@v0.3.0) (2024-08-02)
2427
+
2428
+
2429
+ ### Features
2430
+
2431
+ * network - member ([#220](https://github.com/stack-spot/portal-commons/issues/220)) ([5bf22c2](https://github.com/stack-spot/portal-commons/commit/5bf22c29e25215052c0ad63dd6266695f437994b))
2432
+
2433
+
2434
+ ### Bug Fixes
2435
+
2436
+ * rewrite network client methods ([#216](https://github.com/stack-spot/portal-commons/issues/216)) ([f71bcfe](https://github.com/stack-spot/portal-commons/commit/f71bcfe53c95593e59e4cf69f23b176ab96cf02a))
2437
+
2438
+ ## [0.2.0](https://github.com/stack-spot/portal-commons/compare/portal-network-v0.1.0...portal-network@v0.2.0) (2024-07-31)
2439
+
2440
+
2441
+ ### Features
2442
+
2443
+ * network library ([eec8b1b](https://github.com/stack-spot/portal-commons/commit/eec8b1b24c77d055884b8ed8c2ccac452c5b16e2))
2444
+ * network: infinite query ([#214](https://github.com/stack-spot/portal-commons/issues/214)) ([aded3f7](https://github.com/stack-spot/portal-commons/commit/aded3f78665a829fd31d78766be7d5942aaa62e3))