fusio-sdk 7.0.1 → 7.0.3
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -14
- package/dist/index.d.ts +16 -14
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -674,6 +674,19 @@ interface BackendAgentMessage {
|
|
|
674
674
|
interface BackendAgentMessageCollection extends CommonCollection<BackendAgentMessage> {
|
|
675
675
|
}
|
|
676
676
|
|
|
677
|
+
/**
|
|
678
|
+
* BackendAgentOutput automatically generated by SDKgen please do not edit this file manually
|
|
679
|
+
* {@link https://sdkgen.app}
|
|
680
|
+
*/
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* This object represents an agent output
|
|
684
|
+
*/
|
|
685
|
+
interface BackendAgentOutput {
|
|
686
|
+
id?: string;
|
|
687
|
+
output?: BackendAgentContentBinary | BackendAgentContentChoice | BackendAgentContentObject | BackendAgentContentText | BackendAgentContentToolCall;
|
|
688
|
+
}
|
|
689
|
+
|
|
677
690
|
/**
|
|
678
691
|
* BackendAgentMessageTag automatically generated by SDKgen please do not edit this file manually
|
|
679
692
|
* {@link https://sdkgen.app}
|
|
@@ -691,23 +704,11 @@ declare class BackendAgentMessageTag extends TagAbstract {
|
|
|
691
704
|
/**
|
|
692
705
|
* Submits a new agent message
|
|
693
706
|
*
|
|
694
|
-
* @returns {Promise<
|
|
707
|
+
* @returns {Promise<BackendAgentOutput>}
|
|
695
708
|
* @throws {CommonMessageException}
|
|
696
709
|
* @throws {ClientException}
|
|
697
710
|
*/
|
|
698
|
-
submit(agentId: string, payload:
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
/**
|
|
702
|
-
* BackendAgentOutput automatically generated by SDKgen please do not edit this file manually
|
|
703
|
-
* {@link https://sdkgen.app}
|
|
704
|
-
*/
|
|
705
|
-
|
|
706
|
-
/**
|
|
707
|
-
* This object represents an agent output
|
|
708
|
-
*/
|
|
709
|
-
interface BackendAgentOutput {
|
|
710
|
-
output?: BackendAgentContentBinary | BackendAgentContentChoice | BackendAgentContentObject | BackendAgentContentText | BackendAgentContentToolCall;
|
|
711
|
+
submit(agentId: string, payload: BackendAgentInput): Promise<BackendAgentOutput>;
|
|
711
712
|
}
|
|
712
713
|
|
|
713
714
|
/**
|
|
@@ -3938,6 +3939,7 @@ interface BackendTaxonomyCreate extends BackendTaxonomy {
|
|
|
3938
3939
|
interface BackendTaxonomyMove {
|
|
3939
3940
|
operations?: Array<number>;
|
|
3940
3941
|
actions?: Array<number>;
|
|
3942
|
+
schemas?: Array<number>;
|
|
3941
3943
|
events?: Array<number>;
|
|
3942
3944
|
cronjobs?: Array<number>;
|
|
3943
3945
|
triggers?: Array<number>;
|
package/dist/index.d.ts
CHANGED
|
@@ -674,6 +674,19 @@ interface BackendAgentMessage {
|
|
|
674
674
|
interface BackendAgentMessageCollection extends CommonCollection<BackendAgentMessage> {
|
|
675
675
|
}
|
|
676
676
|
|
|
677
|
+
/**
|
|
678
|
+
* BackendAgentOutput automatically generated by SDKgen please do not edit this file manually
|
|
679
|
+
* {@link https://sdkgen.app}
|
|
680
|
+
*/
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* This object represents an agent output
|
|
684
|
+
*/
|
|
685
|
+
interface BackendAgentOutput {
|
|
686
|
+
id?: string;
|
|
687
|
+
output?: BackendAgentContentBinary | BackendAgentContentChoice | BackendAgentContentObject | BackendAgentContentText | BackendAgentContentToolCall;
|
|
688
|
+
}
|
|
689
|
+
|
|
677
690
|
/**
|
|
678
691
|
* BackendAgentMessageTag automatically generated by SDKgen please do not edit this file manually
|
|
679
692
|
* {@link https://sdkgen.app}
|
|
@@ -691,23 +704,11 @@ declare class BackendAgentMessageTag extends TagAbstract {
|
|
|
691
704
|
/**
|
|
692
705
|
* Submits a new agent message
|
|
693
706
|
*
|
|
694
|
-
* @returns {Promise<
|
|
707
|
+
* @returns {Promise<BackendAgentOutput>}
|
|
695
708
|
* @throws {CommonMessageException}
|
|
696
709
|
* @throws {ClientException}
|
|
697
710
|
*/
|
|
698
|
-
submit(agentId: string, payload:
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
/**
|
|
702
|
-
* BackendAgentOutput automatically generated by SDKgen please do not edit this file manually
|
|
703
|
-
* {@link https://sdkgen.app}
|
|
704
|
-
*/
|
|
705
|
-
|
|
706
|
-
/**
|
|
707
|
-
* This object represents an agent output
|
|
708
|
-
*/
|
|
709
|
-
interface BackendAgentOutput {
|
|
710
|
-
output?: BackendAgentContentBinary | BackendAgentContentChoice | BackendAgentContentObject | BackendAgentContentText | BackendAgentContentToolCall;
|
|
711
|
+
submit(agentId: string, payload: BackendAgentInput): Promise<BackendAgentOutput>;
|
|
711
712
|
}
|
|
712
713
|
|
|
713
714
|
/**
|
|
@@ -3938,6 +3939,7 @@ interface BackendTaxonomyCreate extends BackendTaxonomy {
|
|
|
3938
3939
|
interface BackendTaxonomyMove {
|
|
3939
3940
|
operations?: Array<number>;
|
|
3940
3941
|
actions?: Array<number>;
|
|
3942
|
+
schemas?: Array<number>;
|
|
3941
3943
|
events?: Array<number>;
|
|
3942
3944
|
cronjobs?: Array<number>;
|
|
3943
3945
|
triggers?: Array<number>;
|
package/dist/index.js
CHANGED
|
@@ -451,7 +451,7 @@ var BackendAgentMessageTag = class extends TagAbstract4 {
|
|
|
451
451
|
/**
|
|
452
452
|
* Submits a new agent message
|
|
453
453
|
*
|
|
454
|
-
* @returns {Promise<
|
|
454
|
+
* @returns {Promise<BackendAgentOutput>}
|
|
455
455
|
* @throws {CommonMessageException}
|
|
456
456
|
* @throws {ClientException}
|
|
457
457
|
*/
|