@stack-spot/portal-network 0.84.0 → 0.84.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 +7 -0
- package/dist/client/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/client/types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.84.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.84.0...portal-network@v0.84.1) (2025-02-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* type ([#735](https://github.com/stack-spot/portal-commons/issues/735)) ([61308b7](https://github.com/stack-spot/portal-commons/commit/61308b73da61b8a1752130031e138b680be10fa6))
|
|
9
|
+
|
|
3
10
|
## [0.84.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.83.2...portal-network@v0.84.0) (2025-02-17)
|
|
4
11
|
|
|
5
12
|
|
package/dist/client/types.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ export interface FixedConversationResponse extends ConversationResponse {
|
|
|
164
164
|
history?: FixedConversationHistoryResponse[];
|
|
165
165
|
}
|
|
166
166
|
export interface FixedContentDependencyResponse extends ContentDependencyResponse {
|
|
167
|
-
type: 'agent' | '
|
|
167
|
+
type: 'agent' | 'knowledge-source' | 'quick-command';
|
|
168
168
|
visibility: 'account' | 'personal' | 'shared';
|
|
169
169
|
}
|
|
170
170
|
export interface FixedDependencyResponse extends DependencyResponse {
|
package/package.json
CHANGED
package/src/client/types.ts
CHANGED
|
@@ -199,7 +199,7 @@ export interface FixedConversationResponse extends ConversationResponse {
|
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
export interface FixedContentDependencyResponse extends ContentDependencyResponse {
|
|
202
|
-
type: 'agent' | '
|
|
202
|
+
type: 'agent' | 'knowledge-source' | 'quick-command',
|
|
203
203
|
visibility: 'account' | 'personal' | 'shared',
|
|
204
204
|
}
|
|
205
205
|
|