codemie-sdk 0.1.416 → 0.1.417
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 +138 -38
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +102 -2
- package/dist/index.d.ts +102 -2
- package/dist/index.js +133 -38
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -450,8 +450,8 @@ interface AssistantUpdateResponse {
|
|
|
450
450
|
declare const AssistantListParamsSchema: z.ZodReadonly<z.ZodObject<{
|
|
451
451
|
minimal_response: z.ZodPrefault<z.ZodBoolean>;
|
|
452
452
|
scope: z.ZodPrefault<z.ZodEnum<{
|
|
453
|
-
visible_to_user: "visible_to_user";
|
|
454
453
|
marketplace: "marketplace";
|
|
454
|
+
visible_to_user: "visible_to_user";
|
|
455
455
|
}>>;
|
|
456
456
|
page: z.ZodPrefault<z.ZodNumber>;
|
|
457
457
|
per_page: z.ZodPrefault<z.ZodNumber>;
|
|
@@ -1615,6 +1615,101 @@ declare class UserService {
|
|
|
1615
1615
|
getData(): Promise<UserData>;
|
|
1616
1616
|
}
|
|
1617
1617
|
|
|
1618
|
+
/** Models for skill-related data structures. */
|
|
1619
|
+
declare enum SkillVisibility {
|
|
1620
|
+
PRIVATE = "private",
|
|
1621
|
+
PROJECT = "project",
|
|
1622
|
+
PUBLIC = "public"
|
|
1623
|
+
}
|
|
1624
|
+
declare enum SkillScopeFilter {
|
|
1625
|
+
MARKETPLACE = "marketplace",
|
|
1626
|
+
PROJECT = "project",
|
|
1627
|
+
PROJECT_WITH_MARKETPLACE = "project_with_marketplace"
|
|
1628
|
+
}
|
|
1629
|
+
declare enum SkillSortBy {
|
|
1630
|
+
CREATED_DATE = "created_date",
|
|
1631
|
+
ASSISTANTS_COUNT = "assistants_count",
|
|
1632
|
+
RELEVANCE = "relevance"
|
|
1633
|
+
}
|
|
1634
|
+
declare enum SkillCategory {
|
|
1635
|
+
DEVELOPMENT = "development",
|
|
1636
|
+
ENGINEERING = "engineering",
|
|
1637
|
+
TESTING = "testing",
|
|
1638
|
+
QUALITY_ASSURANCE = "quality_assurance",
|
|
1639
|
+
CODE_REVIEW = "code_review",
|
|
1640
|
+
DOCUMENTATION = "documentation",
|
|
1641
|
+
DEVOPS = "devops",
|
|
1642
|
+
SECURITY = "security",
|
|
1643
|
+
COMPLIANCE = "compliance",
|
|
1644
|
+
MONITORING_ALERTS = "monitoring_alerts",
|
|
1645
|
+
ARCHITECTURE = "architecture",
|
|
1646
|
+
UI_UX_DESIGN = "ui_ux_design",
|
|
1647
|
+
DATA_ANALYSIS = "data_analysis",
|
|
1648
|
+
DATA_ANALYTICS = "data_analytics",
|
|
1649
|
+
PROJECT_MANAGEMENT = "project_management",
|
|
1650
|
+
PRODUCT_MANAGEMENT = "product_management",
|
|
1651
|
+
BUSINESS_ANALYSIS = "business_analysis"
|
|
1652
|
+
}
|
|
1653
|
+
interface SkillCreatedBy {
|
|
1654
|
+
id: string;
|
|
1655
|
+
name: string;
|
|
1656
|
+
email?: string;
|
|
1657
|
+
}
|
|
1658
|
+
interface SkillListItem {
|
|
1659
|
+
id: string;
|
|
1660
|
+
name: string;
|
|
1661
|
+
description: string;
|
|
1662
|
+
project: string;
|
|
1663
|
+
visibility: SkillVisibility;
|
|
1664
|
+
created_by: SkillCreatedBy | null;
|
|
1665
|
+
categories: SkillCategory[];
|
|
1666
|
+
created_date: string;
|
|
1667
|
+
updated_date: string | null;
|
|
1668
|
+
is_attached: boolean;
|
|
1669
|
+
assistants_count: number;
|
|
1670
|
+
user_abilities: string[];
|
|
1671
|
+
unique_likes_count: number;
|
|
1672
|
+
unique_dislikes_count: number;
|
|
1673
|
+
}
|
|
1674
|
+
interface SkillDetail extends SkillListItem {
|
|
1675
|
+
content: string;
|
|
1676
|
+
toolkits: unknown[];
|
|
1677
|
+
mcp_servers: unknown[];
|
|
1678
|
+
}
|
|
1679
|
+
interface SkillListPaginatedResponse {
|
|
1680
|
+
skills: SkillListItem[];
|
|
1681
|
+
page: number;
|
|
1682
|
+
per_page: number;
|
|
1683
|
+
pages: number;
|
|
1684
|
+
total: number;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
declare const SkillListParamsSchema: z.ZodReadonly<z.ZodObject<{
|
|
1688
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
1689
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
1690
|
+
filters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1691
|
+
sort_by: z.ZodOptional<z.ZodEnum<typeof SkillSortBy>>;
|
|
1692
|
+
scope: z.ZodOptional<z.ZodEnum<typeof SkillScopeFilter>>;
|
|
1693
|
+
}, z.core.$strip>>;
|
|
1694
|
+
type SkillListParams = Partial<z.infer<typeof SkillListParamsSchema>>;
|
|
1695
|
+
|
|
1696
|
+
declare class SkillService {
|
|
1697
|
+
private api;
|
|
1698
|
+
constructor(config: AuthConfig);
|
|
1699
|
+
/**
|
|
1700
|
+
* Get paginated list of skills accessible to the current user.
|
|
1701
|
+
*/
|
|
1702
|
+
listPaginated(_params?: SkillListParams): Promise<SkillListPaginatedResponse>;
|
|
1703
|
+
/**
|
|
1704
|
+
* Get flat list of skills (without pagination metadata).
|
|
1705
|
+
*/
|
|
1706
|
+
list(_params?: SkillListParams): Promise<SkillListItem[]>;
|
|
1707
|
+
/**
|
|
1708
|
+
* Get skill details by ID.
|
|
1709
|
+
*/
|
|
1710
|
+
get(skillId: string): Promise<SkillDetail>;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1618
1713
|
/** Models for workflow functionality */
|
|
1619
1714
|
|
|
1620
1715
|
/** Available workflow modes */
|
|
@@ -1964,6 +2059,7 @@ declare class CodeMieClient {
|
|
|
1964
2059
|
private _llms;
|
|
1965
2060
|
private _tasks;
|
|
1966
2061
|
private _users;
|
|
2062
|
+
private _skills;
|
|
1967
2063
|
private _workflows;
|
|
1968
2064
|
constructor(config: CodeMieClientConfig);
|
|
1969
2065
|
/**
|
|
@@ -1998,6 +2094,10 @@ declare class CodeMieClient {
|
|
|
1998
2094
|
* Get the FileService instance.
|
|
1999
2095
|
*/
|
|
2000
2096
|
get files(): FileService;
|
|
2097
|
+
/**
|
|
2098
|
+
* Get the SkillService instance.
|
|
2099
|
+
*/
|
|
2100
|
+
get skills(): SkillService;
|
|
2001
2101
|
/**
|
|
2002
2102
|
* Get the WorkflowService instance.
|
|
2003
2103
|
*/
|
|
@@ -2036,4 +2136,4 @@ declare class NotFoundError extends ApiError {
|
|
|
2036
2136
|
constructor(resourceType: string, resourceId: string);
|
|
2037
2137
|
}
|
|
2038
2138
|
|
|
2039
|
-
export { type AboutUser, type AboutUserResponse, type AgentErrorDetails, type AnyJson, ApiError, type Assistant, type AssistantBase, type AssistantCategory, type AssistantChatParams, AssistantChatParamsSchema, type AssistantCreateParams, AssistantCreateParamsSchema, type AssistantCreateResponse, type AssistantDataItem, type AssistantDetailsData, type AssistantListParams, AssistantListParamsSchema, AssistantService, type AssistantUpdateParams, AssistantUpdateParamsSchema, type AssistantUpdateResponse, type AssistantVersion, type AssistantVersionsListParams, AssistantVersionsListParamsSchema, type AuthConfig, type BackgroundTaskEntity, BackgroundTaskStatus, type BackgroundTaskStatusType, type BaseCodeParams, type BaseConfluenceParams, type BaseDataSourceCreateDto, type BaseDataSourceCreateParams, type BaseDataSourceResponse, type BaseDataSourceUpdateDto, type BaseDataSourceUpdateParams, type BaseFileParams, type BaseGoogleParams, type BaseJiraParams, type BaseModelApiResponse, type BaseModelResponse, type BaseUser, ChatRole, type Code, type CodeDataSourceCreateDto, type CodeDataSourceCreateParams, type CodeDataSourceResponse, CodeDataSourceType, type CodeDataSourceTypeType, type CodeDataSourceUpdateDto, type CodeDataSourceUpdateParams, CodeMieClient, type CodeMieClientConfig, CodeMieError, type Confluence, type ConfluenceDataSourceCreateDto, type ConfluenceDataSourceCreateParams, type ConfluenceDataSourceUpdateDto, type ConfluenceDataSourceUpdateParams, type Context, type ContextItem, ContextType, type Conversation, type ConversationCreateParams, ConversationCreateParamsSchema, type ConversationCreateRequest, type ConversationDetails, type ConversationDetailsData, ConversationService, type CostConfig, CredentialTypes, type CredentialTypesType, type CredentialValues, type DataSource, type DataSourceCreateDto, type DataSourceCreateParams, type DataSourceListParams, type DataSourceProcessingInfo, type DataSourceProcessingInfoResponse, type DataSourceResponse, DataSourceStatus, type DataSourceStatusType, DataSourceType, type DataSourceTypeType, type DataSourceUpdateDto, type DataSourceUpdateParams, DatasourceService, ERROR_MESSAGE_PATTERNS, ErrorCategory, ErrorCode, ErrorDetailLevel, type ErrorResponse, ExecutionStatus, type ExecutionStatusType, type File, type FileBulkUploadResponse, type FileDataSourceCreateDto, type FileDataSourceCreateParams, type FileDataSourceUpdateDto, type FileDataSourceUpdateParams, FileService, type FileToUpload, type FileUploadResponse, type Files, type Google, type GoogleDataSourceCreateDto, type GoogleDataSourceCreateParams, type GoogleDataSourceUpdateDto, type GoogleDataSourceUpdateParams, HTTP_STATUS_TO_ERROR_CODE, type HistoryItem, type HistoryMark, type Integration, type IntegrationCreateParams, IntegrationCreateParamsSchema, type IntegrationGetByAliasParams, IntegrationGetByAliasParamsSchema, type IntegrationGetParams, IntegrationGetParamsSchema, type IntegrationListParams, IntegrationListParamsSchema, IntegrationService, IntegrationType, type IntegrationTypeType, type IntegrationUpdateParams, IntegrationUpdateParamsSchema, type IntegrationValidationResult, type Jira, type JiraDataSourceCreateDto, type JiraDataSourceCreateParams, type JiraDataSourceUpdateDto, type JiraDataSourceUpdateParams, type LLMFeatures, type LLMModel, LLMProvider, type LLMProviderType, LLMService, type MCPServerConfig, type MCPServerDetails, type Mark, type MissingIntegration, type MissingIntegrationsByCredentialType, NotFoundError, type Operator, type OtherDataSourceCreateParams, type OtherDataSourceUpdateParams, type PaginatedResponse, type PaginationParams, type PromptVariable, type SortOrder, type SystemPromptHistory, TaskService, type TaskUser, type Thought, type TokensUsage, type ToolDetails, type ToolErrorDetails, type ToolItem, type ToolKitDetails, type UserData, UserService, type VersionsListResponse, type Workflow, type WorkflowCreateParams, WorkflowCreateParamsSchema, type WorkflowExecution, type WorkflowExecutionCreateParams, WorkflowExecutionCreateParamsSchema, type WorkflowExecutionListParams, WorkflowExecutionListParamsSchema, type WorkflowExecutionResponse, WorkflowExecutionService, type WorkflowExecutionState, type WorkflowExecutionStateListParams, WorkflowExecutionStateListParamsSchema, type WorkflowExecutionStateOutput, WorkflowExecutionStateService, type WorkflowExecutionStateThought, type WorkflowListParams, WorkflowListParamsSchema, WorkflowMode, type WorkflowModeType, type WorkflowResponse, WorkflowService, type WorkflowUpdateParams, WorkflowUpdateParamsSchema, classifyHttpError, formatCookies, formatToolErrorForLevel, formatToolErrorFull, formatToolErrorMinimal, formatToolErrorStandard, isRecoverableError };
|
|
2139
|
+
export { type AboutUser, type AboutUserResponse, type AgentErrorDetails, type AnyJson, ApiError, type Assistant, type AssistantBase, type AssistantCategory, type AssistantChatParams, AssistantChatParamsSchema, type AssistantCreateParams, AssistantCreateParamsSchema, type AssistantCreateResponse, type AssistantDataItem, type AssistantDetailsData, type AssistantListParams, AssistantListParamsSchema, AssistantService, type AssistantUpdateParams, AssistantUpdateParamsSchema, type AssistantUpdateResponse, type AssistantVersion, type AssistantVersionsListParams, AssistantVersionsListParamsSchema, type AuthConfig, type BackgroundTaskEntity, BackgroundTaskStatus, type BackgroundTaskStatusType, type BaseCodeParams, type BaseConfluenceParams, type BaseDataSourceCreateDto, type BaseDataSourceCreateParams, type BaseDataSourceResponse, type BaseDataSourceUpdateDto, type BaseDataSourceUpdateParams, type BaseFileParams, type BaseGoogleParams, type BaseJiraParams, type BaseModelApiResponse, type BaseModelResponse, type BaseUser, ChatRole, type Code, type CodeDataSourceCreateDto, type CodeDataSourceCreateParams, type CodeDataSourceResponse, CodeDataSourceType, type CodeDataSourceTypeType, type CodeDataSourceUpdateDto, type CodeDataSourceUpdateParams, CodeMieClient, type CodeMieClientConfig, CodeMieError, type Confluence, type ConfluenceDataSourceCreateDto, type ConfluenceDataSourceCreateParams, type ConfluenceDataSourceUpdateDto, type ConfluenceDataSourceUpdateParams, type Context, type ContextItem, ContextType, type Conversation, type ConversationCreateParams, ConversationCreateParamsSchema, type ConversationCreateRequest, type ConversationDetails, type ConversationDetailsData, ConversationService, type CostConfig, CredentialTypes, type CredentialTypesType, type CredentialValues, type DataSource, type DataSourceCreateDto, type DataSourceCreateParams, type DataSourceListParams, type DataSourceProcessingInfo, type DataSourceProcessingInfoResponse, type DataSourceResponse, DataSourceStatus, type DataSourceStatusType, DataSourceType, type DataSourceTypeType, type DataSourceUpdateDto, type DataSourceUpdateParams, DatasourceService, ERROR_MESSAGE_PATTERNS, ErrorCategory, ErrorCode, ErrorDetailLevel, type ErrorResponse, ExecutionStatus, type ExecutionStatusType, type File, type FileBulkUploadResponse, type FileDataSourceCreateDto, type FileDataSourceCreateParams, type FileDataSourceUpdateDto, type FileDataSourceUpdateParams, FileService, type FileToUpload, type FileUploadResponse, type Files, type Google, type GoogleDataSourceCreateDto, type GoogleDataSourceCreateParams, type GoogleDataSourceUpdateDto, type GoogleDataSourceUpdateParams, HTTP_STATUS_TO_ERROR_CODE, type HistoryItem, type HistoryMark, type Integration, type IntegrationCreateParams, IntegrationCreateParamsSchema, type IntegrationGetByAliasParams, IntegrationGetByAliasParamsSchema, type IntegrationGetParams, IntegrationGetParamsSchema, type IntegrationListParams, IntegrationListParamsSchema, IntegrationService, IntegrationType, type IntegrationTypeType, type IntegrationUpdateParams, IntegrationUpdateParamsSchema, type IntegrationValidationResult, type Jira, type JiraDataSourceCreateDto, type JiraDataSourceCreateParams, type JiraDataSourceUpdateDto, type JiraDataSourceUpdateParams, type LLMFeatures, type LLMModel, LLMProvider, type LLMProviderType, LLMService, type MCPServerConfig, type MCPServerDetails, type Mark, type MissingIntegration, type MissingIntegrationsByCredentialType, NotFoundError, type Operator, type OtherDataSourceCreateParams, type OtherDataSourceUpdateParams, type PaginatedResponse, type PaginationParams, type PromptVariable, SkillCategory, type SkillCreatedBy, type SkillDetail, type SkillListItem, type SkillListPaginatedResponse, SkillScopeFilter, SkillService, SkillSortBy, SkillVisibility, type SortOrder, type SystemPromptHistory, TaskService, type TaskUser, type Thought, type TokensUsage, type ToolDetails, type ToolErrorDetails, type ToolItem, type ToolKitDetails, type UserData, UserService, type VersionsListResponse, type Workflow, type WorkflowCreateParams, WorkflowCreateParamsSchema, type WorkflowExecution, type WorkflowExecutionCreateParams, WorkflowExecutionCreateParamsSchema, type WorkflowExecutionListParams, WorkflowExecutionListParamsSchema, type WorkflowExecutionResponse, WorkflowExecutionService, type WorkflowExecutionState, type WorkflowExecutionStateListParams, WorkflowExecutionStateListParamsSchema, type WorkflowExecutionStateOutput, WorkflowExecutionStateService, type WorkflowExecutionStateThought, type WorkflowListParams, WorkflowListParamsSchema, WorkflowMode, type WorkflowModeType, type WorkflowResponse, WorkflowService, type WorkflowUpdateParams, WorkflowUpdateParamsSchema, classifyHttpError, formatCookies, formatToolErrorForLevel, formatToolErrorFull, formatToolErrorMinimal, formatToolErrorStandard, isRecoverableError };
|
package/dist/index.d.ts
CHANGED
|
@@ -450,8 +450,8 @@ interface AssistantUpdateResponse {
|
|
|
450
450
|
declare const AssistantListParamsSchema: z.ZodReadonly<z.ZodObject<{
|
|
451
451
|
minimal_response: z.ZodPrefault<z.ZodBoolean>;
|
|
452
452
|
scope: z.ZodPrefault<z.ZodEnum<{
|
|
453
|
-
visible_to_user: "visible_to_user";
|
|
454
453
|
marketplace: "marketplace";
|
|
454
|
+
visible_to_user: "visible_to_user";
|
|
455
455
|
}>>;
|
|
456
456
|
page: z.ZodPrefault<z.ZodNumber>;
|
|
457
457
|
per_page: z.ZodPrefault<z.ZodNumber>;
|
|
@@ -1615,6 +1615,101 @@ declare class UserService {
|
|
|
1615
1615
|
getData(): Promise<UserData>;
|
|
1616
1616
|
}
|
|
1617
1617
|
|
|
1618
|
+
/** Models for skill-related data structures. */
|
|
1619
|
+
declare enum SkillVisibility {
|
|
1620
|
+
PRIVATE = "private",
|
|
1621
|
+
PROJECT = "project",
|
|
1622
|
+
PUBLIC = "public"
|
|
1623
|
+
}
|
|
1624
|
+
declare enum SkillScopeFilter {
|
|
1625
|
+
MARKETPLACE = "marketplace",
|
|
1626
|
+
PROJECT = "project",
|
|
1627
|
+
PROJECT_WITH_MARKETPLACE = "project_with_marketplace"
|
|
1628
|
+
}
|
|
1629
|
+
declare enum SkillSortBy {
|
|
1630
|
+
CREATED_DATE = "created_date",
|
|
1631
|
+
ASSISTANTS_COUNT = "assistants_count",
|
|
1632
|
+
RELEVANCE = "relevance"
|
|
1633
|
+
}
|
|
1634
|
+
declare enum SkillCategory {
|
|
1635
|
+
DEVELOPMENT = "development",
|
|
1636
|
+
ENGINEERING = "engineering",
|
|
1637
|
+
TESTING = "testing",
|
|
1638
|
+
QUALITY_ASSURANCE = "quality_assurance",
|
|
1639
|
+
CODE_REVIEW = "code_review",
|
|
1640
|
+
DOCUMENTATION = "documentation",
|
|
1641
|
+
DEVOPS = "devops",
|
|
1642
|
+
SECURITY = "security",
|
|
1643
|
+
COMPLIANCE = "compliance",
|
|
1644
|
+
MONITORING_ALERTS = "monitoring_alerts",
|
|
1645
|
+
ARCHITECTURE = "architecture",
|
|
1646
|
+
UI_UX_DESIGN = "ui_ux_design",
|
|
1647
|
+
DATA_ANALYSIS = "data_analysis",
|
|
1648
|
+
DATA_ANALYTICS = "data_analytics",
|
|
1649
|
+
PROJECT_MANAGEMENT = "project_management",
|
|
1650
|
+
PRODUCT_MANAGEMENT = "product_management",
|
|
1651
|
+
BUSINESS_ANALYSIS = "business_analysis"
|
|
1652
|
+
}
|
|
1653
|
+
interface SkillCreatedBy {
|
|
1654
|
+
id: string;
|
|
1655
|
+
name: string;
|
|
1656
|
+
email?: string;
|
|
1657
|
+
}
|
|
1658
|
+
interface SkillListItem {
|
|
1659
|
+
id: string;
|
|
1660
|
+
name: string;
|
|
1661
|
+
description: string;
|
|
1662
|
+
project: string;
|
|
1663
|
+
visibility: SkillVisibility;
|
|
1664
|
+
created_by: SkillCreatedBy | null;
|
|
1665
|
+
categories: SkillCategory[];
|
|
1666
|
+
created_date: string;
|
|
1667
|
+
updated_date: string | null;
|
|
1668
|
+
is_attached: boolean;
|
|
1669
|
+
assistants_count: number;
|
|
1670
|
+
user_abilities: string[];
|
|
1671
|
+
unique_likes_count: number;
|
|
1672
|
+
unique_dislikes_count: number;
|
|
1673
|
+
}
|
|
1674
|
+
interface SkillDetail extends SkillListItem {
|
|
1675
|
+
content: string;
|
|
1676
|
+
toolkits: unknown[];
|
|
1677
|
+
mcp_servers: unknown[];
|
|
1678
|
+
}
|
|
1679
|
+
interface SkillListPaginatedResponse {
|
|
1680
|
+
skills: SkillListItem[];
|
|
1681
|
+
page: number;
|
|
1682
|
+
per_page: number;
|
|
1683
|
+
pages: number;
|
|
1684
|
+
total: number;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
declare const SkillListParamsSchema: z.ZodReadonly<z.ZodObject<{
|
|
1688
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
1689
|
+
per_page: z.ZodDefault<z.ZodNumber>;
|
|
1690
|
+
filters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1691
|
+
sort_by: z.ZodOptional<z.ZodEnum<typeof SkillSortBy>>;
|
|
1692
|
+
scope: z.ZodOptional<z.ZodEnum<typeof SkillScopeFilter>>;
|
|
1693
|
+
}, z.core.$strip>>;
|
|
1694
|
+
type SkillListParams = Partial<z.infer<typeof SkillListParamsSchema>>;
|
|
1695
|
+
|
|
1696
|
+
declare class SkillService {
|
|
1697
|
+
private api;
|
|
1698
|
+
constructor(config: AuthConfig);
|
|
1699
|
+
/**
|
|
1700
|
+
* Get paginated list of skills accessible to the current user.
|
|
1701
|
+
*/
|
|
1702
|
+
listPaginated(_params?: SkillListParams): Promise<SkillListPaginatedResponse>;
|
|
1703
|
+
/**
|
|
1704
|
+
* Get flat list of skills (without pagination metadata).
|
|
1705
|
+
*/
|
|
1706
|
+
list(_params?: SkillListParams): Promise<SkillListItem[]>;
|
|
1707
|
+
/**
|
|
1708
|
+
* Get skill details by ID.
|
|
1709
|
+
*/
|
|
1710
|
+
get(skillId: string): Promise<SkillDetail>;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1618
1713
|
/** Models for workflow functionality */
|
|
1619
1714
|
|
|
1620
1715
|
/** Available workflow modes */
|
|
@@ -1964,6 +2059,7 @@ declare class CodeMieClient {
|
|
|
1964
2059
|
private _llms;
|
|
1965
2060
|
private _tasks;
|
|
1966
2061
|
private _users;
|
|
2062
|
+
private _skills;
|
|
1967
2063
|
private _workflows;
|
|
1968
2064
|
constructor(config: CodeMieClientConfig);
|
|
1969
2065
|
/**
|
|
@@ -1998,6 +2094,10 @@ declare class CodeMieClient {
|
|
|
1998
2094
|
* Get the FileService instance.
|
|
1999
2095
|
*/
|
|
2000
2096
|
get files(): FileService;
|
|
2097
|
+
/**
|
|
2098
|
+
* Get the SkillService instance.
|
|
2099
|
+
*/
|
|
2100
|
+
get skills(): SkillService;
|
|
2001
2101
|
/**
|
|
2002
2102
|
* Get the WorkflowService instance.
|
|
2003
2103
|
*/
|
|
@@ -2036,4 +2136,4 @@ declare class NotFoundError extends ApiError {
|
|
|
2036
2136
|
constructor(resourceType: string, resourceId: string);
|
|
2037
2137
|
}
|
|
2038
2138
|
|
|
2039
|
-
export { type AboutUser, type AboutUserResponse, type AgentErrorDetails, type AnyJson, ApiError, type Assistant, type AssistantBase, type AssistantCategory, type AssistantChatParams, AssistantChatParamsSchema, type AssistantCreateParams, AssistantCreateParamsSchema, type AssistantCreateResponse, type AssistantDataItem, type AssistantDetailsData, type AssistantListParams, AssistantListParamsSchema, AssistantService, type AssistantUpdateParams, AssistantUpdateParamsSchema, type AssistantUpdateResponse, type AssistantVersion, type AssistantVersionsListParams, AssistantVersionsListParamsSchema, type AuthConfig, type BackgroundTaskEntity, BackgroundTaskStatus, type BackgroundTaskStatusType, type BaseCodeParams, type BaseConfluenceParams, type BaseDataSourceCreateDto, type BaseDataSourceCreateParams, type BaseDataSourceResponse, type BaseDataSourceUpdateDto, type BaseDataSourceUpdateParams, type BaseFileParams, type BaseGoogleParams, type BaseJiraParams, type BaseModelApiResponse, type BaseModelResponse, type BaseUser, ChatRole, type Code, type CodeDataSourceCreateDto, type CodeDataSourceCreateParams, type CodeDataSourceResponse, CodeDataSourceType, type CodeDataSourceTypeType, type CodeDataSourceUpdateDto, type CodeDataSourceUpdateParams, CodeMieClient, type CodeMieClientConfig, CodeMieError, type Confluence, type ConfluenceDataSourceCreateDto, type ConfluenceDataSourceCreateParams, type ConfluenceDataSourceUpdateDto, type ConfluenceDataSourceUpdateParams, type Context, type ContextItem, ContextType, type Conversation, type ConversationCreateParams, ConversationCreateParamsSchema, type ConversationCreateRequest, type ConversationDetails, type ConversationDetailsData, ConversationService, type CostConfig, CredentialTypes, type CredentialTypesType, type CredentialValues, type DataSource, type DataSourceCreateDto, type DataSourceCreateParams, type DataSourceListParams, type DataSourceProcessingInfo, type DataSourceProcessingInfoResponse, type DataSourceResponse, DataSourceStatus, type DataSourceStatusType, DataSourceType, type DataSourceTypeType, type DataSourceUpdateDto, type DataSourceUpdateParams, DatasourceService, ERROR_MESSAGE_PATTERNS, ErrorCategory, ErrorCode, ErrorDetailLevel, type ErrorResponse, ExecutionStatus, type ExecutionStatusType, type File, type FileBulkUploadResponse, type FileDataSourceCreateDto, type FileDataSourceCreateParams, type FileDataSourceUpdateDto, type FileDataSourceUpdateParams, FileService, type FileToUpload, type FileUploadResponse, type Files, type Google, type GoogleDataSourceCreateDto, type GoogleDataSourceCreateParams, type GoogleDataSourceUpdateDto, type GoogleDataSourceUpdateParams, HTTP_STATUS_TO_ERROR_CODE, type HistoryItem, type HistoryMark, type Integration, type IntegrationCreateParams, IntegrationCreateParamsSchema, type IntegrationGetByAliasParams, IntegrationGetByAliasParamsSchema, type IntegrationGetParams, IntegrationGetParamsSchema, type IntegrationListParams, IntegrationListParamsSchema, IntegrationService, IntegrationType, type IntegrationTypeType, type IntegrationUpdateParams, IntegrationUpdateParamsSchema, type IntegrationValidationResult, type Jira, type JiraDataSourceCreateDto, type JiraDataSourceCreateParams, type JiraDataSourceUpdateDto, type JiraDataSourceUpdateParams, type LLMFeatures, type LLMModel, LLMProvider, type LLMProviderType, LLMService, type MCPServerConfig, type MCPServerDetails, type Mark, type MissingIntegration, type MissingIntegrationsByCredentialType, NotFoundError, type Operator, type OtherDataSourceCreateParams, type OtherDataSourceUpdateParams, type PaginatedResponse, type PaginationParams, type PromptVariable, type SortOrder, type SystemPromptHistory, TaskService, type TaskUser, type Thought, type TokensUsage, type ToolDetails, type ToolErrorDetails, type ToolItem, type ToolKitDetails, type UserData, UserService, type VersionsListResponse, type Workflow, type WorkflowCreateParams, WorkflowCreateParamsSchema, type WorkflowExecution, type WorkflowExecutionCreateParams, WorkflowExecutionCreateParamsSchema, type WorkflowExecutionListParams, WorkflowExecutionListParamsSchema, type WorkflowExecutionResponse, WorkflowExecutionService, type WorkflowExecutionState, type WorkflowExecutionStateListParams, WorkflowExecutionStateListParamsSchema, type WorkflowExecutionStateOutput, WorkflowExecutionStateService, type WorkflowExecutionStateThought, type WorkflowListParams, WorkflowListParamsSchema, WorkflowMode, type WorkflowModeType, type WorkflowResponse, WorkflowService, type WorkflowUpdateParams, WorkflowUpdateParamsSchema, classifyHttpError, formatCookies, formatToolErrorForLevel, formatToolErrorFull, formatToolErrorMinimal, formatToolErrorStandard, isRecoverableError };
|
|
2139
|
+
export { type AboutUser, type AboutUserResponse, type AgentErrorDetails, type AnyJson, ApiError, type Assistant, type AssistantBase, type AssistantCategory, type AssistantChatParams, AssistantChatParamsSchema, type AssistantCreateParams, AssistantCreateParamsSchema, type AssistantCreateResponse, type AssistantDataItem, type AssistantDetailsData, type AssistantListParams, AssistantListParamsSchema, AssistantService, type AssistantUpdateParams, AssistantUpdateParamsSchema, type AssistantUpdateResponse, type AssistantVersion, type AssistantVersionsListParams, AssistantVersionsListParamsSchema, type AuthConfig, type BackgroundTaskEntity, BackgroundTaskStatus, type BackgroundTaskStatusType, type BaseCodeParams, type BaseConfluenceParams, type BaseDataSourceCreateDto, type BaseDataSourceCreateParams, type BaseDataSourceResponse, type BaseDataSourceUpdateDto, type BaseDataSourceUpdateParams, type BaseFileParams, type BaseGoogleParams, type BaseJiraParams, type BaseModelApiResponse, type BaseModelResponse, type BaseUser, ChatRole, type Code, type CodeDataSourceCreateDto, type CodeDataSourceCreateParams, type CodeDataSourceResponse, CodeDataSourceType, type CodeDataSourceTypeType, type CodeDataSourceUpdateDto, type CodeDataSourceUpdateParams, CodeMieClient, type CodeMieClientConfig, CodeMieError, type Confluence, type ConfluenceDataSourceCreateDto, type ConfluenceDataSourceCreateParams, type ConfluenceDataSourceUpdateDto, type ConfluenceDataSourceUpdateParams, type Context, type ContextItem, ContextType, type Conversation, type ConversationCreateParams, ConversationCreateParamsSchema, type ConversationCreateRequest, type ConversationDetails, type ConversationDetailsData, ConversationService, type CostConfig, CredentialTypes, type CredentialTypesType, type CredentialValues, type DataSource, type DataSourceCreateDto, type DataSourceCreateParams, type DataSourceListParams, type DataSourceProcessingInfo, type DataSourceProcessingInfoResponse, type DataSourceResponse, DataSourceStatus, type DataSourceStatusType, DataSourceType, type DataSourceTypeType, type DataSourceUpdateDto, type DataSourceUpdateParams, DatasourceService, ERROR_MESSAGE_PATTERNS, ErrorCategory, ErrorCode, ErrorDetailLevel, type ErrorResponse, ExecutionStatus, type ExecutionStatusType, type File, type FileBulkUploadResponse, type FileDataSourceCreateDto, type FileDataSourceCreateParams, type FileDataSourceUpdateDto, type FileDataSourceUpdateParams, FileService, type FileToUpload, type FileUploadResponse, type Files, type Google, type GoogleDataSourceCreateDto, type GoogleDataSourceCreateParams, type GoogleDataSourceUpdateDto, type GoogleDataSourceUpdateParams, HTTP_STATUS_TO_ERROR_CODE, type HistoryItem, type HistoryMark, type Integration, type IntegrationCreateParams, IntegrationCreateParamsSchema, type IntegrationGetByAliasParams, IntegrationGetByAliasParamsSchema, type IntegrationGetParams, IntegrationGetParamsSchema, type IntegrationListParams, IntegrationListParamsSchema, IntegrationService, IntegrationType, type IntegrationTypeType, type IntegrationUpdateParams, IntegrationUpdateParamsSchema, type IntegrationValidationResult, type Jira, type JiraDataSourceCreateDto, type JiraDataSourceCreateParams, type JiraDataSourceUpdateDto, type JiraDataSourceUpdateParams, type LLMFeatures, type LLMModel, LLMProvider, type LLMProviderType, LLMService, type MCPServerConfig, type MCPServerDetails, type Mark, type MissingIntegration, type MissingIntegrationsByCredentialType, NotFoundError, type Operator, type OtherDataSourceCreateParams, type OtherDataSourceUpdateParams, type PaginatedResponse, type PaginationParams, type PromptVariable, SkillCategory, type SkillCreatedBy, type SkillDetail, type SkillListItem, type SkillListPaginatedResponse, SkillScopeFilter, SkillService, SkillSortBy, SkillVisibility, type SortOrder, type SystemPromptHistory, TaskService, type TaskUser, type Thought, type TokensUsage, type ToolDetails, type ToolErrorDetails, type ToolItem, type ToolKitDetails, type UserData, UserService, type VersionsListResponse, type Workflow, type WorkflowCreateParams, WorkflowCreateParamsSchema, type WorkflowExecution, type WorkflowExecutionCreateParams, WorkflowExecutionCreateParamsSchema, type WorkflowExecutionListParams, WorkflowExecutionListParamsSchema, type WorkflowExecutionResponse, WorkflowExecutionService, type WorkflowExecutionState, type WorkflowExecutionStateListParams, WorkflowExecutionStateListParamsSchema, type WorkflowExecutionStateOutput, WorkflowExecutionStateService, type WorkflowExecutionStateThought, type WorkflowListParams, WorkflowListParamsSchema, WorkflowMode, type WorkflowModeType, type WorkflowResponse, WorkflowService, type WorkflowUpdateParams, WorkflowUpdateParamsSchema, classifyHttpError, formatCookies, formatToolErrorForLevel, formatToolErrorFull, formatToolErrorMinimal, formatToolErrorStandard, isRecoverableError };
|
package/dist/index.js
CHANGED
|
@@ -1190,6 +1190,88 @@ var UserService = class {
|
|
|
1190
1190
|
}
|
|
1191
1191
|
};
|
|
1192
1192
|
|
|
1193
|
+
// src/schemas/skill.ts
|
|
1194
|
+
import { z as z5 } from "zod";
|
|
1195
|
+
|
|
1196
|
+
// src/models/skill.ts
|
|
1197
|
+
var SkillVisibility = /* @__PURE__ */ ((SkillVisibility2) => {
|
|
1198
|
+
SkillVisibility2["PRIVATE"] = "private";
|
|
1199
|
+
SkillVisibility2["PROJECT"] = "project";
|
|
1200
|
+
SkillVisibility2["PUBLIC"] = "public";
|
|
1201
|
+
return SkillVisibility2;
|
|
1202
|
+
})(SkillVisibility || {});
|
|
1203
|
+
var SkillScopeFilter = /* @__PURE__ */ ((SkillScopeFilter2) => {
|
|
1204
|
+
SkillScopeFilter2["MARKETPLACE"] = "marketplace";
|
|
1205
|
+
SkillScopeFilter2["PROJECT"] = "project";
|
|
1206
|
+
SkillScopeFilter2["PROJECT_WITH_MARKETPLACE"] = "project_with_marketplace";
|
|
1207
|
+
return SkillScopeFilter2;
|
|
1208
|
+
})(SkillScopeFilter || {});
|
|
1209
|
+
var SkillSortBy = /* @__PURE__ */ ((SkillSortBy2) => {
|
|
1210
|
+
SkillSortBy2["CREATED_DATE"] = "created_date";
|
|
1211
|
+
SkillSortBy2["ASSISTANTS_COUNT"] = "assistants_count";
|
|
1212
|
+
SkillSortBy2["RELEVANCE"] = "relevance";
|
|
1213
|
+
return SkillSortBy2;
|
|
1214
|
+
})(SkillSortBy || {});
|
|
1215
|
+
var SkillCategory = /* @__PURE__ */ ((SkillCategory2) => {
|
|
1216
|
+
SkillCategory2["DEVELOPMENT"] = "development";
|
|
1217
|
+
SkillCategory2["ENGINEERING"] = "engineering";
|
|
1218
|
+
SkillCategory2["TESTING"] = "testing";
|
|
1219
|
+
SkillCategory2["QUALITY_ASSURANCE"] = "quality_assurance";
|
|
1220
|
+
SkillCategory2["CODE_REVIEW"] = "code_review";
|
|
1221
|
+
SkillCategory2["DOCUMENTATION"] = "documentation";
|
|
1222
|
+
SkillCategory2["DEVOPS"] = "devops";
|
|
1223
|
+
SkillCategory2["SECURITY"] = "security";
|
|
1224
|
+
SkillCategory2["COMPLIANCE"] = "compliance";
|
|
1225
|
+
SkillCategory2["MONITORING_ALERTS"] = "monitoring_alerts";
|
|
1226
|
+
SkillCategory2["ARCHITECTURE"] = "architecture";
|
|
1227
|
+
SkillCategory2["UI_UX_DESIGN"] = "ui_ux_design";
|
|
1228
|
+
SkillCategory2["DATA_ANALYSIS"] = "data_analysis";
|
|
1229
|
+
SkillCategory2["DATA_ANALYTICS"] = "data_analytics";
|
|
1230
|
+
SkillCategory2["PROJECT_MANAGEMENT"] = "project_management";
|
|
1231
|
+
SkillCategory2["PRODUCT_MANAGEMENT"] = "product_management";
|
|
1232
|
+
SkillCategory2["BUSINESS_ANALYSIS"] = "business_analysis";
|
|
1233
|
+
return SkillCategory2;
|
|
1234
|
+
})(SkillCategory || {});
|
|
1235
|
+
|
|
1236
|
+
// src/schemas/skill.ts
|
|
1237
|
+
var SkillListParamsSchema = z5.object({
|
|
1238
|
+
page: z5.number().default(0),
|
|
1239
|
+
per_page: z5.number().default(20),
|
|
1240
|
+
filters: z5.record(z5.string(), z5.unknown()).optional(),
|
|
1241
|
+
sort_by: z5.nativeEnum(SkillSortBy).optional(),
|
|
1242
|
+
scope: z5.nativeEnum(SkillScopeFilter).optional()
|
|
1243
|
+
}).readonly();
|
|
1244
|
+
|
|
1245
|
+
// src/services/skill.ts
|
|
1246
|
+
var SkillService = class {
|
|
1247
|
+
constructor(config) {
|
|
1248
|
+
this.api = new ApiRequestHandler(config);
|
|
1249
|
+
}
|
|
1250
|
+
/**
|
|
1251
|
+
* Get paginated list of skills accessible to the current user.
|
|
1252
|
+
*/
|
|
1253
|
+
async listPaginated(_params = {}) {
|
|
1254
|
+
const params = SkillListParamsSchema.parse(_params);
|
|
1255
|
+
return this.api.get("/v1/skills", {
|
|
1256
|
+
...params,
|
|
1257
|
+
...params.filters && { filters: JSON.stringify(params.filters) }
|
|
1258
|
+
});
|
|
1259
|
+
}
|
|
1260
|
+
/**
|
|
1261
|
+
* Get flat list of skills (without pagination metadata).
|
|
1262
|
+
*/
|
|
1263
|
+
async list(_params = {}) {
|
|
1264
|
+
const response = await this.listPaginated(_params);
|
|
1265
|
+
return response.skills;
|
|
1266
|
+
}
|
|
1267
|
+
/**
|
|
1268
|
+
* Get skill details by ID.
|
|
1269
|
+
*/
|
|
1270
|
+
async get(skillId) {
|
|
1271
|
+
return this.api.get(`/v1/skills/${skillId}`);
|
|
1272
|
+
}
|
|
1273
|
+
};
|
|
1274
|
+
|
|
1193
1275
|
// src/mappers/workflow.mapper.ts
|
|
1194
1276
|
var WorkflowMapper = class {
|
|
1195
1277
|
static mapWorkflowResponse(response) {
|
|
@@ -1223,7 +1305,7 @@ var WorkflowMapper = class {
|
|
|
1223
1305
|
};
|
|
1224
1306
|
|
|
1225
1307
|
// src/schemas/workflow.ts
|
|
1226
|
-
import { z as
|
|
1308
|
+
import { z as z6 } from "zod";
|
|
1227
1309
|
|
|
1228
1310
|
// src/models/workflow.ts
|
|
1229
1311
|
var WorkflowMode = {
|
|
@@ -1240,49 +1322,49 @@ var ExecutionStatus = {
|
|
|
1240
1322
|
};
|
|
1241
1323
|
|
|
1242
1324
|
// src/schemas/workflow.ts
|
|
1243
|
-
var WorkflowListParamsSchema =
|
|
1244
|
-
page:
|
|
1245
|
-
per_page:
|
|
1246
|
-
projects:
|
|
1325
|
+
var WorkflowListParamsSchema = z6.object({
|
|
1326
|
+
page: z6.number().prefault(0),
|
|
1327
|
+
per_page: z6.number().prefault(10),
|
|
1328
|
+
projects: z6.array(z6.string()).optional()
|
|
1247
1329
|
}).readonly();
|
|
1248
|
-
var WorkflowCreateParamsSchema =
|
|
1249
|
-
project:
|
|
1250
|
-
name:
|
|
1251
|
-
description:
|
|
1252
|
-
yaml_config:
|
|
1253
|
-
mode:
|
|
1254
|
-
shared:
|
|
1255
|
-
icon_url:
|
|
1330
|
+
var WorkflowCreateParamsSchema = z6.object({
|
|
1331
|
+
project: z6.string(),
|
|
1332
|
+
name: z6.string(),
|
|
1333
|
+
description: z6.string().optional(),
|
|
1334
|
+
yaml_config: z6.string(),
|
|
1335
|
+
mode: z6.enum([WorkflowMode.SEQUENTIAL, WorkflowMode.AUTONOMOUS]),
|
|
1336
|
+
shared: z6.boolean(),
|
|
1337
|
+
icon_url: z6.string().optional()
|
|
1256
1338
|
}).readonly();
|
|
1257
|
-
var WorkflowUpdateParamsSchema =
|
|
1258
|
-
project:
|
|
1259
|
-
name:
|
|
1260
|
-
description:
|
|
1261
|
-
yaml_config:
|
|
1262
|
-
mode:
|
|
1263
|
-
shared:
|
|
1264
|
-
icon_url:
|
|
1339
|
+
var WorkflowUpdateParamsSchema = z6.object({
|
|
1340
|
+
project: z6.string(),
|
|
1341
|
+
name: z6.string(),
|
|
1342
|
+
description: z6.string().optional(),
|
|
1343
|
+
yaml_config: z6.string(),
|
|
1344
|
+
mode: z6.enum([WorkflowMode.SEQUENTIAL, WorkflowMode.AUTONOMOUS]).optional(),
|
|
1345
|
+
shared: z6.boolean().optional(),
|
|
1346
|
+
icon_url: z6.string().optional()
|
|
1265
1347
|
}).readonly();
|
|
1266
|
-
var WorkflowExecutionListParamsSchema =
|
|
1267
|
-
page:
|
|
1268
|
-
per_page:
|
|
1348
|
+
var WorkflowExecutionListParamsSchema = z6.object({
|
|
1349
|
+
page: z6.number().prefault(0),
|
|
1350
|
+
per_page: z6.number().prefault(10)
|
|
1269
1351
|
}).readonly();
|
|
1270
|
-
var WorkflowExecutionCreateParamsSchema =
|
|
1271
|
-
user_input:
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1352
|
+
var WorkflowExecutionCreateParamsSchema = z6.object({
|
|
1353
|
+
user_input: z6.union([
|
|
1354
|
+
z6.string(),
|
|
1355
|
+
z6.record(z6.string(), z6.unknown()),
|
|
1356
|
+
z6.array(z6.unknown()),
|
|
1357
|
+
z6.number(),
|
|
1358
|
+
z6.boolean()
|
|
1277
1359
|
]).optional(),
|
|
1278
|
-
file_name:
|
|
1279
|
-
session_id:
|
|
1280
|
-
propagate_headers:
|
|
1281
|
-
tags:
|
|
1360
|
+
file_name: z6.string().optional(),
|
|
1361
|
+
session_id: z6.string().optional(),
|
|
1362
|
+
propagate_headers: z6.boolean().optional(),
|
|
1363
|
+
tags: z6.array(z6.string()).optional()
|
|
1282
1364
|
}).readonly();
|
|
1283
|
-
var WorkflowExecutionStateListParamsSchema =
|
|
1284
|
-
page:
|
|
1285
|
-
per_page:
|
|
1365
|
+
var WorkflowExecutionStateListParamsSchema = z6.object({
|
|
1366
|
+
page: z6.number().prefault(0),
|
|
1367
|
+
per_page: z6.number().prefault(10)
|
|
1286
1368
|
}).readonly();
|
|
1287
1369
|
|
|
1288
1370
|
// src/services/workflow_execution_state.ts
|
|
@@ -1524,6 +1606,7 @@ var CodeMieClient = class {
|
|
|
1524
1606
|
this._llms = new LLMService(authConfig);
|
|
1525
1607
|
this._tasks = new TaskService(authConfig);
|
|
1526
1608
|
this._users = new UserService(authConfig);
|
|
1609
|
+
this._skills = new SkillService(authConfig);
|
|
1527
1610
|
this._workflows = new WorkflowService(authConfig);
|
|
1528
1611
|
}
|
|
1529
1612
|
/**
|
|
@@ -1574,6 +1657,12 @@ var CodeMieClient = class {
|
|
|
1574
1657
|
get files() {
|
|
1575
1658
|
return this._files;
|
|
1576
1659
|
}
|
|
1660
|
+
/**
|
|
1661
|
+
* Get the SkillService instance.
|
|
1662
|
+
*/
|
|
1663
|
+
get skills() {
|
|
1664
|
+
return this._skills;
|
|
1665
|
+
}
|
|
1577
1666
|
/**
|
|
1578
1667
|
* Get the WorkflowService instance.
|
|
1579
1668
|
*/
|
|
@@ -1651,6 +1740,7 @@ var CodeMieClient = class {
|
|
|
1651
1740
|
this._llms = new LLMService(authConfig);
|
|
1652
1741
|
this._tasks = new TaskService(authConfig);
|
|
1653
1742
|
this._users = new UserService(authConfig);
|
|
1743
|
+
this._skills = new SkillService(authConfig);
|
|
1654
1744
|
this._workflows = new WorkflowService(authConfig);
|
|
1655
1745
|
}
|
|
1656
1746
|
};
|
|
@@ -1854,6 +1944,11 @@ export {
|
|
|
1854
1944
|
LLMProvider,
|
|
1855
1945
|
LLMService,
|
|
1856
1946
|
NotFoundError,
|
|
1947
|
+
SkillCategory,
|
|
1948
|
+
SkillScopeFilter,
|
|
1949
|
+
SkillService,
|
|
1950
|
+
SkillSortBy,
|
|
1951
|
+
SkillVisibility,
|
|
1857
1952
|
TaskService,
|
|
1858
1953
|
UserService,
|
|
1859
1954
|
WorkflowCreateParamsSchema,
|