@stack-spot/portal-network 0.202.1 → 0.203.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.
- package/CHANGELOG.md +247 -0
- package/dist/api/account.d.ts +344 -91
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +203 -46
- package/dist/api/account.js.map +1 -1
- package/dist/api/accountAssetManager.d.ts +309 -0
- package/dist/api/accountAssetManager.d.ts.map +1 -0
- package/dist/api/accountAssetManager.js +169 -0
- package/dist/api/accountAssetManager.js.map +1 -0
- package/dist/api/agent-tools.d.ts +623 -141
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js +168 -45
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/ai.d.ts +135 -24
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +79 -26
- package/dist/api/ai.js.map +1 -1
- package/dist/api/codeShift.d.ts +127 -9
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +73 -6
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/discover.d.ts +79 -4
- package/dist/api/discover.d.ts.map +1 -1
- package/dist/api/discover.js +73 -7
- package/dist/api/discover.js.map +1 -1
- package/dist/api/edpBfa.d.ts +215 -0
- package/dist/api/edpBfa.d.ts.map +1 -0
- package/dist/api/edpBfa.js +87 -0
- package/dist/api/edpBfa.js.map +1 -0
- package/dist/api/workspace-ai.d.ts +41 -0
- package/dist/api/workspace-ai.d.ts.map +1 -1
- package/dist/api/workspace-ai.js +34 -0
- package/dist/api/workspace-ai.js.map +1 -1
- package/dist/api-addresses.d.ts +13 -20
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/api-addresses.js +60 -17
- package/dist/api-addresses.js.map +1 -1
- package/dist/apis-itau.json +16 -0
- package/dist/apis.json +16 -0
- package/dist/client/account-asset-manager.d.ts +112 -0
- package/dist/client/account-asset-manager.d.ts.map +1 -0
- package/dist/client/account-asset-manager.js +160 -0
- package/dist/client/account-asset-manager.js.map +1 -0
- package/dist/client/account.d.ts +11 -9
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +11 -8
- package/dist/client/account.js.map +1 -1
- package/dist/client/agent-tools.d.ts +108 -3
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +95 -10
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/ai.d.ts +148 -1
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +149 -17
- package/dist/client/ai.js.map +1 -1
- package/dist/client/code-shift.d.ts +54 -3
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +46 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/data-integration.js +8 -1
- package/dist/client/data-integration.js.map +1 -1
- package/dist/client/discover.d.ts +16 -2
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/discover.js +28 -1
- package/dist/client/discover.js.map +1 -1
- package/dist/client/edp-bfa.d.ts +16 -0
- package/dist/client/edp-bfa.d.ts.map +1 -0
- package/dist/client/edp-bfa.js +24 -0
- package/dist/client/edp-bfa.js.map +1 -0
- package/dist/client/notification.d.ts +7 -0
- package/dist/client/notification.d.ts.map +1 -1
- package/dist/client/notification.js +10 -1
- package/dist/client/notification.js.map +1 -1
- package/dist/client/types.d.ts +11 -3
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workspace-ai.d.ts +13 -3
- package/dist/client/workspace-ai.d.ts.map +1 -1
- package/dist/client/workspace-ai.js +17 -3
- package/dist/client/workspace-ai.js.map +1 -1
- package/dist/client/workspace-manager.d.ts +15 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +19 -1
- package/dist/client/workspace-manager.js.map +1 -1
- package/dist/error/dictionary/accountAssetManager.d.ts +11 -0
- package/dist/error/dictionary/accountAssetManager.d.ts.map +1 -0
- package/dist/error/dictionary/accountAssetManager.js +11 -0
- package/dist/error/dictionary/accountAssetManager.js.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/network/NetworkClient.d.ts.map +1 -1
- package/dist/network/NetworkClient.js +12 -2
- package/dist/network/NetworkClient.js.map +1 -1
- package/dist/network/types.d.ts +1 -0
- package/dist/network/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/readme.md +39 -1
- package/src/api/account.ts +592 -165
- package/src/api/accountAssetManager.ts +771 -0
- package/src/api/agent-tools.ts +824 -188
- package/src/api/ai.ts +206 -38
- package/src/api/codeShift.ts +233 -12
- package/src/api/discover.ts +153 -10
- package/src/api/edpBfa.ts +472 -0
- package/src/api/workspace-ai.ts +83 -0
- package/src/api-addresses.ts +93 -37
- package/src/apis-itau.json +16 -0
- package/src/apis.json +16 -0
- package/src/client/account-asset-manager.ts +100 -0
- package/src/client/account.ts +11 -7
- package/src/client/agent-tools.ts +64 -16
- package/src/client/ai.ts +129 -19
- package/src/client/code-shift.ts +29 -0
- package/src/client/data-integration.ts +9 -2
- package/src/client/discover.ts +15 -2
- package/src/client/edp-bfa.ts +24 -0
- package/src/client/notification.ts +6 -1
- package/src/client/types.ts +12 -3
- package/src/client/workspace-ai.ts +21 -6
- package/src/client/workspace-manager.ts +13 -0
- package/src/error/dictionary/accountAssetManager.ts +12 -0
- package/src/index.ts +4 -1
- package/src/network/NetworkClient.ts +13 -4
- package/src/network/types.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,252 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.203.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.202.0-beta.1...portal-network-beta@v0.203.0-beta.1) (2026-01-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* agents versioning 'feat-3041-version-agent' into beta-release ([8715070](https://github.com/stack-spot/portal-commons/commit/871507068f89b66b39f136748380a638765ddf75))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add backend filter ([#1959](https://github.com/stack-spot/portal-commons/issues/1959)) ([74a4f7a](https://github.com/stack-spot/portal-commons/commit/74a4f7a20af52072794ce46d0fc876ae84198ff0))
|
|
14
|
+
* Add filter ([#1961](https://github.com/stack-spot/portal-commons/issues/1961)) ([eafd043](https://github.com/stack-spot/portal-commons/commit/eafd0438692d03eda807ae386ae897edb4051e09))
|
|
15
|
+
* keep spot filter on front ([#1963](https://github.com/stack-spot/portal-commons/issues/1963)) ([5eb0b8c](https://github.com/stack-spot/portal-commons/commit/5eb0b8cff2ec10d3e7e7aeeaea7fd9899da3f2df))
|
|
16
|
+
* make batch properties optional in GetModuleExecutionBatchActivitiesById type ([c731c6d](https://github.com/stack-spot/portal-commons/commit/c731c6ddf259eade5f5179696a772dd9f01abce0))
|
|
17
|
+
* Update account swagger ([#1957](https://github.com/stack-spot/portal-commons/issues/1957)) ([1082bfa](https://github.com/stack-spot/portal-commons/commit/1082bfa5d2041ea3f2aaad49dd18473938438140))
|
|
18
|
+
* update swagger ([#1965](https://github.com/stack-spot/portal-commons/issues/1965)) ([efeceda](https://github.com/stack-spot/portal-commons/commit/efeceda09c9d15d8331b47c74bd90e7b64d6097a))
|
|
19
|
+
|
|
20
|
+
## [0.212.6](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.212.5...portal-network@v0.212.6) (2026-01-05)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* update swagger ([#1965](https://github.com/stack-spot/portal-commons/issues/1965)) ([efeceda](https://github.com/stack-spot/portal-commons/commit/efeceda09c9d15d8331b47c74bd90e7b64d6097a))
|
|
26
|
+
|
|
27
|
+
## [0.212.5](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.212.4...portal-network@v0.212.5) (2026-01-05)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* keep spot filter on front ([#1963](https://github.com/stack-spot/portal-commons/issues/1963)) ([5eb0b8c](https://github.com/stack-spot/portal-commons/commit/5eb0b8cff2ec10d3e7e7aeeaea7fd9899da3f2df))
|
|
33
|
+
|
|
34
|
+
## [0.212.4](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.212.3...portal-network@v0.212.4) (2026-01-05)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
* Add filter ([#1961](https://github.com/stack-spot/portal-commons/issues/1961)) ([eafd043](https://github.com/stack-spot/portal-commons/commit/eafd0438692d03eda807ae386ae897edb4051e09))
|
|
40
|
+
|
|
41
|
+
## [0.212.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.212.2...portal-network@v0.212.3) (2026-01-05)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
* add backend filter ([#1959](https://github.com/stack-spot/portal-commons/issues/1959)) ([74a4f7a](https://github.com/stack-spot/portal-commons/commit/74a4f7a20af52072794ce46d0fc876ae84198ff0))
|
|
47
|
+
|
|
48
|
+
## [0.212.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.212.1...portal-network@v0.212.2) (2025-12-30)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Bug Fixes
|
|
52
|
+
|
|
53
|
+
* Update account swagger ([#1957](https://github.com/stack-spot/portal-commons/issues/1957)) ([1082bfa](https://github.com/stack-spot/portal-commons/commit/1082bfa5d2041ea3f2aaad49dd18473938438140))
|
|
54
|
+
|
|
55
|
+
## [0.212.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.212.0...portal-network@v0.212.1) (2025-12-29)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* make batch properties optional in GetModuleExecutionBatchActivitiesById type ([c731c6d](https://github.com/stack-spot/portal-commons/commit/c731c6ddf259eade5f5179696a772dd9f01abce0))
|
|
61
|
+
|
|
62
|
+
## [0.212.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.211.2...portal-network@v0.212.0) (2025-12-23)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
|
|
67
|
+
* add customOutputs and pagination support to various request/response ([#1948](https://github.com/stack-spot/portal-commons/issues/1948)) ([94e209c](https://github.com/stack-spot/portal-commons/commit/94e209c0c4524e943b79a02e0a1d8d66606fb8e4))
|
|
68
|
+
* add dynamic tool ([#1947](https://github.com/stack-spot/portal-commons/issues/1947)) ([6426e6b](https://github.com/stack-spot/portal-commons/commit/6426e6bfedd4b410b28de3f36908326568a9bdc5))
|
|
69
|
+
* update account asset swagger ([#1949](https://github.com/stack-spot/portal-commons/issues/1949)) ([4eb7844](https://github.com/stack-spot/portal-commons/commit/4eb7844eb1d46a1684a11494aa842cd31694dd9d))
|
|
70
|
+
|
|
71
|
+
## [0.211.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.211.1...portal-network@v0.211.2) (2025-12-22)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* change to agents v3 ([#1944](https://github.com/stack-spot/portal-commons/issues/1944)) ([03d4e06](https://github.com/stack-spot/portal-commons/commit/03d4e06ed756818ac3019e0a15ee0ad13c352ca9))
|
|
77
|
+
|
|
78
|
+
## [0.211.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.211.0...portal-network@v0.211.1) (2025-12-22)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* mfe usage ([#1942](https://github.com/stack-spot/portal-commons/issues/1942)) ([5d0e302](https://github.com/stack-spot/portal-commons/commit/5d0e30250e60ac4300807141f34a30bebfa54f4c))
|
|
84
|
+
|
|
85
|
+
## [0.211.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.210.1...portal-network@v0.211.0) (2025-12-22)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
* add v2 repository and module execution batch methods to CodeShift ([#1883](https://github.com/stack-spot/portal-commons/issues/1883)) ([3264534](https://github.com/stack-spot/portal-commons/commit/3264534bbe7186e9bd33d71baa22d0ef155497a9))
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Bug Fixes
|
|
94
|
+
|
|
95
|
+
* up opa ([#1939](https://github.com/stack-spot/portal-commons/issues/1939)) ([03fbc4a](https://github.com/stack-spot/portal-commons/commit/03fbc4a641fac77382db7b843d62d620cbdbaca6))
|
|
96
|
+
|
|
97
|
+
## [0.210.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.210.0...portal-network@v0.210.1) (2025-12-19)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Bug Fixes
|
|
101
|
+
|
|
102
|
+
* fix local ([#1928](https://github.com/stack-spot/portal-commons/issues/1928)) ([6083267](https://github.com/stack-spot/portal-commons/commit/6083267e3fb5647375b1b8be4722bd24b6c07a47))
|
|
103
|
+
|
|
104
|
+
## [0.200.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.199.0-beta.1...portal-network-beta@v0.200.0-beta.1) (2025-12-19)
|
|
105
|
+
* update swagger ([#1933](https://github.com/stack-spot/portal-commons/issues/1933)) ([c4d1b90](https://github.com/stack-spot/portal-commons/commit/c4d1b90cfdf615cd5c05db6236ba3b8e4ca0fcc0))
|
|
106
|
+
|
|
107
|
+
## [0.210.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.209.0...portal-network@v0.210.0) (2025-12-19)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Features
|
|
111
|
+
|
|
112
|
+
* 3310 analytics token get info ([#1783](https://github.com/stack-spot/portal-commons/issues/1783)) ([11b1b4c](https://github.com/stack-spot/portal-commons/commit/11b1b4c94a8fe69e966f18c2f1d4a732901ff55c))
|
|
113
|
+
* compact menu as default ([9cde5a1](https://github.com/stack-spot/portal-commons/commit/9cde5a1115f6a3e74fa3c88a594589a5693751cf))
|
|
114
|
+
* compact menu as default ([#1912](https://github.com/stack-spot/portal-commons/issues/1912)) ([9cde5a1](https://github.com/stack-spot/portal-commons/commit/9cde5a1115f6a3e74fa3c88a594589a5693751cf))
|
|
115
|
+
* folders and projects ([#1895](https://github.com/stack-spot/portal-commons/issues/1895)) ([55b598d](https://github.com/stack-spot/portal-commons/commit/55b598d8af3c3b68ebe4b056ec25a399c2a01cf8))
|
|
116
|
+
* network notification uncommit ([#1898](https://github.com/stack-spot/portal-commons/issues/1898)) ([ba48399](https://github.com/stack-spot/portal-commons/commit/ba48399aa1651effa5283f9a698c1848ac03716d))
|
|
117
|
+
* new edp-bfa api ([#1904](https://github.com/stack-spot/portal-commons/issues/1904)) ([b4c1240](https://github.com/stack-spot/portal-commons/commit/b4c1240315b50c436dc2eb07bf98fbd6e648e7cc))
|
|
118
|
+
* updates ai api ([#1886](https://github.com/stack-spot/portal-commons/issues/1886)) ([7cee514](https://github.com/stack-spot/portal-commons/commit/7cee514f3f172f4059e01f473e85b49c9530a2a2))
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
### Bug Fixes
|
|
122
|
+
|
|
123
|
+
* add clear context workflow ([#1893](https://github.com/stack-spot/portal-commons/issues/1893)) ([38865a4](https://github.com/stack-spot/portal-commons/commit/38865a4ae102d9e9238324820d79b50e2acb8a2f))
|
|
124
|
+
* adjustment in ks v2 ([#1889](https://github.com/stack-spot/portal-commons/issues/1889)) ([d89e88e](https://github.com/stack-spot/portal-commons/commit/d89e88e07e8b84a1c4753bfee922b21f987f4097))
|
|
125
|
+
* adjusts account lib ([#1911](https://github.com/stack-spot/portal-commons/issues/1911)) ([2bf5fdd](https://github.com/stack-spot/portal-commons/commit/2bf5fddde0cce4d828f2a0c9160b70fefe2107f1))
|
|
126
|
+
* agent tools planner type ([#1896](https://github.com/stack-spot/portal-commons/issues/1896)) ([b102596](https://github.com/stack-spot/portal-commons/commit/b102596e0d69340700590b4c8f86a8d9f66a9af0))
|
|
127
|
+
* chaturl optional on api ([#1891](https://github.com/stack-spot/portal-commons/issues/1891)) ([5cf32ae](https://github.com/stack-spot/portal-commons/commit/5cf32aef1a578a72ce7b223310e8f90ad3e182b6))
|
|
128
|
+
* insight summary ([#1906](https://github.com/stack-spot/portal-commons/issues/1906)) ([48d090a](https://github.com/stack-spot/portal-commons/commit/48d090af05f362408f73bc6d385d1ef9657ed61f))
|
|
129
|
+
* lib network ([#1909](https://github.com/stack-spot/portal-commons/issues/1909)) ([82f3354](https://github.com/stack-spot/portal-commons/commit/82f33544809ac69cdb91fae0ba42fb2bb5e8dfec))
|
|
130
|
+
* New API Account and Network ([#1897](https://github.com/stack-spot/portal-commons/issues/1897)) ([850a8a8](https://github.com/stack-spot/portal-commons/commit/850a8a8b2d53fe5bc7bd4b62ad6fe0c9a7e27409))
|
|
131
|
+
* testing ([d5a0519](https://github.com/stack-spot/portal-commons/commit/d5a0519a62fb47c18ba4c449b5f98fce1d657c31))
|
|
132
|
+
* change local running ([#1925](https://github.com/stack-spot/portal-commons/issues/1925)) ([5a9c201](https://github.com/stack-spot/portal-commons/commit/5a9c201868de8fdbb835cdb045da74ab222b01dd))
|
|
133
|
+
|
|
134
|
+
## [0.209.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.208.3...portal-network@v0.209.0) (2025-12-18)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Features
|
|
138
|
+
|
|
139
|
+
* 3310 analytics token get info ([#1783](https://github.com/stack-spot/portal-commons/issues/1783)) ([11b1b4c](https://github.com/stack-spot/portal-commons/commit/11b1b4c94a8fe69e966f18c2f1d4a732901ff55c))
|
|
140
|
+
* folders and projects ([#1895](https://github.com/stack-spot/portal-commons/issues/1895)) ([55b598d](https://github.com/stack-spot/portal-commons/commit/55b598d8af3c3b68ebe4b056ec25a399c2a01cf8))
|
|
141
|
+
|
|
142
|
+
## [0.208.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.208.2...portal-network@v0.208.3) (2025-12-17)
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
* adjusts account lib ([#1911](https://github.com/stack-spot/portal-commons/issues/1911)) ([2bf5fdd](https://github.com/stack-spot/portal-commons/commit/2bf5fddde0cce4d828f2a0c9160b70fefe2107f1))
|
|
147
|
+
|
|
148
|
+
## [0.208.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.208.1...portal-network@v0.208.2) (2025-12-16)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Bug Fixes
|
|
152
|
+
|
|
153
|
+
* lib network ([#1909](https://github.com/stack-spot/portal-commons/issues/1909)) ([82f3354](https://github.com/stack-spot/portal-commons/commit/82f33544809ac69cdb91fae0ba42fb2bb5e8dfec))
|
|
154
|
+
|
|
155
|
+
## [0.208.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.208.0...portal-network@v0.208.1) (2025-12-16)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Bug Fixes
|
|
159
|
+
|
|
160
|
+
* New API Account and Network ([#1897](https://github.com/stack-spot/portal-commons/issues/1897)) ([850a8a8](https://github.com/stack-spot/portal-commons/commit/850a8a8b2d53fe5bc7bd4b62ad6fe0c9a7e27409))
|
|
161
|
+
|
|
162
|
+
## [0.208.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.207.0...portal-network@v0.208.0) (2025-12-15)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
### Features
|
|
166
|
+
|
|
167
|
+
* update agent tools ([#1884](https://github.com/stack-spot/portal-commons/issues/1884)) ([5fb3b61](https://github.com/stack-spot/portal-commons/commit/5fb3b616a02b4d1362552839e466fa79ccda27a7))
|
|
168
|
+
|
|
169
|
+
## [0.198.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.197.1-beta.1...portal-network-beta@v0.198.0-beta.1) (2025-12-11)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Features
|
|
173
|
+
|
|
174
|
+
* qc paginated ([#1875](https://github.com/stack-spot/portal-commons/issues/1875)) ([684da17](https://github.com/stack-spot/portal-commons/commit/684da170add59225ee737c52d2b5c63e460056a5))
|
|
175
|
+
* rating ([#1869](https://github.com/stack-spot/portal-commons/issues/1869)) ([1635948](https://github.com/stack-spot/portal-commons/commit/1635948abc0c25fc97cfc5a479dd6e329736cbb2))
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### Bug Fixes
|
|
179
|
+
|
|
180
|
+
* add delete ([#1880](https://github.com/stack-spot/portal-commons/issues/1880)) ([da91fd7](https://github.com/stack-spot/portal-commons/commit/da91fd7833ee2d82e819225fd23f4c9e4f4f5806))
|
|
181
|
+
* delete module ([#1881](https://github.com/stack-spot/portal-commons/issues/1881)) ([7817d26](https://github.com/stack-spot/portal-commons/commit/7817d260610248cacc62fff45a26b409a9f96f57))
|
|
182
|
+
|
|
183
|
+
## [0.197.1-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.197.0-beta.1...portal-network-beta@v0.197.1-beta.1) (2025-12-09)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### Features
|
|
187
|
+
|
|
188
|
+
* rating beta ([#1873](https://github.com/stack-spot/portal-commons/issues/1873)) ([a6bb8d9](https://github.com/stack-spot/portal-commons/commit/a6bb8d97ffd0c6169d0c0dc1aed92980771aa1d7))
|
|
189
|
+
|
|
190
|
+
## [0.197.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.196.0-beta.1...portal-network-beta@v0.197.0-beta.1) (2025-12-09)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### Features
|
|
194
|
+
|
|
195
|
+
* 3332 insights ([#1862](https://github.com/stack-spot/portal-commons/issues/1862)) ([9b3aa7c](https://github.com/stack-spot/portal-commons/commit/9b3aa7ca4c5dcbe72cce060b8ade2645e9d23659))
|
|
196
|
+
* python 'feat-3101-python-script' into beta-release ([21bf3ec](https://github.com/stack-spot/portal-commons/commit/21bf3ecf405c13108ca0470d738beb0ceb086e74))
|
|
197
|
+
* tools mcp ([#1858](https://github.com/stack-spot/portal-commons/issues/1858)) ([40d2bfe](https://github.com/stack-spot/portal-commons/commit/40d2bfe0fcea283e8cbb3cff8fc59ebd9f03f281))
|
|
198
|
+
* Upd agent tools ([#1845](https://github.com/stack-spot/portal-commons/issues/1845)) ([5a74800](https://github.com/stack-spot/portal-commons/commit/5a74800f85be09dd713934f46c7286d22167520a))
|
|
199
|
+
## [0.205.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.205.0...portal-network@v0.205.1) (2025-12-10)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Bug Fixes
|
|
203
|
+
|
|
204
|
+
* adjusts paginated ([#1860](https://github.com/stack-spot/portal-commons/issues/1860)) ([0bb24c7](https://github.com/stack-spot/portal-commons/commit/0bb24c7cea9b3a77e13d43506f80b161aaa3a5dc))
|
|
205
|
+
* remove qc script ([#1867](https://github.com/stack-spot/portal-commons/issues/1867)) ([612e4de](https://github.com/stack-spot/portal-commons/commit/612e4dea7bd1f11e1fc8ec951cfa4ad7676d4921))
|
|
206
|
+
* Update code shift swagger ([#1865](https://github.com/stack-spot/portal-commons/issues/1865)) ([45e706d](https://github.com/stack-spot/portal-commons/commit/45e706d7d6559a44c9a170145a8525f8047872de))
|
|
207
|
+
* delete module ([#1881](https://github.com/stack-spot/portal-commons/issues/1881)) ([7817d26](https://github.com/stack-spot/portal-commons/commit/7817d260610248cacc62fff45a26b409a9f96f57))
|
|
208
|
+
|
|
209
|
+
## [0.205.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.204.2...portal-network@v0.205.0) (2025-12-09)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### Features
|
|
213
|
+
|
|
214
|
+
* qc paginated ([#1875](https://github.com/stack-spot/portal-commons/issues/1875)) ([684da17](https://github.com/stack-spot/portal-commons/commit/684da170add59225ee737c52d2b5c63e460056a5))
|
|
215
|
+
* rating ([#1869](https://github.com/stack-spot/portal-commons/issues/1869)) ([1635948](https://github.com/stack-spot/portal-commons/commit/1635948abc0c25fc97cfc5a479dd6e329736cbb2))
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
* add delete ([#1880](https://github.com/stack-spot/portal-commons/issues/1880)) ([da91fd7](https://github.com/stack-spot/portal-commons/commit/da91fd7833ee2d82e819225fd23f4c9e4f4f5806))
|
|
221
|
+
|
|
222
|
+
## [0.204.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.204.1...portal-network@v0.204.2) (2025-12-08)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Bug Fixes
|
|
226
|
+
|
|
227
|
+
* remove qc script ([#1867](https://github.com/stack-spot/portal-commons/issues/1867)) ([612e4de](https://github.com/stack-spot/portal-commons/commit/612e4dea7bd1f11e1fc8ec951cfa4ad7676d4921))
|
|
228
|
+
|
|
229
|
+
## [0.204.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.204.0...portal-network@v0.204.1) (2025-12-08)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
### Bug Fixes
|
|
233
|
+
|
|
234
|
+
* Update code shift swagger ([#1865](https://github.com/stack-spot/portal-commons/issues/1865)) ([45e706d](https://github.com/stack-spot/portal-commons/commit/45e706d7d6559a44c9a170145a8525f8047872de))
|
|
235
|
+
|
|
236
|
+
## [0.204.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.203.0...portal-network@v0.204.0) (2025-12-05)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
### Features
|
|
240
|
+
|
|
241
|
+
* Upd agent tools ([#1845](https://github.com/stack-spot/portal-commons/issues/1845)) ([5a74800](https://github.com/stack-spot/portal-commons/commit/5a74800f85be09dd713934f46c7286d22167520a))
|
|
242
|
+
|
|
243
|
+
## [0.203.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.202.1...portal-network@v0.203.0) (2025-12-04)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### Features
|
|
247
|
+
|
|
248
|
+
* 3332 insights ([#1862](https://github.com/stack-spot/portal-commons/issues/1862)) ([9b3aa7c](https://github.com/stack-spot/portal-commons/commit/9b3aa7ca4c5dcbe72cce060b8ade2645e9d23659))
|
|
249
|
+
|
|
3
250
|
## [0.202.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.202.0...portal-network@v0.202.1) (2025-12-04)
|
|
4
251
|
|
|
5
252
|
|