codemie-sdk 0.1.440 → 0.1.444
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 +135 -123
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +174 -171
- package/dist/index.d.ts +174 -171
- package/dist/index.js +134 -123
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/dist/index.d.cts
CHANGED
|
@@ -476,6 +476,7 @@ interface Assistant extends AssistantBase {
|
|
|
476
476
|
assistant_ids: string[];
|
|
477
477
|
categories?: AssistantCategory[];
|
|
478
478
|
context: Context[];
|
|
479
|
+
skill_ids?: string[];
|
|
479
480
|
conversation_starters: string[];
|
|
480
481
|
created_date?: string;
|
|
481
482
|
creator: string;
|
|
@@ -655,6 +656,7 @@ declare const AssistantCreateParamsSchema: z.ZodReadonly<z.ZodObject<{
|
|
|
655
656
|
mcp_connect_auth_token: z.ZodOptional<z.ZodAny>;
|
|
656
657
|
}, z.core.$strip>>;
|
|
657
658
|
assistant_ids: z.ZodArray<z.ZodString>;
|
|
659
|
+
skill_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
658
660
|
prompt_variables: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
659
661
|
key: z.ZodString;
|
|
660
662
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -722,6 +724,7 @@ declare const AssistantUpdateParamsSchema: z.ZodReadonly<z.ZodObject<{
|
|
|
722
724
|
mcp_connect_auth_token: z.ZodOptional<z.ZodAny>;
|
|
723
725
|
}, z.core.$strip>>;
|
|
724
726
|
assistant_ids: z.ZodArray<z.ZodString>;
|
|
727
|
+
skill_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
725
728
|
prompt_variables: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
726
729
|
key: z.ZodString;
|
|
727
730
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1924,175 +1927,6 @@ declare class LLMService {
|
|
|
1924
1927
|
listEmbeddings(): Promise<LLMModel[]>;
|
|
1925
1928
|
}
|
|
1926
1929
|
|
|
1927
|
-
/** Models for task service. */
|
|
1928
|
-
/** Background task status constants */
|
|
1929
|
-
declare const BackgroundTaskStatus: {
|
|
1930
|
-
readonly STARTED: "STARTED";
|
|
1931
|
-
readonly COMPLETED: "COMPLETED";
|
|
1932
|
-
readonly FAILED: "FAILED";
|
|
1933
|
-
};
|
|
1934
|
-
type BackgroundTaskStatusType = (typeof BackgroundTaskStatus)[keyof typeof BackgroundTaskStatus];
|
|
1935
|
-
/** Model representing task user information */
|
|
1936
|
-
interface TaskUser {
|
|
1937
|
-
/** Unique identifier of the user */
|
|
1938
|
-
user_id: string;
|
|
1939
|
-
/** Username of the task owner */
|
|
1940
|
-
username: string;
|
|
1941
|
-
/** Display name of the task owner */
|
|
1942
|
-
name: string;
|
|
1943
|
-
}
|
|
1944
|
-
/** Model representing a background task */
|
|
1945
|
-
interface BackgroundTaskEntity {
|
|
1946
|
-
/** Unique identifier of the task */
|
|
1947
|
-
id: string;
|
|
1948
|
-
/** Task description or name */
|
|
1949
|
-
task: string;
|
|
1950
|
-
/** Information about the task owner */
|
|
1951
|
-
user: TaskUser;
|
|
1952
|
-
/** The final result or output of the task */
|
|
1953
|
-
final_output?: string;
|
|
1954
|
-
/** Current step or stage of the task */
|
|
1955
|
-
current_step?: string;
|
|
1956
|
-
/** Task status (STARTED, COMPLETED, or FAILED) */
|
|
1957
|
-
status: BackgroundTaskStatusType;
|
|
1958
|
-
/** Task creation timestamp */
|
|
1959
|
-
date: string;
|
|
1960
|
-
/** Last update timestamp */
|
|
1961
|
-
update_date: string;
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
declare class TaskService {
|
|
1965
|
-
private api;
|
|
1966
|
-
constructor(config: AuthConfig);
|
|
1967
|
-
/**
|
|
1968
|
-
* Get a background task by ID.
|
|
1969
|
-
*/
|
|
1970
|
-
get(taskId: string): Promise<BackgroundTaskEntity>;
|
|
1971
|
-
}
|
|
1972
|
-
|
|
1973
|
-
/** Models for user service. */
|
|
1974
|
-
/** User API response. */
|
|
1975
|
-
interface AboutUserResponse {
|
|
1976
|
-
user_id: string;
|
|
1977
|
-
name: string;
|
|
1978
|
-
username: string;
|
|
1979
|
-
email: string;
|
|
1980
|
-
is_admin: boolean;
|
|
1981
|
-
applications: string[];
|
|
1982
|
-
applications_admin: string[];
|
|
1983
|
-
picture: string;
|
|
1984
|
-
knowledge_bases: string[];
|
|
1985
|
-
}
|
|
1986
|
-
/** User model. */
|
|
1987
|
-
interface AboutUser {
|
|
1988
|
-
user_id: string;
|
|
1989
|
-
name: string;
|
|
1990
|
-
username: string;
|
|
1991
|
-
email: string;
|
|
1992
|
-
is_admin: boolean;
|
|
1993
|
-
applications: string[];
|
|
1994
|
-
applications_admin: string[];
|
|
1995
|
-
picture: string;
|
|
1996
|
-
knowledge_bases: string[];
|
|
1997
|
-
}
|
|
1998
|
-
/** User data and preferences model. */
|
|
1999
|
-
interface UserData {
|
|
2000
|
-
id?: string;
|
|
2001
|
-
date?: string;
|
|
2002
|
-
update_date?: string;
|
|
2003
|
-
user_id?: string;
|
|
2004
|
-
}
|
|
2005
|
-
|
|
2006
|
-
declare class UserService {
|
|
2007
|
-
private api;
|
|
2008
|
-
constructor(config: AuthConfig);
|
|
2009
|
-
/**
|
|
2010
|
-
* Get current user profile.
|
|
2011
|
-
*/
|
|
2012
|
-
aboutMe(): Promise<AboutUser>;
|
|
2013
|
-
/**
|
|
2014
|
-
* Get user data and preferences.
|
|
2015
|
-
*/
|
|
2016
|
-
getData(): Promise<UserData>;
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
interface Category {
|
|
2020
|
-
id: string;
|
|
2021
|
-
name: string;
|
|
2022
|
-
description?: string;
|
|
2023
|
-
}
|
|
2024
|
-
interface CategoryResponse {
|
|
2025
|
-
id: string;
|
|
2026
|
-
name: string;
|
|
2027
|
-
description?: string;
|
|
2028
|
-
marketplaceAssistantCount: number;
|
|
2029
|
-
projectAssistantCount: number;
|
|
2030
|
-
/** ISO datetime string */
|
|
2031
|
-
createdAt: string;
|
|
2032
|
-
/** ISO datetime string */
|
|
2033
|
-
updatedAt?: string;
|
|
2034
|
-
}
|
|
2035
|
-
interface CategoryListResponse {
|
|
2036
|
-
categories: CategoryResponse[];
|
|
2037
|
-
page: number;
|
|
2038
|
-
per_page: number;
|
|
2039
|
-
total: number;
|
|
2040
|
-
pages: number;
|
|
2041
|
-
}
|
|
2042
|
-
interface CategoryCreateParams {
|
|
2043
|
-
/** 1–255 chars */
|
|
2044
|
-
name: string;
|
|
2045
|
-
/** Optional description, max 1000 chars */
|
|
2046
|
-
description?: string;
|
|
2047
|
-
}
|
|
2048
|
-
interface CategoryUpdateParams {
|
|
2049
|
-
/** 1–255 chars */
|
|
2050
|
-
name: string;
|
|
2051
|
-
/** Optional description, max 1000 chars */
|
|
2052
|
-
description?: string;
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
declare class CategoryService {
|
|
2056
|
-
private api;
|
|
2057
|
-
constructor(config: AuthConfig);
|
|
2058
|
-
/**
|
|
2059
|
-
* Get all available assistant categories (legacy, non-paginated).
|
|
2060
|
-
* Public endpoint — no admin access required.
|
|
2061
|
-
* GET /v1/assistants/categories
|
|
2062
|
-
*/
|
|
2063
|
-
getCategories(): Promise<Category[]>;
|
|
2064
|
-
/**
|
|
2065
|
-
* Get paginated list of categories with marketplace/project assistant counts.
|
|
2066
|
-
* Admin access required.
|
|
2067
|
-
* GET /v1/assistants/categories/list
|
|
2068
|
-
*/
|
|
2069
|
-
listCategories(page?: number, perPage?: number): Promise<CategoryListResponse>;
|
|
2070
|
-
/**
|
|
2071
|
-
* Get a specific category by ID with assistant counts.
|
|
2072
|
-
* Admin access required.
|
|
2073
|
-
* GET /v1/assistants/categories/{id}
|
|
2074
|
-
*/
|
|
2075
|
-
getCategory(categoryId: string): Promise<CategoryResponse>;
|
|
2076
|
-
/**
|
|
2077
|
-
* Create a new category. The ID is auto-generated from the name.
|
|
2078
|
-
* Admin access required.
|
|
2079
|
-
* POST /v1/assistants/categories
|
|
2080
|
-
*/
|
|
2081
|
-
createCategory(params: CategoryCreateParams): Promise<CategoryResponse>;
|
|
2082
|
-
/**
|
|
2083
|
-
* Update an existing category.
|
|
2084
|
-
* Admin access required.
|
|
2085
|
-
* PUT /v1/assistants/categories/{id}
|
|
2086
|
-
*/
|
|
2087
|
-
updateCategory(categoryId: string, params: CategoryUpdateParams): Promise<CategoryResponse>;
|
|
2088
|
-
/**
|
|
2089
|
-
* Delete a category. Fails with 409 if any assistants are assigned to it.
|
|
2090
|
-
* Admin access required.
|
|
2091
|
-
* DELETE /v1/assistants/categories/{id}
|
|
2092
|
-
*/
|
|
2093
|
-
deleteCategory(categoryId: string): Promise<void>;
|
|
2094
|
-
}
|
|
2095
|
-
|
|
2096
1930
|
/** Models for skill-related data structures. */
|
|
2097
1931
|
declare enum SkillVisibility {
|
|
2098
1932
|
PRIVATE = "private",
|
|
@@ -2312,6 +2146,175 @@ declare class SkillService {
|
|
|
2312
2146
|
removeReactions(skillId: string): Promise<AnyJson>;
|
|
2313
2147
|
}
|
|
2314
2148
|
|
|
2149
|
+
/** Models for task service. */
|
|
2150
|
+
/** Background task status constants */
|
|
2151
|
+
declare const BackgroundTaskStatus: {
|
|
2152
|
+
readonly STARTED: "STARTED";
|
|
2153
|
+
readonly COMPLETED: "COMPLETED";
|
|
2154
|
+
readonly FAILED: "FAILED";
|
|
2155
|
+
};
|
|
2156
|
+
type BackgroundTaskStatusType = (typeof BackgroundTaskStatus)[keyof typeof BackgroundTaskStatus];
|
|
2157
|
+
/** Model representing task user information */
|
|
2158
|
+
interface TaskUser {
|
|
2159
|
+
/** Unique identifier of the user */
|
|
2160
|
+
user_id: string;
|
|
2161
|
+
/** Username of the task owner */
|
|
2162
|
+
username: string;
|
|
2163
|
+
/** Display name of the task owner */
|
|
2164
|
+
name: string;
|
|
2165
|
+
}
|
|
2166
|
+
/** Model representing a background task */
|
|
2167
|
+
interface BackgroundTaskEntity {
|
|
2168
|
+
/** Unique identifier of the task */
|
|
2169
|
+
id: string;
|
|
2170
|
+
/** Task description or name */
|
|
2171
|
+
task: string;
|
|
2172
|
+
/** Information about the task owner */
|
|
2173
|
+
user: TaskUser;
|
|
2174
|
+
/** The final result or output of the task */
|
|
2175
|
+
final_output?: string;
|
|
2176
|
+
/** Current step or stage of the task */
|
|
2177
|
+
current_step?: string;
|
|
2178
|
+
/** Task status (STARTED, COMPLETED, or FAILED) */
|
|
2179
|
+
status: BackgroundTaskStatusType;
|
|
2180
|
+
/** Task creation timestamp */
|
|
2181
|
+
date: string;
|
|
2182
|
+
/** Last update timestamp */
|
|
2183
|
+
update_date: string;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
declare class TaskService {
|
|
2187
|
+
private api;
|
|
2188
|
+
constructor(config: AuthConfig);
|
|
2189
|
+
/**
|
|
2190
|
+
* Get a background task by ID.
|
|
2191
|
+
*/
|
|
2192
|
+
get(taskId: string): Promise<BackgroundTaskEntity>;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
/** Models for user service. */
|
|
2196
|
+
/** User API response. */
|
|
2197
|
+
interface AboutUserResponse {
|
|
2198
|
+
user_id: string;
|
|
2199
|
+
name: string;
|
|
2200
|
+
username: string;
|
|
2201
|
+
email: string;
|
|
2202
|
+
is_admin: boolean;
|
|
2203
|
+
applications: string[];
|
|
2204
|
+
applications_admin: string[];
|
|
2205
|
+
picture: string;
|
|
2206
|
+
knowledge_bases: string[];
|
|
2207
|
+
}
|
|
2208
|
+
/** User model. */
|
|
2209
|
+
interface AboutUser {
|
|
2210
|
+
user_id: string;
|
|
2211
|
+
name: string;
|
|
2212
|
+
username: string;
|
|
2213
|
+
email: string;
|
|
2214
|
+
is_admin: boolean;
|
|
2215
|
+
applications: string[];
|
|
2216
|
+
applications_admin: string[];
|
|
2217
|
+
picture: string;
|
|
2218
|
+
knowledge_bases: string[];
|
|
2219
|
+
}
|
|
2220
|
+
/** User data and preferences model. */
|
|
2221
|
+
interface UserData {
|
|
2222
|
+
id?: string;
|
|
2223
|
+
date?: string;
|
|
2224
|
+
update_date?: string;
|
|
2225
|
+
user_id?: string;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
declare class UserService {
|
|
2229
|
+
private api;
|
|
2230
|
+
constructor(config: AuthConfig);
|
|
2231
|
+
/**
|
|
2232
|
+
* Get current user profile.
|
|
2233
|
+
*/
|
|
2234
|
+
aboutMe(): Promise<AboutUser>;
|
|
2235
|
+
/**
|
|
2236
|
+
* Get user data and preferences.
|
|
2237
|
+
*/
|
|
2238
|
+
getData(): Promise<UserData>;
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
interface Category {
|
|
2242
|
+
id: string;
|
|
2243
|
+
name: string;
|
|
2244
|
+
description?: string;
|
|
2245
|
+
}
|
|
2246
|
+
interface CategoryResponse {
|
|
2247
|
+
id: string;
|
|
2248
|
+
name: string;
|
|
2249
|
+
description?: string;
|
|
2250
|
+
marketplaceAssistantCount: number;
|
|
2251
|
+
projectAssistantCount: number;
|
|
2252
|
+
/** ISO datetime string */
|
|
2253
|
+
createdAt: string;
|
|
2254
|
+
/** ISO datetime string */
|
|
2255
|
+
updatedAt?: string;
|
|
2256
|
+
}
|
|
2257
|
+
interface CategoryListResponse {
|
|
2258
|
+
categories: CategoryResponse[];
|
|
2259
|
+
page: number;
|
|
2260
|
+
per_page: number;
|
|
2261
|
+
total: number;
|
|
2262
|
+
pages: number;
|
|
2263
|
+
}
|
|
2264
|
+
interface CategoryCreateParams {
|
|
2265
|
+
/** 1–255 chars */
|
|
2266
|
+
name: string;
|
|
2267
|
+
/** Optional description, max 1000 chars */
|
|
2268
|
+
description?: string;
|
|
2269
|
+
}
|
|
2270
|
+
interface CategoryUpdateParams {
|
|
2271
|
+
/** 1–255 chars */
|
|
2272
|
+
name: string;
|
|
2273
|
+
/** Optional description, max 1000 chars */
|
|
2274
|
+
description?: string;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
declare class CategoryService {
|
|
2278
|
+
private api;
|
|
2279
|
+
constructor(config: AuthConfig);
|
|
2280
|
+
/**
|
|
2281
|
+
* Get all available assistant categories (legacy, non-paginated).
|
|
2282
|
+
* Public endpoint — no admin access required.
|
|
2283
|
+
* GET /v1/assistants/categories
|
|
2284
|
+
*/
|
|
2285
|
+
getCategories(): Promise<Category[]>;
|
|
2286
|
+
/**
|
|
2287
|
+
* Get paginated list of categories with marketplace/project assistant counts.
|
|
2288
|
+
* Admin access required.
|
|
2289
|
+
* GET /v1/assistants/categories/list
|
|
2290
|
+
*/
|
|
2291
|
+
listCategories(page?: number, perPage?: number): Promise<CategoryListResponse>;
|
|
2292
|
+
/**
|
|
2293
|
+
* Get a specific category by ID with assistant counts.
|
|
2294
|
+
* Admin access required.
|
|
2295
|
+
* GET /v1/assistants/categories/{id}
|
|
2296
|
+
*/
|
|
2297
|
+
getCategory(categoryId: string): Promise<CategoryResponse>;
|
|
2298
|
+
/**
|
|
2299
|
+
* Create a new category. The ID is auto-generated from the name.
|
|
2300
|
+
* Admin access required.
|
|
2301
|
+
* POST /v1/assistants/categories
|
|
2302
|
+
*/
|
|
2303
|
+
createCategory(params: CategoryCreateParams): Promise<CategoryResponse>;
|
|
2304
|
+
/**
|
|
2305
|
+
* Update an existing category.
|
|
2306
|
+
* Admin access required.
|
|
2307
|
+
* PUT /v1/assistants/categories/{id}
|
|
2308
|
+
*/
|
|
2309
|
+
updateCategory(categoryId: string, params: CategoryUpdateParams): Promise<CategoryResponse>;
|
|
2310
|
+
/**
|
|
2311
|
+
* Delete a category. Fails with 409 if any assistants are assigned to it.
|
|
2312
|
+
* Admin access required.
|
|
2313
|
+
* DELETE /v1/assistants/categories/{id}
|
|
2314
|
+
*/
|
|
2315
|
+
deleteCategory(categoryId: string): Promise<void>;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2315
2318
|
/** Models for workflow functionality */
|
|
2316
2319
|
|
|
2317
2320
|
/** Available workflow modes */
|
|
@@ -2661,10 +2664,10 @@ declare class CodeMieClient {
|
|
|
2661
2664
|
private _files;
|
|
2662
2665
|
private _integrations;
|
|
2663
2666
|
private _llms;
|
|
2667
|
+
private _skills;
|
|
2664
2668
|
private _tasks;
|
|
2665
2669
|
private _users;
|
|
2666
2670
|
private _categories;
|
|
2667
|
-
private _skills;
|
|
2668
2671
|
private _workflows;
|
|
2669
2672
|
constructor(config: CodeMieClientConfig);
|
|
2670
2673
|
/**
|
|
@@ -2749,4 +2752,4 @@ declare class NotFoundError extends ApiError {
|
|
|
2749
2752
|
constructor(resourceType: string, resourceId: string);
|
|
2750
2753
|
}
|
|
2751
2754
|
|
|
2752
|
-
export { type AboutUser, type AboutUserResponse, type AgentErrorDetails, type AnalyticsQueryParams, AnalyticsQueryParamsSchema, AnalyticsService, 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 AzureDevOpsWiki, type AzureDevOpsWikiDataSourceCreateDto, type AzureDevOpsWikiDataSourceCreateParams, type AzureDevOpsWikiDataSourceUpdateDto, type AzureDevOpsWikiDataSourceUpdateParams, type AzureDevOpsWorkItem, type AzureDevOpsWorkItemDataSourceCreateDto, type AzureDevOpsWorkItemDataSourceCreateParams, type AzureDevOpsWorkItemDataSourceUpdateDto, type AzureDevOpsWorkItemDataSourceUpdateParams, 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 BaseSharePointParams, type BaseUser, type Category, type CategoryCreateParams, type CategoryListResponse, type CategoryResponse, CategoryService, type CategoryUpdateParams, ChatRole, type Code, type CodeAnalysisProviderCreateParams, type CodeDataSourceCreateDto, type CodeDataSourceCreateParams, type CodeDataSourceResponse, CodeDataSourceType, type CodeDataSourceTypeType, type CodeDataSourceUpdateDto, type CodeDataSourceUpdateParams, type CodeExplorationProviderCreateParams, CodeMieClient, type CodeMieClientConfig, CodeMieError, type ColumnDefinition, 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, type ElasticsearchStats, 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, MCPServerConfigSchema, type MCPServerDetails, type Mark, type Metric, type MissingIntegration, type MissingIntegrationsByCredentialType, NotFoundError, type Operator, type OtherDataSourceCreateParams, type OtherDataSourceUpdateParams, type PaginatedAnalyticsQueryParams, PaginatedAnalyticsQueryParamsSchema, type PaginatedResponse, type PaginationMetadata, type PaginationParams, type PromptVariable, type ProviderDataSourceRequest, type ResponseMetadata, type SharePoint, type SharePointAuthType, type SharePointDataSourceCreateDto, type SharePointDataSourceCreateParams, type SharePointDataSourceUpdateDto, type SharePointDataSourceUpdateParams, SkillCategory, type SkillCategoryItem, type SkillCreateParams, type SkillCreatedBy, type SkillDetail, type SkillImportParams, type SkillListItem, type SkillListPaginatedResponse, SkillScopeFilter, SkillService, SkillSortBy, type SkillUpdateParams, SkillVisibility, type SortOrder, type SummariesData, type SummariesResponse, type SystemPromptHistory, TIME_PERIOD_VALUES, type TabularData, type TabularResponse, TaskService, type TaskUser, type Thought, type TimePeriod, type TokensUsage, type ToolDetails, type ToolErrorDetails, type ToolItem, type ToolKitDetails, type UserData, type UserListItem, UserService, type UsersListData, type UsersListResponse, type VersionsListResponse, type VirtualAssistantChatParams, VirtualAssistantChatParamsSchema, 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, type XrayDataSourceCreateDto, type XrayDataSourceCreateParams, type XrayDataSourceUpdateDto, type XrayDataSourceUpdateParams, classifyHttpError, formatCookies, formatToolErrorForLevel, formatToolErrorFull, formatToolErrorMinimal, formatToolErrorStandard, isRecoverableError };
|
|
2755
|
+
export { type AboutUser, type AboutUserResponse, type AgentErrorDetails, type AnalyticsQueryParams, AnalyticsQueryParamsSchema, AnalyticsService, 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 AzureDevOpsWiki, type AzureDevOpsWikiDataSourceCreateDto, type AzureDevOpsWikiDataSourceCreateParams, type AzureDevOpsWikiDataSourceUpdateDto, type AzureDevOpsWikiDataSourceUpdateParams, type AzureDevOpsWorkItem, type AzureDevOpsWorkItemDataSourceCreateDto, type AzureDevOpsWorkItemDataSourceCreateParams, type AzureDevOpsWorkItemDataSourceUpdateDto, type AzureDevOpsWorkItemDataSourceUpdateParams, 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 BaseSharePointParams, type BaseUser, type Category, type CategoryCreateParams, type CategoryListResponse, type CategoryResponse, CategoryService, type CategoryUpdateParams, ChatRole, type Code, type CodeAnalysisProviderCreateParams, type CodeDataSourceCreateDto, type CodeDataSourceCreateParams, type CodeDataSourceResponse, CodeDataSourceType, type CodeDataSourceTypeType, type CodeDataSourceUpdateDto, type CodeDataSourceUpdateParams, type CodeExplorationProviderCreateParams, CodeMieClient, type CodeMieClientConfig, CodeMieError, type ColumnDefinition, 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, type ElasticsearchStats, 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, MCPServerConfigSchema, type MCPServerDetails, type Mark, type Metric, type MissingIntegration, type MissingIntegrationsByCredentialType, NotFoundError, type Operator, type OtherDataSourceCreateParams, type OtherDataSourceUpdateParams, type PaginatedAnalyticsQueryParams, PaginatedAnalyticsQueryParamsSchema, type PaginatedResponse, type PaginationMetadata, type PaginationParams, type PromptVariable, type ProviderDataSourceRequest, type ResponseMetadata, type SharePoint, type SharePointAuthType, type SharePointDataSourceCreateDto, type SharePointDataSourceCreateParams, type SharePointDataSourceUpdateDto, type SharePointDataSourceUpdateParams, SkillCategory, type SkillCategoryItem, type SkillCreateParams, type SkillCreatedBy, type SkillDetail, type SkillImportParams, type SkillListItem, type SkillListPaginatedResponse, type SkillListParams, SkillListParamsSchema, SkillScopeFilter, SkillService, SkillSortBy, type SkillUpdateParams, SkillVisibility, type SortOrder, type SummariesData, type SummariesResponse, type SystemPromptHistory, TIME_PERIOD_VALUES, type TabularData, type TabularResponse, TaskService, type TaskUser, type Thought, type TimePeriod, type TokensUsage, type ToolDetails, type ToolErrorDetails, type ToolItem, type ToolKitDetails, type UserData, type UserListItem, UserService, type UsersListData, type UsersListResponse, type VersionsListResponse, type VirtualAssistantChatParams, VirtualAssistantChatParamsSchema, 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, type XrayDataSourceCreateDto, type XrayDataSourceCreateParams, type XrayDataSourceUpdateDto, type XrayDataSourceUpdateParams, classifyHttpError, formatCookies, formatToolErrorForLevel, formatToolErrorFull, formatToolErrorMinimal, formatToolErrorStandard, isRecoverableError };
|