@stack-spot/portal-network 0.189.0 → 0.190.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 +146 -0
- package/dist/api/account.d.ts +85 -202
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +68 -140
- package/dist/api/account.js.map +1 -1
- package/dist/api/ai.d.ts +189 -86
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +238 -142
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatform.d.ts +363 -188
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +253 -80
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/codeShift.d.ts +5 -3
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/genAiInference.d.ts +22 -2
- package/dist/api/genAiInference.d.ts.map +1 -1
- package/dist/api/genAiInference.js +22 -3
- package/dist/api/genAiInference.js.map +1 -1
- package/dist/client/account.d.ts +18 -4
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +58 -31
- package/dist/client/account.js.map +1 -1
- package/dist/client/ai.d.ts +29 -0
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +121 -14
- package/dist/client/ai.js.map +1 -1
- package/dist/client/cloud-platform.d.ts +128 -1
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +92 -2
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/code-shift.js +1 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/types.d.ts +26 -5
- package/dist/client/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/readme.md +2 -1
- package/src/api/account.ts +127 -392
- package/src/api/agent-tools.ts +3 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +638 -264
- package/src/api/codeShift.ts +5 -3
- package/src/api/genAiInference.ts +47 -4
- package/src/api/notification.ts +2 -0
- package/src/client/account.ts +54 -38
- package/src/client/ai.ts +126 -13
- package/src/client/cloud-platform.ts +52 -2
- package/src/client/code-shift.ts +1 -1
- package/src/client/types.ts +27 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,106 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.190.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.189.0-beta.1...portal-network-beta@v0.190.0-beta.1) (2025-11-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add runtime requests in cloud platform ([#1727](https://github.com/stack-spot/portal-commons/issues/1727)) ([13dbecc](https://github.com/stack-spot/portal-commons/commit/13dbecc2c8dd328efc5b58ff17c65ea11300727d))
|
|
9
|
+
* add update tags in cloud platform resources ([#1732](https://github.com/stack-spot/portal-commons/issues/1732)) ([552c3ab](https://github.com/stack-spot/portal-commons/commit/552c3aba1e9866b48a133707bbe8bde5e413331e))
|
|
10
|
+
* execution modes chat ([#1656](https://github.com/stack-spot/portal-commons/issues/1656)) ([b44b3e8](https://github.com/stack-spot/portal-commons/commit/b44b3e89b8ae4804650d1307d763dafc406f0ec5))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add execution id ([#1738](https://github.com/stack-spot/portal-commons/issues/1738)) ([8103316](https://github.com/stack-spot/portal-commons/commit/81033166874ff2905ca0c7a59c92cdafbeee6744))
|
|
16
|
+
* Created new endpoint to reactivate trial account ([#1734](https://github.com/stack-spot/portal-commons/issues/1734)) ([eed4f9e](https://github.com/stack-spot/portal-commons/commit/eed4f9efba9f6ca78e9f5248fa815d503bf0b3fe))
|
|
17
|
+
* remove tenandId in runtime creation ([#1729](https://github.com/stack-spot/portal-commons/issues/1729)) ([5795fa6](https://github.com/stack-spot/portal-commons/commit/5795fa6b31f66cac6c308308397f48f403e4feaf))
|
|
18
|
+
* up code buddy types ([#1768](https://github.com/stack-spot/portal-commons/issues/1768)) ([651d5d3](https://github.com/stack-spot/portal-commons/commit/651d5d356be02d0a6573ec664b3795c8e5b9e44b))
|
|
19
|
+
* upd gen ai inference ([#1724](https://github.com/stack-spot/portal-commons/issues/1724)) ([fa094c6](https://github.com/stack-spot/portal-commons/commit/fa094c6da1a33cab4647e28ec6de6b89766dedbe))
|
|
20
|
+
|
|
21
|
+
## [0.194.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.194.1...portal-network@v0.194.2) (2025-10-31)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* add execution id ([#1738](https://github.com/stack-spot/portal-commons/issues/1738)) ([8103316](https://github.com/stack-spot/portal-commons/commit/81033166874ff2905ca0c7a59c92cdafbeee6744))
|
|
27
|
+
|
|
28
|
+
## [0.194.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.194.0...portal-network@v0.194.1) (2025-10-29)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* Created new endpoint to reactivate trial account ([#1734](https://github.com/stack-spot/portal-commons/issues/1734)) ([eed4f9e](https://github.com/stack-spot/portal-commons/commit/eed4f9efba9f6ca78e9f5248fa815d503bf0b3fe))
|
|
34
|
+
|
|
35
|
+
## [0.194.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.193.0...portal-network@v0.194.0) (2025-10-28)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* add update tags in cloud platform resources ([#1732](https://github.com/stack-spot/portal-commons/issues/1732)) ([552c3ab](https://github.com/stack-spot/portal-commons/commit/552c3aba1e9866b48a133707bbe8bde5e413331e))
|
|
41
|
+
|
|
42
|
+
## [0.193.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.192.1...portal-network@v0.193.0) (2025-10-28)
|
|
43
|
+
## [0.189.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.188.0-beta.1...portal-network-beta@v0.189.0-beta.1) (2025-10-23)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
* execution modes chat ([#1656](https://github.com/stack-spot/portal-commons/issues/1656)) ([b44b3e8](https://github.com/stack-spot/portal-commons/commit/b44b3e89b8ae4804650d1307d763dafc406f0ec5))
|
|
49
|
+
|
|
50
|
+
## [0.192.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.192.0...portal-network@v0.192.1) (2025-10-27)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
* remove tenandId in runtime creation ([#1729](https://github.com/stack-spot/portal-commons/issues/1729)) ([5795fa6](https://github.com/stack-spot/portal-commons/commit/5795fa6b31f66cac6c308308397f48f403e4feaf))
|
|
56
|
+
|
|
57
|
+
## [0.192.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.191.1...portal-network@v0.192.0) (2025-10-24)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
|
|
62
|
+
* add runtime requests in cloud platform ([#1727](https://github.com/stack-spot/portal-commons/issues/1727)) ([13dbecc](https://github.com/stack-spot/portal-commons/commit/13dbecc2c8dd328efc5b58ff17c65ea11300727d))
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### Bug Fixes
|
|
66
|
+
|
|
67
|
+
* upd gen ai inference ([#1724](https://github.com/stack-spot/portal-commons/issues/1724)) ([fa094c6](https://github.com/stack-spot/portal-commons/commit/fa094c6da1a33cab4647e28ec6de6b89766dedbe))
|
|
68
|
+
|
|
69
|
+
## [0.191.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.191.0...portal-network@v0.191.1) (2025-10-24)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Bug Fixes
|
|
73
|
+
|
|
74
|
+
* account apiand client ([#1722](https://github.com/stack-spot/portal-commons/issues/1722)) ([f93aaf8](https://github.com/stack-spot/portal-commons/commit/f93aaf8b2763dae1e3dc84a743bff2fa1bf5cdf5))
|
|
75
|
+
|
|
76
|
+
## [0.191.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.190.0...portal-network@v0.191.0) (2025-10-24)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Features
|
|
80
|
+
|
|
81
|
+
* Extends role types and report status with new fields ([#1720](https://github.com/stack-spot/portal-commons/issues/1720)) ([6a1237a](https://github.com/stack-spot/portal-commons/commit/6a1237a95169f13c34c0fd7b0ff74098c87bf903))
|
|
82
|
+
|
|
83
|
+
## [0.190.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.189.0...portal-network@v0.190.0) (2025-10-23)
|
|
84
|
+
* update account api ([#1711](https://github.com/stack-spot/portal-commons/issues/1711)) ([2b0f6d2](https://github.com/stack-spot/portal-commons/commit/2b0f6d250b7fb668adc2e8fe245df98b3e46f5d8))
|
|
85
|
+
|
|
86
|
+
## [0.188.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.187.1-beta.1...portal-network-beta@v0.188.0-beta.1) (2025-10-21)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Features
|
|
90
|
+
|
|
91
|
+
* update account api ([#1711](https://github.com/stack-spot/portal-commons/issues/1711)) ([2b0f6d2](https://github.com/stack-spot/portal-commons/commit/2b0f6d250b7fb668adc2e8fe245df98b3e46f5d8))
|
|
92
|
+
* Adds language breakdown and merge info to report types ([#1704](https://github.com/stack-spot/portal-commons/issues/1704)) ([d6329c6](https://github.com/stack-spot/portal-commons/commit/d6329c65849af63781ce7e0a1a809f642ab49dae))
|
|
93
|
+
* update account api ([#1710](https://github.com/stack-spot/portal-commons/issues/1710)) ([daf7798](https://github.com/stack-spot/portal-commons/commit/daf779812758ad5df6a6fa50e68e1068be10f3c8))
|
|
94
|
+
|
|
3
95
|
## [0.189.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.188.1...portal-network@v0.189.0) (2025-10-20)
|
|
96
|
+
## [0.187.1-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.187.0-beta.1...portal-network-beta@v0.187.1-beta.1) (2025-10-20)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Bug Fixes
|
|
100
|
+
|
|
101
|
+
* update agents api to accept filter by order ([#1706](https://github.com/stack-spot/portal-commons/issues/1706)) ([00bc884](https://github.com/stack-spot/portal-commons/commit/00bc884a62b1d8cb4ae5ac42735d5585d61e691f))
|
|
102
|
+
|
|
103
|
+
## [0.187.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.186.1-beta.1...portal-network-beta@v0.187.0-beta.1) (2025-10-17)
|
|
4
104
|
|
|
5
105
|
|
|
6
106
|
### Features
|
|
@@ -8,12 +108,21 @@
|
|
|
8
108
|
* Adds language breakdown and merge info to report types ([#1704](https://github.com/stack-spot/portal-commons/issues/1704)) ([d6329c6](https://github.com/stack-spot/portal-commons/commit/d6329c65849af63781ce7e0a1a809f642ab49dae))
|
|
9
109
|
|
|
10
110
|
## [0.188.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.188.0...portal-network@v0.188.1) (2025-10-20)
|
|
111
|
+
* add new request secrets account ([#1697](https://github.com/stack-spot/portal-commons/issues/1697)) ([8ed2ddb](https://github.com/stack-spot/portal-commons/commit/8ed2ddb03804541204e31263e73778a726702714))
|
|
112
|
+
* Adds customer rating support to report APIs ([#1648](https://github.com/stack-spot/portal-commons/issues/1648)) ([e6988ff](https://github.com/stack-spot/portal-commons/commit/e6988ff48b404c5a363cf677fca7d2b3d4c0cec6))
|
|
113
|
+
* Adds module update support and improves type safety ([#1700](https://github.com/stack-spot/portal-commons/issues/1700)) ([05aa8b5](https://github.com/stack-spot/portal-commons/commit/05aa8b59d001eb494cec636e5149091e86e73cb8))
|
|
114
|
+
* Adds support for stack and workflow extension types ([#1690](https://github.com/stack-spot/portal-commons/issues/1690)) ([2c9db3e](https://github.com/stack-spot/portal-commons/commit/2c9db3e7416204e4b2e9e3cee0f273aba8b178cf))
|
|
115
|
+
|
|
116
|
+
## [0.186.1-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.186.0-beta.1...portal-network-beta@v0.186.1-beta.1) (2025-10-09)
|
|
11
117
|
|
|
12
118
|
|
|
13
119
|
### Bug Fixes
|
|
14
120
|
|
|
15
121
|
* update agents api to accept filter by order ([#1706](https://github.com/stack-spot/portal-commons/issues/1706)) ([00bc884](https://github.com/stack-spot/portal-commons/commit/00bc884a62b1d8cb4ae5ac42735d5585d61e691f))
|
|
16
122
|
|
|
123
|
+
* test deploy ([c290d44](https://github.com/stack-spot/portal-commons/commit/c290d44fb00bfbf1b244f049cc26daff19544b0b))
|
|
124
|
+
|
|
125
|
+
## [0.186.0-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.185.1-beta.1...portal-network-beta@v0.186.0-beta.1) (2025-10-08)
|
|
17
126
|
## [0.188.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.187.0...portal-network@v0.188.0) (2025-10-14)
|
|
18
127
|
|
|
19
128
|
|
|
@@ -44,11 +153,46 @@
|
|
|
44
153
|
|
|
45
154
|
* add tenant requests in cloud platform ([#1686](https://github.com/stack-spot/portal-commons/issues/1686)) ([a50c7f2](https://github.com/stack-spot/portal-commons/commit/a50c7f20c11c6fc59987eb66af18761907eb1743))
|
|
46
155
|
|
|
156
|
+
|
|
157
|
+
### Bug Fixes
|
|
158
|
+
|
|
159
|
+
* add some null check ([#1684](https://github.com/stack-spot/portal-commons/issues/1684)) ([a8487c4](https://github.com/stack-spot/portal-commons/commit/a8487c43bd9966d89085dc3a9c3effa6b77bda7c))
|
|
160
|
+
|
|
161
|
+
## [0.185.1-beta.1](https://github.com/stack-spot/portal-commons/compare/portal-network-beta@v0.185.0-beta.1...portal-network-beta@v0.185.1-beta.1) (2025-10-07)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### Bug Fixes
|
|
165
|
+
|
|
166
|
+
* show multiple tools in single step ([#1680](https://github.com/stack-spot/portal-commons/issues/1680)) ([3987405](https://github.com/stack-spot/portal-commons/commit/398740560dd60e40b16ec822e4f7073299fe4296))
|
|
167
|
+
|
|
168
|
+
## [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)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Features
|
|
172
|
+
|
|
173
|
+
* 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))
|
|
174
|
+
* 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))
|
|
175
|
+
|
|
176
|
+
## [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)
|
|
47
177
|
## [0.185.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.184.0...portal-network@v0.185.0) (2025-10-06)
|
|
48
178
|
|
|
49
179
|
|
|
50
180
|
### Features
|
|
51
181
|
|
|
182
|
+
* 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))
|
|
183
|
+
* 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))
|
|
184
|
+
* update beta 'feat-3049-execution-modes-chat' into beta-release ([a545303](https://github.com/stack-spot/portal-commons/commit/a545303a95625b7a5ec19c06253ee388f8b1abe0))
|
|
185
|
+
* Update beta release ([#1653](https://github.com/stack-spot/portal-commons/issues/1653)) ([fe22548](https://github.com/stack-spot/portal-commons/commit/fe22548292f47a325c6e0eecb41f8b36ab8d5307))
|
|
186
|
+
* upgrades translation lib ([#1643](https://github.com/stack-spot/portal-commons/issues/1643)) ([05db11f](https://github.com/stack-spot/portal-commons/commit/05db11f399dd2c6e1815e74ee99f8b6c2e6fedef))
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Bug Fixes
|
|
190
|
+
|
|
191
|
+
* Merge branch 'feat-3049-execution-modes-chat' into beta-release ([065c737](https://github.com/stack-spot/portal-commons/commit/065c7372f72da124a50bca9b53d06b1b937f4eae))
|
|
192
|
+
* Merge branch 'fix-trial-agents' into beta-release ([1239c2e](https://github.com/stack-spot/portal-commons/commit/1239c2e0f0082b1ad88c5168802275d657480262))
|
|
193
|
+
* Update swagger ([#1639](https://github.com/stack-spot/portal-commons/issues/1639)) ([d953972](https://github.com/stack-spot/portal-commons/commit/d953972405210de1a6b62e966d5a5a1fb5ea9b84))
|
|
194
|
+
|
|
195
|
+
## [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)
|
|
52
196
|
* 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))
|
|
53
197
|
|
|
54
198
|
## [0.184.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.183.0...portal-network@v0.184.0) (2025-10-06)
|
|
@@ -56,6 +200,8 @@
|
|
|
56
200
|
|
|
57
201
|
### Features
|
|
58
202
|
|
|
203
|
+
* 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))
|
|
204
|
+
* update beta 'feat-3049-execution-modes-chat' into beta-release ([a545303](https://github.com/stack-spot/portal-commons/commit/a545303a95625b7a5ec19c06253ee388f8b1abe0))
|
|
59
205
|
* 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))
|
|
60
206
|
|
|
61
207
|
## [0.183.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.182.0...portal-network@v0.183.0) (2025-10-01)
|