fusio-sdk 7.0.7 → 7.0.9
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 +409 -197
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +146 -1
- package/dist/index.d.ts +146 -1
- package/dist/index.js +402 -193
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -681,6 +681,7 @@ interface BackendAgent {
|
|
|
681
681
|
id?: number;
|
|
682
682
|
connection?: number;
|
|
683
683
|
type?: number;
|
|
684
|
+
public?: boolean;
|
|
684
685
|
name?: string;
|
|
685
686
|
description?: string;
|
|
686
687
|
introduction?: string;
|
|
@@ -3793,6 +3794,48 @@ declare class BackendSdkTag extends TagAbstract {
|
|
|
3793
3794
|
getAll(): Promise<BackendSdkResponse>;
|
|
3794
3795
|
}
|
|
3795
3796
|
|
|
3797
|
+
/**
|
|
3798
|
+
* BackendSpecificationGet automatically generated by SDKgen please do not edit this file manually
|
|
3799
|
+
* {@link https://sdkgen.app}
|
|
3800
|
+
*/
|
|
3801
|
+
interface BackendSpecificationGet {
|
|
3802
|
+
spec?: any;
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
/**
|
|
3806
|
+
* BackendSpecificationPublish automatically generated by SDKgen please do not edit this file manually
|
|
3807
|
+
* {@link https://sdkgen.app}
|
|
3808
|
+
*/
|
|
3809
|
+
interface BackendSpecificationPublish {
|
|
3810
|
+
name?: string;
|
|
3811
|
+
filterName?: string;
|
|
3812
|
+
standalone?: boolean;
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
/**
|
|
3816
|
+
* BackendSpecificationTag automatically generated by SDKgen please do not edit this file manually
|
|
3817
|
+
* {@link https://sdkgen.app}
|
|
3818
|
+
*/
|
|
3819
|
+
|
|
3820
|
+
declare class BackendSpecificationTag extends TagAbstract {
|
|
3821
|
+
/**
|
|
3822
|
+
* Returns the TypeHub specification
|
|
3823
|
+
*
|
|
3824
|
+
* @returns {Promise<BackendSpecificationGet>}
|
|
3825
|
+
* @throws {CommonMessageException}
|
|
3826
|
+
* @throws {ClientException}
|
|
3827
|
+
*/
|
|
3828
|
+
get(): Promise<BackendSpecificationGet>;
|
|
3829
|
+
/**
|
|
3830
|
+
* Publish the specification
|
|
3831
|
+
*
|
|
3832
|
+
* @returns {Promise<CommonMessage>}
|
|
3833
|
+
* @throws {CommonMessageException}
|
|
3834
|
+
* @throws {ClientException}
|
|
3835
|
+
*/
|
|
3836
|
+
publish(payload: BackendSpecificationPublish): Promise<CommonMessage>;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3796
3839
|
/**
|
|
3797
3840
|
* BackendStatisticCount automatically generated by SDKgen please do not edit this file manually
|
|
3798
3841
|
* {@link https://sdkgen.app}
|
|
@@ -4630,6 +4673,7 @@ declare class BackendTag extends TagAbstract {
|
|
|
4630
4673
|
schema(): BackendSchemaTag;
|
|
4631
4674
|
scope(): BackendScopeTag;
|
|
4632
4675
|
sdk(): BackendSdkTag;
|
|
4676
|
+
specification(): BackendSpecificationTag;
|
|
4633
4677
|
statistic(): BackendStatisticTag;
|
|
4634
4678
|
taxonomy(): BackendTaxonomyTag;
|
|
4635
4679
|
tenant(): BackendTenantTag;
|
|
@@ -4882,6 +4926,106 @@ declare class ConsumerAccountTag extends TagAbstract {
|
|
|
4882
4926
|
update(payload: ConsumerUserAccount): Promise<CommonMessage>;
|
|
4883
4927
|
}
|
|
4884
4928
|
|
|
4929
|
+
/**
|
|
4930
|
+
* ConsumerAgent automatically generated by SDKgen please do not edit this file manually
|
|
4931
|
+
* {@link https://sdkgen.app}
|
|
4932
|
+
*/
|
|
4933
|
+
/**
|
|
4934
|
+
* This object represents an agent
|
|
4935
|
+
*/
|
|
4936
|
+
interface ConsumerAgent {
|
|
4937
|
+
id?: number;
|
|
4938
|
+
name?: string;
|
|
4939
|
+
description?: string;
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4942
|
+
/**
|
|
4943
|
+
* ConsumerAgentCollection automatically generated by SDKgen please do not edit this file manually
|
|
4944
|
+
* {@link https://sdkgen.app}
|
|
4945
|
+
*/
|
|
4946
|
+
|
|
4947
|
+
/**
|
|
4948
|
+
* Represents a collection of agent messages
|
|
4949
|
+
*/
|
|
4950
|
+
interface ConsumerAgentCollection extends CommonCollection<ConsumerAgent> {
|
|
4951
|
+
}
|
|
4952
|
+
|
|
4953
|
+
/**
|
|
4954
|
+
* ConsumerAgentMessage automatically generated by SDKgen please do not edit this file manually
|
|
4955
|
+
* {@link https://sdkgen.app}
|
|
4956
|
+
*/
|
|
4957
|
+
|
|
4958
|
+
/**
|
|
4959
|
+
* This object represents an agent message
|
|
4960
|
+
*/
|
|
4961
|
+
interface ConsumerAgentMessage {
|
|
4962
|
+
id?: number;
|
|
4963
|
+
chatId?: string;
|
|
4964
|
+
role?: string;
|
|
4965
|
+
item?: AgentItemBinary | AgentItemChoice | AgentItemObject | AgentItemText | AgentItemToolCall;
|
|
4966
|
+
insertDate?: string;
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
/**
|
|
4970
|
+
* ConsumerAgentMessageCollection automatically generated by SDKgen please do not edit this file manually
|
|
4971
|
+
* {@link https://sdkgen.app}
|
|
4972
|
+
*/
|
|
4973
|
+
|
|
4974
|
+
/**
|
|
4975
|
+
* Represents a collection of agent messages
|
|
4976
|
+
*/
|
|
4977
|
+
interface ConsumerAgentMessageCollection extends CommonCollection<ConsumerAgentMessage> {
|
|
4978
|
+
}
|
|
4979
|
+
|
|
4980
|
+
/**
|
|
4981
|
+
* ConsumerAgentMessageTag automatically generated by SDKgen please do not edit this file manually
|
|
4982
|
+
* {@link https://sdkgen.app}
|
|
4983
|
+
*/
|
|
4984
|
+
|
|
4985
|
+
declare class ConsumerAgentMessageTag extends TagAbstract {
|
|
4986
|
+
/**
|
|
4987
|
+
* Returns a paginated list of agent messages
|
|
4988
|
+
*
|
|
4989
|
+
* @returns {Promise<ConsumerAgentMessageCollection>}
|
|
4990
|
+
* @throws {CommonMessageException}
|
|
4991
|
+
* @throws {ClientException}
|
|
4992
|
+
*/
|
|
4993
|
+
getAll(agentId: string, chatId?: string): Promise<ConsumerAgentMessageCollection>;
|
|
4994
|
+
/**
|
|
4995
|
+
* Submits a new agent message
|
|
4996
|
+
*
|
|
4997
|
+
* @returns {Promise<AgentOutput>}
|
|
4998
|
+
* @throws {CommonMessageException}
|
|
4999
|
+
* @throws {ClientException}
|
|
5000
|
+
*/
|
|
5001
|
+
submit(agentId: string, payload: AgentInput): Promise<AgentOutput>;
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
/**
|
|
5005
|
+
* ConsumerAgentTag automatically generated by SDKgen please do not edit this file manually
|
|
5006
|
+
* {@link https://sdkgen.app}
|
|
5007
|
+
*/
|
|
5008
|
+
|
|
5009
|
+
declare class ConsumerAgentTag extends TagAbstract {
|
|
5010
|
+
message(): ConsumerAgentMessageTag;
|
|
5011
|
+
/**
|
|
5012
|
+
* Returns a specific agent
|
|
5013
|
+
*
|
|
5014
|
+
* @returns {Promise<ConsumerAgent>}
|
|
5015
|
+
* @throws {CommonMessageException}
|
|
5016
|
+
* @throws {ClientException}
|
|
5017
|
+
*/
|
|
5018
|
+
get(agentId: string): Promise<ConsumerAgent>;
|
|
5019
|
+
/**
|
|
5020
|
+
* Returns a paginated list of agents
|
|
5021
|
+
*
|
|
5022
|
+
* @returns {Promise<ConsumerAgentCollection>}
|
|
5023
|
+
* @throws {CommonMessageException}
|
|
5024
|
+
* @throws {ClientException}
|
|
5025
|
+
*/
|
|
5026
|
+
getAll(startIndex?: number, count?: number, search?: string): Promise<ConsumerAgentCollection>;
|
|
5027
|
+
}
|
|
5028
|
+
|
|
4885
5029
|
/**
|
|
4886
5030
|
* ConsumerApp automatically generated by SDKgen please do not edit this file manually
|
|
4887
5031
|
* {@link https://sdkgen.app}
|
|
@@ -5679,6 +5823,7 @@ declare class ConsumerWebhookTag extends TagAbstract {
|
|
|
5679
5823
|
|
|
5680
5824
|
declare class ConsumerTag extends TagAbstract {
|
|
5681
5825
|
account(): ConsumerAccountTag;
|
|
5826
|
+
agent(): ConsumerAgentTag;
|
|
5682
5827
|
app(): ConsumerAppTag;
|
|
5683
5828
|
event(): ConsumerEventTag;
|
|
5684
5829
|
form(): ConsumerFormTag;
|
|
@@ -5904,4 +6049,4 @@ declare class CommonMessageException extends KnownStatusCodeException {
|
|
|
5904
6049
|
getPayload(): CommonMessage;
|
|
5905
6050
|
}
|
|
5906
6051
|
|
|
5907
|
-
export { type AgentInput, type AgentItem, type AgentItemBinary, type AgentItemChoice, type AgentItemObject, type AgentItemText, type AgentItemToolCall, type AgentItemToolCallFunction, type AgentOutput, AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCommit, type BackendSchemaCommitCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|
|
6052
|
+
export { type AgentInput, type AgentItem, type AgentItemBinary, type AgentItemChoice, type AgentItemObject, type AgentItemText, type AgentItemToolCall, type AgentItemToolCallFunction, type AgentOutput, AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCommit, type BackendSchemaCommitCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendSpecificationGet, type BackendSpecificationPublish, BackendSpecificationTag, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerAgent, type ConsumerAgentCollection, type ConsumerAgentMessage, type ConsumerAgentMessageCollection, ConsumerAgentMessageTag, ConsumerAgentTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|
package/dist/index.d.ts
CHANGED
|
@@ -681,6 +681,7 @@ interface BackendAgent {
|
|
|
681
681
|
id?: number;
|
|
682
682
|
connection?: number;
|
|
683
683
|
type?: number;
|
|
684
|
+
public?: boolean;
|
|
684
685
|
name?: string;
|
|
685
686
|
description?: string;
|
|
686
687
|
introduction?: string;
|
|
@@ -3793,6 +3794,48 @@ declare class BackendSdkTag extends TagAbstract {
|
|
|
3793
3794
|
getAll(): Promise<BackendSdkResponse>;
|
|
3794
3795
|
}
|
|
3795
3796
|
|
|
3797
|
+
/**
|
|
3798
|
+
* BackendSpecificationGet automatically generated by SDKgen please do not edit this file manually
|
|
3799
|
+
* {@link https://sdkgen.app}
|
|
3800
|
+
*/
|
|
3801
|
+
interface BackendSpecificationGet {
|
|
3802
|
+
spec?: any;
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
/**
|
|
3806
|
+
* BackendSpecificationPublish automatically generated by SDKgen please do not edit this file manually
|
|
3807
|
+
* {@link https://sdkgen.app}
|
|
3808
|
+
*/
|
|
3809
|
+
interface BackendSpecificationPublish {
|
|
3810
|
+
name?: string;
|
|
3811
|
+
filterName?: string;
|
|
3812
|
+
standalone?: boolean;
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
/**
|
|
3816
|
+
* BackendSpecificationTag automatically generated by SDKgen please do not edit this file manually
|
|
3817
|
+
* {@link https://sdkgen.app}
|
|
3818
|
+
*/
|
|
3819
|
+
|
|
3820
|
+
declare class BackendSpecificationTag extends TagAbstract {
|
|
3821
|
+
/**
|
|
3822
|
+
* Returns the TypeHub specification
|
|
3823
|
+
*
|
|
3824
|
+
* @returns {Promise<BackendSpecificationGet>}
|
|
3825
|
+
* @throws {CommonMessageException}
|
|
3826
|
+
* @throws {ClientException}
|
|
3827
|
+
*/
|
|
3828
|
+
get(): Promise<BackendSpecificationGet>;
|
|
3829
|
+
/**
|
|
3830
|
+
* Publish the specification
|
|
3831
|
+
*
|
|
3832
|
+
* @returns {Promise<CommonMessage>}
|
|
3833
|
+
* @throws {CommonMessageException}
|
|
3834
|
+
* @throws {ClientException}
|
|
3835
|
+
*/
|
|
3836
|
+
publish(payload: BackendSpecificationPublish): Promise<CommonMessage>;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3796
3839
|
/**
|
|
3797
3840
|
* BackendStatisticCount automatically generated by SDKgen please do not edit this file manually
|
|
3798
3841
|
* {@link https://sdkgen.app}
|
|
@@ -4630,6 +4673,7 @@ declare class BackendTag extends TagAbstract {
|
|
|
4630
4673
|
schema(): BackendSchemaTag;
|
|
4631
4674
|
scope(): BackendScopeTag;
|
|
4632
4675
|
sdk(): BackendSdkTag;
|
|
4676
|
+
specification(): BackendSpecificationTag;
|
|
4633
4677
|
statistic(): BackendStatisticTag;
|
|
4634
4678
|
taxonomy(): BackendTaxonomyTag;
|
|
4635
4679
|
tenant(): BackendTenantTag;
|
|
@@ -4882,6 +4926,106 @@ declare class ConsumerAccountTag extends TagAbstract {
|
|
|
4882
4926
|
update(payload: ConsumerUserAccount): Promise<CommonMessage>;
|
|
4883
4927
|
}
|
|
4884
4928
|
|
|
4929
|
+
/**
|
|
4930
|
+
* ConsumerAgent automatically generated by SDKgen please do not edit this file manually
|
|
4931
|
+
* {@link https://sdkgen.app}
|
|
4932
|
+
*/
|
|
4933
|
+
/**
|
|
4934
|
+
* This object represents an agent
|
|
4935
|
+
*/
|
|
4936
|
+
interface ConsumerAgent {
|
|
4937
|
+
id?: number;
|
|
4938
|
+
name?: string;
|
|
4939
|
+
description?: string;
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4942
|
+
/**
|
|
4943
|
+
* ConsumerAgentCollection automatically generated by SDKgen please do not edit this file manually
|
|
4944
|
+
* {@link https://sdkgen.app}
|
|
4945
|
+
*/
|
|
4946
|
+
|
|
4947
|
+
/**
|
|
4948
|
+
* Represents a collection of agent messages
|
|
4949
|
+
*/
|
|
4950
|
+
interface ConsumerAgentCollection extends CommonCollection<ConsumerAgent> {
|
|
4951
|
+
}
|
|
4952
|
+
|
|
4953
|
+
/**
|
|
4954
|
+
* ConsumerAgentMessage automatically generated by SDKgen please do not edit this file manually
|
|
4955
|
+
* {@link https://sdkgen.app}
|
|
4956
|
+
*/
|
|
4957
|
+
|
|
4958
|
+
/**
|
|
4959
|
+
* This object represents an agent message
|
|
4960
|
+
*/
|
|
4961
|
+
interface ConsumerAgentMessage {
|
|
4962
|
+
id?: number;
|
|
4963
|
+
chatId?: string;
|
|
4964
|
+
role?: string;
|
|
4965
|
+
item?: AgentItemBinary | AgentItemChoice | AgentItemObject | AgentItemText | AgentItemToolCall;
|
|
4966
|
+
insertDate?: string;
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
/**
|
|
4970
|
+
* ConsumerAgentMessageCollection automatically generated by SDKgen please do not edit this file manually
|
|
4971
|
+
* {@link https://sdkgen.app}
|
|
4972
|
+
*/
|
|
4973
|
+
|
|
4974
|
+
/**
|
|
4975
|
+
* Represents a collection of agent messages
|
|
4976
|
+
*/
|
|
4977
|
+
interface ConsumerAgentMessageCollection extends CommonCollection<ConsumerAgentMessage> {
|
|
4978
|
+
}
|
|
4979
|
+
|
|
4980
|
+
/**
|
|
4981
|
+
* ConsumerAgentMessageTag automatically generated by SDKgen please do not edit this file manually
|
|
4982
|
+
* {@link https://sdkgen.app}
|
|
4983
|
+
*/
|
|
4984
|
+
|
|
4985
|
+
declare class ConsumerAgentMessageTag extends TagAbstract {
|
|
4986
|
+
/**
|
|
4987
|
+
* Returns a paginated list of agent messages
|
|
4988
|
+
*
|
|
4989
|
+
* @returns {Promise<ConsumerAgentMessageCollection>}
|
|
4990
|
+
* @throws {CommonMessageException}
|
|
4991
|
+
* @throws {ClientException}
|
|
4992
|
+
*/
|
|
4993
|
+
getAll(agentId: string, chatId?: string): Promise<ConsumerAgentMessageCollection>;
|
|
4994
|
+
/**
|
|
4995
|
+
* Submits a new agent message
|
|
4996
|
+
*
|
|
4997
|
+
* @returns {Promise<AgentOutput>}
|
|
4998
|
+
* @throws {CommonMessageException}
|
|
4999
|
+
* @throws {ClientException}
|
|
5000
|
+
*/
|
|
5001
|
+
submit(agentId: string, payload: AgentInput): Promise<AgentOutput>;
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
/**
|
|
5005
|
+
* ConsumerAgentTag automatically generated by SDKgen please do not edit this file manually
|
|
5006
|
+
* {@link https://sdkgen.app}
|
|
5007
|
+
*/
|
|
5008
|
+
|
|
5009
|
+
declare class ConsumerAgentTag extends TagAbstract {
|
|
5010
|
+
message(): ConsumerAgentMessageTag;
|
|
5011
|
+
/**
|
|
5012
|
+
* Returns a specific agent
|
|
5013
|
+
*
|
|
5014
|
+
* @returns {Promise<ConsumerAgent>}
|
|
5015
|
+
* @throws {CommonMessageException}
|
|
5016
|
+
* @throws {ClientException}
|
|
5017
|
+
*/
|
|
5018
|
+
get(agentId: string): Promise<ConsumerAgent>;
|
|
5019
|
+
/**
|
|
5020
|
+
* Returns a paginated list of agents
|
|
5021
|
+
*
|
|
5022
|
+
* @returns {Promise<ConsumerAgentCollection>}
|
|
5023
|
+
* @throws {CommonMessageException}
|
|
5024
|
+
* @throws {ClientException}
|
|
5025
|
+
*/
|
|
5026
|
+
getAll(startIndex?: number, count?: number, search?: string): Promise<ConsumerAgentCollection>;
|
|
5027
|
+
}
|
|
5028
|
+
|
|
4885
5029
|
/**
|
|
4886
5030
|
* ConsumerApp automatically generated by SDKgen please do not edit this file manually
|
|
4887
5031
|
* {@link https://sdkgen.app}
|
|
@@ -5679,6 +5823,7 @@ declare class ConsumerWebhookTag extends TagAbstract {
|
|
|
5679
5823
|
|
|
5680
5824
|
declare class ConsumerTag extends TagAbstract {
|
|
5681
5825
|
account(): ConsumerAccountTag;
|
|
5826
|
+
agent(): ConsumerAgentTag;
|
|
5682
5827
|
app(): ConsumerAppTag;
|
|
5683
5828
|
event(): ConsumerEventTag;
|
|
5684
5829
|
form(): ConsumerFormTag;
|
|
@@ -5904,4 +6049,4 @@ declare class CommonMessageException extends KnownStatusCodeException {
|
|
|
5904
6049
|
getPayload(): CommonMessage;
|
|
5905
6050
|
}
|
|
5906
6051
|
|
|
5907
|
-
export { type AgentInput, type AgentItem, type AgentItemBinary, type AgentItemChoice, type AgentItemObject, type AgentItemText, type AgentItemToolCall, type AgentItemToolCallFunction, type AgentOutput, AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCommit, type BackendSchemaCommitCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|
|
6052
|
+
export { type AgentInput, type AgentItem, type AgentItemBinary, type AgentItemChoice, type AgentItemObject, type AgentItemText, type AgentItemToolCall, type AgentItemToolCallFunction, type AgentOutput, AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCommit, type BackendSchemaCommitCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendSpecificationGet, type BackendSpecificationPublish, BackendSpecificationTag, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerAgent, type ConsumerAgentCollection, type ConsumerAgentMessage, type ConsumerAgentMessageCollection, ConsumerAgentMessageTag, ConsumerAgentTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|