@n8n/api-types 1.0.1 → 1.2.0
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/build.tsbuildinfo +1 -1
- package/dist/chat-hub.d.ts +86 -5
- package/dist/chat-hub.js +37 -3
- package/dist/chat-hub.js.map +1 -1
- package/dist/dto/ai/ai-build-request.dto.d.ts +11 -0
- package/dist/dto/ai/ai-build-request.dto.js +3 -0
- package/dist/dto/ai/ai-build-request.dto.js.map +1 -1
- package/dist/dto/ai/ai-truncate-messages-request.dto.d.ts +9 -0
- package/dist/dto/ai/ai-truncate-messages-request.dto.js +12 -0
- package/dist/dto/ai/ai-truncate-messages-request.dto.js.map +1 -0
- package/dist/dto/credential-resolver/create-credential-resolver.dto.d.ts +9 -0
- package/dist/dto/credential-resolver/create-credential-resolver.dto.js +13 -0
- package/dist/dto/credential-resolver/create-credential-resolver.dto.js.map +1 -0
- package/dist/dto/credential-resolver/update-credential-resolver.dto.d.ts +9 -0
- package/dist/dto/credential-resolver/update-credential-resolver.dto.js +13 -0
- package/dist/dto/credential-resolver/update-credential-resolver.dto.js.map +1 -0
- package/dist/dto/credentials/create-credential.dto.d.ts +1 -0
- package/dist/dto/credentials/create-credential.dto.js +1 -0
- package/dist/dto/credentials/create-credential.dto.js.map +1 -1
- package/dist/dto/data-table/rename-data-table-column.dto.d.ts +7 -0
- package/dist/dto/data-table/rename-data-table-column.dto.js +11 -0
- package/dist/dto/data-table/rename-data-table-column.dto.js.map +1 -0
- package/dist/dto/index.d.ts +5 -0
- package/dist/dto/index.js +12 -2
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/invitation/invite-users-request.dto.d.ts +3 -3
- package/dist/dto/project/add-users-to-project.dto.d.ts +3 -3
- package/dist/dto/project/change-user-role-in-project.dto.d.ts +1 -1
- package/dist/dto/project/create-project.dto.d.ts +2 -2
- package/dist/dto/project/update-project.dto.d.ts +7 -7
- package/dist/dto/source-control/push-work-folder-request.dto.d.ts +2 -2
- package/dist/dto/user/role-change-request.dto.d.ts +1 -1
- package/dist/dto/workflow-history/workflow-history-versions-by-ids.dto.d.ts +8 -0
- package/dist/dto/workflow-history/workflow-history-versions-by-ids.dto.js +11 -0
- package/dist/dto/workflow-history/workflow-history-versions-by-ids.dto.js.map +1 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/scaling.d.ts +17 -0
- package/dist/schemas/credential-resolver.schema.d.ts +89 -0
- package/dist/schemas/credential-resolver.schema.js +26 -0
- package/dist/schemas/credential-resolver.schema.js.map +1 -0
- package/dist/schemas/project.schema.d.ts +5 -5
- package/dist/schemas/source-controlled-file.schema.d.ts +6 -2
- package/dist/schemas/source-controlled-file.schema.js +4 -0
- package/dist/schemas/source-controlled-file.schema.js.map +1 -1
- package/dist/schemas/usage.schema.d.ts +14 -14
- package/dist/schemas/user.schema.d.ts +24 -23
- package/dist/schemas/user.schema.js +1 -0
- package/dist/schemas/user.schema.js.map +1 -1
- package/dist/schemas/workflow-execution-status.schema.d.ts +45 -0
- package/dist/schemas/workflow-execution-status.schema.js +18 -0
- package/dist/schemas/workflow-execution-status.schema.js.map +1 -0
- package/package.json +4 -4
package/dist/chat-hub.d.ts
CHANGED
|
@@ -1,12 +1,33 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { Scope } from '@n8n/permissions';
|
|
2
|
+
import { type StructuredChunk, type JINA_AI_TOOL_NODE_TYPE, type SERP_API_TOOL_NODE_TYPE, type INode } from 'n8n-workflow';
|
|
2
3
|
import { z } from 'zod';
|
|
3
4
|
import { Z } from 'zod-class';
|
|
4
5
|
export declare const chatHubLLMProviderSchema: z.ZodEnum<["openai", "anthropic", "google", "azureOpenAi", "azureEntraId", "ollama", "awsBedrock", "vercelAiGateway", "xAiGrok", "groq", "openRouter", "deepSeek", "cohere", "mistralCloud"]>;
|
|
5
6
|
export type ChatHubLLMProvider = z.infer<typeof chatHubLLMProviderSchema>;
|
|
7
|
+
export declare const agentIconOrEmojiSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8
|
+
type: z.ZodLiteral<"icon">;
|
|
9
|
+
value: z.ZodString;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
value: string;
|
|
12
|
+
type: "icon";
|
|
13
|
+
}, {
|
|
14
|
+
value: string;
|
|
15
|
+
type: "icon";
|
|
16
|
+
}>, z.ZodObject<{
|
|
17
|
+
type: z.ZodLiteral<"emoji">;
|
|
18
|
+
value: z.ZodString;
|
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
value: string;
|
|
21
|
+
type: "emoji";
|
|
22
|
+
}, {
|
|
23
|
+
value: string;
|
|
24
|
+
type: "emoji";
|
|
25
|
+
}>]>;
|
|
26
|
+
export type AgentIconOrEmoji = z.infer<typeof agentIconOrEmojiSchema>;
|
|
6
27
|
export declare const chatHubProviderSchema: z.ZodEnum<["openai", "anthropic", "google", "azureOpenAi", "azureEntraId", "ollama", "awsBedrock", "vercelAiGateway", "xAiGrok", "groq", "openRouter", "deepSeek", "cohere", "mistralCloud", "n8n", "custom-agent"]>;
|
|
7
28
|
export type ChatHubProvider = z.infer<typeof chatHubProviderSchema>;
|
|
8
29
|
export declare const PROVIDER_CREDENTIAL_TYPE_MAP: Record<Exclude<ChatHubProvider, 'n8n' | 'custom-agent'>, string>;
|
|
9
|
-
export type ChatHubAgentTool = typeof JINA_AI_TOOL_NODE_TYPE;
|
|
30
|
+
export type ChatHubAgentTool = typeof JINA_AI_TOOL_NODE_TYPE | typeof SERP_API_TOOL_NODE_TYPE;
|
|
10
31
|
declare const openAIModelSchema: z.ZodObject<{
|
|
11
32
|
provider: z.ZodLiteral<"openai">;
|
|
12
33
|
model: z.ZodString;
|
|
@@ -338,13 +359,23 @@ export declare const chatModelsRequestSchema: z.ZodObject<{
|
|
|
338
359
|
credentials: Partial<Record<"openai" | "anthropic" | "google" | "azureOpenAi" | "azureEntraId" | "ollama" | "awsBedrock" | "vercelAiGateway" | "xAiGrok" | "groq" | "openRouter" | "deepSeek" | "cohere" | "mistralCloud" | "n8n" | "custom-agent", string | null>>;
|
|
339
360
|
}>;
|
|
340
361
|
export type ChatModelsRequest = z.infer<typeof chatModelsRequestSchema>;
|
|
362
|
+
export type ChatHubInputModality = 'text' | 'image' | 'audio' | 'video' | 'file';
|
|
363
|
+
export interface ChatModelMetadataDto {
|
|
364
|
+
inputModalities: ChatHubInputModality[];
|
|
365
|
+
capabilities: {
|
|
366
|
+
functionCalling: boolean;
|
|
367
|
+
};
|
|
368
|
+
available: boolean;
|
|
369
|
+
scopes?: Scope[];
|
|
370
|
+
}
|
|
341
371
|
export interface ChatModelDto {
|
|
342
372
|
model: ChatHubConversationModel;
|
|
343
373
|
name: string;
|
|
344
374
|
description: string | null;
|
|
375
|
+
icon: AgentIconOrEmoji | null;
|
|
345
376
|
updatedAt: string | null;
|
|
346
377
|
createdAt: string | null;
|
|
347
|
-
|
|
378
|
+
metadata: ChatModelMetadataDto;
|
|
348
379
|
}
|
|
349
380
|
export type ChatModelsResponse = Record<ChatHubProvider, {
|
|
350
381
|
models: ChatModelDto[];
|
|
@@ -364,6 +395,9 @@ export declare const chatAttachmentSchema: z.ZodObject<{
|
|
|
364
395
|
mimeType: string;
|
|
365
396
|
fileName: string;
|
|
366
397
|
}>;
|
|
398
|
+
export declare const isValidTimeZone: (tz: string) => boolean;
|
|
399
|
+
export declare const StrictTimeZoneSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
400
|
+
export declare const TimeZoneSchema: z.ZodCatch<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
367
401
|
export type ChatAttachment = z.infer<typeof chatAttachmentSchema>;
|
|
368
402
|
declare const ChatHubSendMessageRequest_base: Z.Class<{
|
|
369
403
|
messageId: z.ZodString;
|
|
@@ -539,7 +573,8 @@ declare const ChatHubSendMessageRequest_base: Z.Class<{
|
|
|
539
573
|
mimeType: string;
|
|
540
574
|
fileName: string;
|
|
541
575
|
}>, "many">;
|
|
542
|
-
agentName: z.ZodString
|
|
576
|
+
agentName: z.ZodOptional<z.ZodString>;
|
|
577
|
+
timeZone: z.ZodCatch<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
543
578
|
}>;
|
|
544
579
|
export declare class ChatHubSendMessageRequest extends ChatHubSendMessageRequest_base {
|
|
545
580
|
}
|
|
@@ -699,6 +734,7 @@ declare const ChatHubRegenerateMessageRequest_base: Z.Class<{
|
|
|
699
734
|
id: string;
|
|
700
735
|
name: string;
|
|
701
736
|
}>>;
|
|
737
|
+
timeZone: z.ZodCatch<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
702
738
|
}>;
|
|
703
739
|
export declare class ChatHubRegenerateMessageRequest extends ChatHubRegenerateMessageRequest_base {
|
|
704
740
|
}
|
|
@@ -860,6 +896,7 @@ declare const ChatHubEditMessageRequest_base: Z.Class<{
|
|
|
860
896
|
id: string;
|
|
861
897
|
name: string;
|
|
862
898
|
}>>;
|
|
899
|
+
timeZone: z.ZodCatch<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
863
900
|
}>;
|
|
864
901
|
export declare class ChatHubEditMessageRequest extends ChatHubEditMessageRequest_base {
|
|
865
902
|
}
|
|
@@ -1135,6 +1172,7 @@ export interface ChatHubSessionDto {
|
|
|
1135
1172
|
workflowId: string | null;
|
|
1136
1173
|
agentId: string | null;
|
|
1137
1174
|
agentName: string;
|
|
1175
|
+
agentIcon: AgentIconOrEmoji | null;
|
|
1138
1176
|
createdAt: string;
|
|
1139
1177
|
updatedAt: string;
|
|
1140
1178
|
tools: INode[];
|
|
@@ -1183,6 +1221,7 @@ export interface ChatHubAgentDto {
|
|
|
1183
1221
|
id: string;
|
|
1184
1222
|
name: string;
|
|
1185
1223
|
description: string | null;
|
|
1224
|
+
icon: AgentIconOrEmoji | null;
|
|
1186
1225
|
systemPrompt: string;
|
|
1187
1226
|
ownerId: string;
|
|
1188
1227
|
credentialId: string | null;
|
|
@@ -1195,6 +1234,25 @@ export interface ChatHubAgentDto {
|
|
|
1195
1234
|
declare const ChatHubCreateAgentRequest_base: Z.Class<{
|
|
1196
1235
|
name: z.ZodString;
|
|
1197
1236
|
description: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
icon: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1238
|
+
type: z.ZodLiteral<"icon">;
|
|
1239
|
+
value: z.ZodString;
|
|
1240
|
+
}, "strip", z.ZodTypeAny, {
|
|
1241
|
+
value: string;
|
|
1242
|
+
type: "icon";
|
|
1243
|
+
}, {
|
|
1244
|
+
value: string;
|
|
1245
|
+
type: "icon";
|
|
1246
|
+
}>, z.ZodObject<{
|
|
1247
|
+
type: z.ZodLiteral<"emoji">;
|
|
1248
|
+
value: z.ZodString;
|
|
1249
|
+
}, "strip", z.ZodTypeAny, {
|
|
1250
|
+
value: string;
|
|
1251
|
+
type: "emoji";
|
|
1252
|
+
}, {
|
|
1253
|
+
value: string;
|
|
1254
|
+
type: "emoji";
|
|
1255
|
+
}>]>;
|
|
1198
1256
|
systemPrompt: z.ZodString;
|
|
1199
1257
|
credentialId: z.ZodString;
|
|
1200
1258
|
provider: z.ZodEnum<["openai", "anthropic", "google", "azureOpenAi", "azureEntraId", "ollama", "awsBedrock", "vercelAiGateway", "xAiGrok", "groq", "openRouter", "deepSeek", "cohere", "mistralCloud"]>;
|
|
@@ -1206,9 +1264,28 @@ export declare class ChatHubCreateAgentRequest extends ChatHubCreateAgentRequest
|
|
|
1206
1264
|
declare const ChatHubUpdateAgentRequest_base: Z.Class<{
|
|
1207
1265
|
name: z.ZodOptional<z.ZodString>;
|
|
1208
1266
|
description: z.ZodOptional<z.ZodString>;
|
|
1267
|
+
icon: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1268
|
+
type: z.ZodLiteral<"icon">;
|
|
1269
|
+
value: z.ZodString;
|
|
1270
|
+
}, "strip", z.ZodTypeAny, {
|
|
1271
|
+
value: string;
|
|
1272
|
+
type: "icon";
|
|
1273
|
+
}, {
|
|
1274
|
+
value: string;
|
|
1275
|
+
type: "icon";
|
|
1276
|
+
}>, z.ZodObject<{
|
|
1277
|
+
type: z.ZodLiteral<"emoji">;
|
|
1278
|
+
value: z.ZodString;
|
|
1279
|
+
}, "strip", z.ZodTypeAny, {
|
|
1280
|
+
value: string;
|
|
1281
|
+
type: "emoji";
|
|
1282
|
+
}, {
|
|
1283
|
+
value: string;
|
|
1284
|
+
type: "emoji";
|
|
1285
|
+
}>]>>;
|
|
1209
1286
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
1210
1287
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
1211
|
-
provider: z.ZodOptional<z.ZodEnum<["openai", "anthropic", "google", "azureOpenAi", "azureEntraId", "ollama", "awsBedrock", "vercelAiGateway", "xAiGrok", "groq", "openRouter", "deepSeek", "cohere", "mistralCloud"
|
|
1288
|
+
provider: z.ZodOptional<z.ZodEnum<["openai", "anthropic", "google", "azureOpenAi", "azureEntraId", "ollama", "awsBedrock", "vercelAiGateway", "xAiGrok", "groq", "openRouter", "deepSeek", "cohere", "mistralCloud"]>>;
|
|
1212
1289
|
model: z.ZodOptional<z.ZodString>;
|
|
1213
1290
|
tools: z.ZodOptional<z.ZodArray<z.ZodType<INode, z.ZodTypeDef, INode>, "many">>;
|
|
1214
1291
|
}>;
|
|
@@ -1311,4 +1388,8 @@ declare const UpdateChatSettingsRequest_base: Z.Class<{
|
|
|
1311
1388
|
}>;
|
|
1312
1389
|
export declare class UpdateChatSettingsRequest extends UpdateChatSettingsRequest_base {
|
|
1313
1390
|
}
|
|
1391
|
+
export interface ChatHubModuleSettings {
|
|
1392
|
+
enabled: boolean;
|
|
1393
|
+
providers: Record<ChatHubLLMProvider, ChatProviderSettingsDto>;
|
|
1394
|
+
}
|
|
1314
1395
|
export {};
|
package/dist/chat-hub.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateChatSettingsRequest = exports.ChatHubUpdateAgentRequest = exports.ChatHubCreateAgentRequest = exports.ChatHubConversationsRequest = exports.ChatHubUpdateConversationRequest = exports.ChatHubEditMessageRequest = exports.ChatHubRegenerateMessageRequest = exports.ChatHubSendMessageRequest = exports.chatAttachmentSchema = exports.emptyChatModelsResponse = exports.chatModelsRequestSchema = exports.chatHubConversationModelSchema = exports.PROVIDER_CREDENTIAL_TYPE_MAP = exports.chatHubProviderSchema = exports.chatHubLLMProviderSchema = void 0;
|
|
3
|
+
exports.UpdateChatSettingsRequest = exports.ChatHubUpdateAgentRequest = exports.ChatHubCreateAgentRequest = exports.ChatHubConversationsRequest = exports.ChatHubUpdateConversationRequest = exports.ChatHubEditMessageRequest = exports.ChatHubRegenerateMessageRequest = exports.ChatHubSendMessageRequest = exports.TimeZoneSchema = exports.StrictTimeZoneSchema = exports.isValidTimeZone = exports.chatAttachmentSchema = exports.emptyChatModelsResponse = exports.chatModelsRequestSchema = exports.chatHubConversationModelSchema = exports.PROVIDER_CREDENTIAL_TYPE_MAP = exports.chatHubProviderSchema = exports.agentIconOrEmojiSchema = exports.chatHubLLMProviderSchema = void 0;
|
|
4
4
|
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
5
|
const zod_1 = require("zod");
|
|
6
6
|
const zod_class_1 = require("zod-class");
|
|
@@ -20,6 +20,16 @@ exports.chatHubLLMProviderSchema = zod_1.z.enum([
|
|
|
20
20
|
'cohere',
|
|
21
21
|
'mistralCloud',
|
|
22
22
|
]);
|
|
23
|
+
exports.agentIconOrEmojiSchema = zod_1.z.discriminatedUnion('type', [
|
|
24
|
+
zod_1.z.object({
|
|
25
|
+
type: zod_1.z.literal('icon'),
|
|
26
|
+
value: zod_1.z.string(),
|
|
27
|
+
}),
|
|
28
|
+
zod_1.z.object({
|
|
29
|
+
type: zod_1.z.literal('emoji'),
|
|
30
|
+
value: zod_1.z.string(),
|
|
31
|
+
}),
|
|
32
|
+
]);
|
|
23
33
|
exports.chatHubProviderSchema = zod_1.z.enum([
|
|
24
34
|
...exports.chatHubLLMProviderSchema.options,
|
|
25
35
|
'n8n',
|
|
@@ -149,6 +159,25 @@ exports.chatAttachmentSchema = zod_1.z.object({
|
|
|
149
159
|
mimeType: zod_1.z.string(),
|
|
150
160
|
fileName: zod_1.z.string(),
|
|
151
161
|
});
|
|
162
|
+
const isValidTimeZone = (tz) => {
|
|
163
|
+
try {
|
|
164
|
+
new Intl.DateTimeFormat('en-US', { timeZone: tz });
|
|
165
|
+
return true;
|
|
166
|
+
}
|
|
167
|
+
catch {
|
|
168
|
+
return false;
|
|
169
|
+
}
|
|
170
|
+
};
|
|
171
|
+
exports.isValidTimeZone = isValidTimeZone;
|
|
172
|
+
exports.StrictTimeZoneSchema = zod_1.z
|
|
173
|
+
.string()
|
|
174
|
+
.min(1)
|
|
175
|
+
.max(50)
|
|
176
|
+
.regex(/^[A-Za-z0-9_/+-]+$/)
|
|
177
|
+
.refine(exports.isValidTimeZone, {
|
|
178
|
+
message: 'Unknown or invalid time zone',
|
|
179
|
+
});
|
|
180
|
+
exports.TimeZoneSchema = exports.StrictTimeZoneSchema.optional().catch(undefined);
|
|
152
181
|
class ChatHubSendMessageRequest extends zod_class_1.Z.class({
|
|
153
182
|
messageId: zod_1.z.string().uuid(),
|
|
154
183
|
sessionId: zod_1.z.string().uuid(),
|
|
@@ -161,7 +190,8 @@ class ChatHubSendMessageRequest extends zod_class_1.Z.class({
|
|
|
161
190
|
})),
|
|
162
191
|
tools: zod_1.z.array(n8n_workflow_1.INodeSchema),
|
|
163
192
|
attachments: zod_1.z.array(exports.chatAttachmentSchema),
|
|
164
|
-
agentName: zod_1.z.string(),
|
|
193
|
+
agentName: zod_1.z.string().optional(),
|
|
194
|
+
timeZone: exports.TimeZoneSchema,
|
|
165
195
|
}) {
|
|
166
196
|
}
|
|
167
197
|
exports.ChatHubSendMessageRequest = ChatHubSendMessageRequest;
|
|
@@ -171,6 +201,7 @@ class ChatHubRegenerateMessageRequest extends zod_class_1.Z.class({
|
|
|
171
201
|
id: zod_1.z.string(),
|
|
172
202
|
name: zod_1.z.string(),
|
|
173
203
|
})),
|
|
204
|
+
timeZone: exports.TimeZoneSchema,
|
|
174
205
|
}) {
|
|
175
206
|
}
|
|
176
207
|
exports.ChatHubRegenerateMessageRequest = ChatHubRegenerateMessageRequest;
|
|
@@ -182,6 +213,7 @@ class ChatHubEditMessageRequest extends zod_class_1.Z.class({
|
|
|
182
213
|
id: zod_1.z.string(),
|
|
183
214
|
name: zod_1.z.string(),
|
|
184
215
|
})),
|
|
216
|
+
timeZone: exports.TimeZoneSchema,
|
|
185
217
|
}) {
|
|
186
218
|
}
|
|
187
219
|
exports.ChatHubEditMessageRequest = ChatHubEditMessageRequest;
|
|
@@ -207,6 +239,7 @@ exports.ChatHubConversationsRequest = ChatHubConversationsRequest;
|
|
|
207
239
|
class ChatHubCreateAgentRequest extends zod_class_1.Z.class({
|
|
208
240
|
name: zod_1.z.string().min(1).max(128),
|
|
209
241
|
description: zod_1.z.string().max(512).optional(),
|
|
242
|
+
icon: exports.agentIconOrEmojiSchema,
|
|
210
243
|
systemPrompt: zod_1.z.string().min(1),
|
|
211
244
|
credentialId: zod_1.z.string(),
|
|
212
245
|
provider: exports.chatHubLLMProviderSchema,
|
|
@@ -218,9 +251,10 @@ exports.ChatHubCreateAgentRequest = ChatHubCreateAgentRequest;
|
|
|
218
251
|
class ChatHubUpdateAgentRequest extends zod_class_1.Z.class({
|
|
219
252
|
name: zod_1.z.string().min(1).max(128).optional(),
|
|
220
253
|
description: zod_1.z.string().max(512).optional(),
|
|
254
|
+
icon: exports.agentIconOrEmojiSchema.optional(),
|
|
221
255
|
systemPrompt: zod_1.z.string().min(1).optional(),
|
|
222
256
|
credentialId: zod_1.z.string().optional(),
|
|
223
|
-
provider: exports.
|
|
257
|
+
provider: exports.chatHubLLMProviderSchema.optional(),
|
|
224
258
|
model: zod_1.z.string().max(64).optional(),
|
|
225
259
|
tools: zod_1.z.array(n8n_workflow_1.INodeSchema).optional(),
|
|
226
260
|
}) {
|
package/dist/chat-hub.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat-hub.js","sourceRoot":"","sources":["../src/chat-hub.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"chat-hub.js","sourceRoot":"","sources":["../src/chat-hub.ts"],"names":[],"mappings":";;;AACA,+CAMsB;AACtB,6BAAwB;AACxB,yCAA8B;AAKjB,QAAA,wBAAwB,GAAG,OAAC,CAAC,IAAI,CAAC;IAC9C,QAAQ;IACR,WAAW;IACX,QAAQ;IACR,aAAa;IACb,cAAc;IACd,QAAQ;IACR,YAAY;IACZ,iBAAiB;IACjB,SAAS;IACT,MAAM;IACN,YAAY;IACZ,UAAU;IACV,QAAQ;IACR,cAAc;CACd,CAAC,CAAC;AAMU,QAAA,sBAAsB,GAAG,OAAC,CAAC,kBAAkB,CAAC,MAAM,EAAE;IAClE,OAAC,CAAC,MAAM,CAAC;QACR,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,MAAM,CAAC;QACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;KACjB,CAAC;IACF,OAAC,CAAC,MAAM,CAAC;QACR,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,OAAO,CAAC;QACxB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;KACjB,CAAC;CACF,CAAC,CAAC;AAGU,QAAA,qBAAqB,GAAG,OAAC,CAAC,IAAI,CAAC;IAC3C,GAAG,gCAAwB,CAAC,OAAO;IACnC,KAAK;IACL,cAAc;CACL,CAAC,CAAC;AAOC,QAAA,4BAA4B,GAGrC;IACH,MAAM,EAAE,WAAW;IACnB,SAAS,EAAE,cAAc;IACzB,MAAM,EAAE,eAAe;IACvB,MAAM,EAAE,WAAW;IACnB,WAAW,EAAE,gBAAgB;IAC7B,YAAY,EAAE,sCAAsC;IACpD,UAAU,EAAE,KAAK;IACjB,eAAe,EAAE,oBAAoB;IACrC,OAAO,EAAE,QAAQ;IACjB,IAAI,EAAE,SAAS;IACf,UAAU,EAAE,eAAe;IAC3B,QAAQ,EAAE,aAAa;IACvB,MAAM,EAAE,WAAW;IACnB,YAAY,EAAE,iBAAiB;CAC/B,CAAC;AAOF,MAAM,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IAClC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,WAAW,CAAC;IAChC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IAClC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,aAAa,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IACnC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IAClC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,YAAY,CAAC;IACjC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,iBAAiB,CAAC;IACtC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,kBAAkB,GAAG,OAAC,CAAC,MAAM,CAAC;IACnC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,SAAS,CAAC;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IAChC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,MAAM,CAAC;IAC3B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,YAAY,CAAC;IACjC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,UAAU,CAAC;IAC/B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IAClC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IACnC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/B,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,KAAK,CAAC;IAC1B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,MAAM,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IAChC,QAAQ,EAAE,OAAC,CAAC,OAAO,CAAC,cAAc,CAAC;IACnC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC;AAEU,QAAA,8BAA8B,GAAG,OAAC,CAAC,kBAAkB,CAAC,UAAU,EAAE;IAC9E,iBAAiB;IACjB,oBAAoB;IACpB,iBAAiB;IACjB,sBAAsB;IACtB,uBAAuB;IACvB,iBAAiB;IACjB,qBAAqB;IACrB,qBAAqB;IACrB,kBAAkB;IAClB,eAAe;IACf,qBAAqB;IACrB,mBAAmB;IACnB,iBAAiB;IACjB,uBAAuB;IACvB,cAAc;IACd,eAAe;CACf,CAAC,CAAC;AAwCU,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,WAAW,EAAE,OAAC,CAAC,MAAM,CAAC,6BAAqB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC;CACnE,CAAC,CAAC;AAoCU,QAAA,uBAAuB,GAAuB;IAC1D,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACtB,SAAS,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACzB,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACtB,WAAW,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAC3B,YAAY,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAC5B,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACtB,UAAU,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAC1B,eAAe,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAC/B,OAAO,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACvB,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACpB,UAAU,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAC1B,QAAQ,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACxB,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACtB,YAAY,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAC5B,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IAEnB,cAAc,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;CAC9B,CAAC;AAOW,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAC;AAEI,MAAM,eAAe,GAAG,CAAC,EAAU,EAAW,EAAE;IACtD,IAAI,CAAC;QAEJ,IAAI,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC,CAAC;QACnD,OAAO,IAAI,CAAC;IACb,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,KAAK,CAAC;IACd,CAAC;AACF,CAAC,CAAC;AARW,QAAA,eAAe,mBAQ1B;AAEW,QAAA,oBAAoB,GAAG,OAAC;KACnC,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,CAAC;KACN,GAAG,CAAC,EAAE,CAAC;KACP,KAAK,CAAC,oBAAoB,CAAC;KAC3B,MAAM,CAAC,uBAAe,EAAE;IACxB,OAAO,EAAE,8BAA8B;CACvC,CAAC,CAAC;AAES,QAAA,cAAc,GAAG,4BAAoB,CAAC,QAAQ,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;AAI/E,MAAa,yBAA0B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACtD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC5B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC5B,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,KAAK,EAAE,sCAA8B;IACrC,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,WAAW,EAAE,OAAC,CAAC,MAAM,CACpB,OAAC,CAAC,MAAM,CAAC;QACR,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;QACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;KAChB,CAAC,CACF;IACD,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,0BAAW,CAAC;IAC3B,WAAW,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAoB,CAAC;IAC1C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,sBAAc;CACxB,CAAC;CAAG;AAhBL,8DAgBK;AAEL,MAAa,+BAAgC,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC5D,KAAK,EAAE,sCAA8B;IACrC,WAAW,EAAE,OAAC,CAAC,MAAM,CACpB,OAAC,CAAC,MAAM,CAAC;QACR,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;QACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;KAChB,CAAC,CACF;IACD,QAAQ,EAAE,sBAAc;CACxB,CAAC;CAAG;AATL,0EASK;AAEL,MAAa,yBAA0B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACtD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC5B,KAAK,EAAE,sCAA8B;IACrC,WAAW,EAAE,OAAC,CAAC,MAAM,CACpB,OAAC,CAAC,MAAM,CAAC;QACR,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;QACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;KAChB,CAAC,CACF;IACD,QAAQ,EAAE,sBAAc;CACxB,CAAC;CAAG;AAXL,8DAWK;AAEL,MAAa,gCAAiC,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC7D,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC3C,KAAK,EAAE,OAAC;SACN,MAAM,CAAC;QACP,KAAK,EAAE,sCAA8B;QACrC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;KAChB,CAAC;SACD,QAAQ,EAAE;IACZ,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,0BAAW,CAAC,CAAC,QAAQ,EAAE;CACtC,CAAC;CAAG;AAVL,4EAUK;AA+CL,MAAa,2BAA4B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACxD,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAC9C,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACpC,CAAC;CAAG;AAHL,kEAGK;AAgCL,MAAa,yBAA0B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACtD,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAChC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IAC3C,IAAI,EAAE,8BAAsB;IAC5B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,QAAQ,EAAE,gCAAwB;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;IACzB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,0BAAW,CAAC;CAC3B,CAAC;CAAG;AATL,8DASK;AAEL,MAAa,yBAA0B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACtD,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IAC3C,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IAC3C,IAAI,EAAE,8BAAsB,CAAC,QAAQ,EAAE;IACvC,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,QAAQ,EAAE,gCAAwB,CAAC,QAAQ,EAAE;IAC7C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACpC,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,0BAAW,CAAC,CAAC,QAAQ,EAAE;CACtC,CAAC;CAAG;AATL,8DASK;AAWL,MAAM,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3C,QAAQ,EAAE,gCAAwB;IAClC,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAEnC,aAAa,EAAE,OAAC,CAAC,KAAK,CACrB,OAAC,CAAC,MAAM,CAAC;QACR,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;QACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;QACjB,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC,CACF;IACD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AAIH,MAAa,yBAA0B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACtD,OAAO,EAAE,0BAA0B;CACnC,CAAC;CAAG;AAFL,8DAEK"}
|
|
@@ -8,9 +8,11 @@ export interface ExpressionValue {
|
|
|
8
8
|
}
|
|
9
9
|
declare const AiBuilderChatRequestDto_base: Z.Class<{
|
|
10
10
|
payload: z.ZodObject<{
|
|
11
|
+
id: z.ZodString;
|
|
11
12
|
role: z.ZodLiteral<"user">;
|
|
12
13
|
type: z.ZodLiteral<"message">;
|
|
13
14
|
text: z.ZodString;
|
|
15
|
+
versionId: z.ZodOptional<z.ZodString>;
|
|
14
16
|
workflowContext: z.ZodObject<{
|
|
15
17
|
currentWorkflow: z.ZodOptional<z.ZodType<Partial<IWorkflowBase>, z.ZodTypeDef, Partial<IWorkflowBase>>>;
|
|
16
18
|
executionData: z.ZodOptional<z.ZodType<{
|
|
@@ -53,15 +55,19 @@ declare const AiBuilderChatRequestDto_base: Z.Class<{
|
|
|
53
55
|
}>;
|
|
54
56
|
featureFlags: z.ZodOptional<z.ZodObject<{
|
|
55
57
|
templateExamples: z.ZodOptional<z.ZodBoolean>;
|
|
58
|
+
multiAgent: z.ZodOptional<z.ZodBoolean>;
|
|
56
59
|
}, "strip", z.ZodTypeAny, {
|
|
57
60
|
templateExamples?: boolean | undefined;
|
|
61
|
+
multiAgent?: boolean | undefined;
|
|
58
62
|
}, {
|
|
59
63
|
templateExamples?: boolean | undefined;
|
|
64
|
+
multiAgent?: boolean | undefined;
|
|
60
65
|
}>>;
|
|
61
66
|
}, "strip", z.ZodTypeAny, {
|
|
62
67
|
type: "message";
|
|
63
68
|
text: string;
|
|
64
69
|
role: "user";
|
|
70
|
+
id: string;
|
|
65
71
|
workflowContext: {
|
|
66
72
|
currentWorkflow?: Partial<IWorkflowBase> | undefined;
|
|
67
73
|
executionData?: {
|
|
@@ -74,13 +80,16 @@ declare const AiBuilderChatRequestDto_base: Z.Class<{
|
|
|
74
80
|
executionSchema?: NodeExecutionSchema[] | undefined;
|
|
75
81
|
expressionValues?: Record<string, ExpressionValue[]> | undefined;
|
|
76
82
|
};
|
|
83
|
+
versionId?: string | undefined;
|
|
77
84
|
featureFlags?: {
|
|
78
85
|
templateExamples?: boolean | undefined;
|
|
86
|
+
multiAgent?: boolean | undefined;
|
|
79
87
|
} | undefined;
|
|
80
88
|
}, {
|
|
81
89
|
type: "message";
|
|
82
90
|
text: string;
|
|
83
91
|
role: "user";
|
|
92
|
+
id: string;
|
|
84
93
|
workflowContext: {
|
|
85
94
|
currentWorkflow?: Partial<IWorkflowBase> | undefined;
|
|
86
95
|
executionData?: {
|
|
@@ -93,8 +102,10 @@ declare const AiBuilderChatRequestDto_base: Z.Class<{
|
|
|
93
102
|
executionSchema?: NodeExecutionSchema[] | undefined;
|
|
94
103
|
expressionValues?: Record<string, ExpressionValue[]> | undefined;
|
|
95
104
|
};
|
|
105
|
+
versionId?: string | undefined;
|
|
96
106
|
featureFlags?: {
|
|
97
107
|
templateExamples?: boolean | undefined;
|
|
108
|
+
multiAgent?: boolean | undefined;
|
|
98
109
|
} | undefined;
|
|
99
110
|
}>;
|
|
100
111
|
}>;
|
|
@@ -5,9 +5,11 @@ const zod_1 = require("zod");
|
|
|
5
5
|
const zod_class_1 = require("zod-class");
|
|
6
6
|
class AiBuilderChatRequestDto extends zod_class_1.Z.class({
|
|
7
7
|
payload: zod_1.z.object({
|
|
8
|
+
id: zod_1.z.string(),
|
|
8
9
|
role: zod_1.z.literal('user'),
|
|
9
10
|
type: zod_1.z.literal('message'),
|
|
10
11
|
text: zod_1.z.string(),
|
|
12
|
+
versionId: zod_1.z.string().optional(),
|
|
11
13
|
workflowContext: zod_1.z.object({
|
|
12
14
|
currentWorkflow: zod_1.z
|
|
13
15
|
.custom((val) => {
|
|
@@ -46,6 +48,7 @@ class AiBuilderChatRequestDto extends zod_class_1.Z.class({
|
|
|
46
48
|
featureFlags: zod_1.z
|
|
47
49
|
.object({
|
|
48
50
|
templateExamples: zod_1.z.boolean().optional(),
|
|
51
|
+
multiAgent: zod_1.z.boolean().optional(),
|
|
49
52
|
})
|
|
50
53
|
.optional(),
|
|
51
54
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-build-request.dto.js","sourceRoot":"","sources":["../../../src/dto/ai/ai-build-request.dto.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AACxB,yCAA8B;AAQ9B,MAAa,uBAAwB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACpD,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QACjB,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,MAAM,CAAC;QACvB,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,SAAS,CAAC;QAC1B,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,eAAe,EAAE,OAAC,CAAC,MAAM,CAAC;YACzB,eAAe,EAAE,OAAC;iBAChB,MAAM,CAAyB,CAAC,GAA2B,EAAE,EAAE;gBAC/D,IAAI,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC;oBACpC,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;YAEZ,aAAa,EAAE,OAAC;iBACd,MAAM,CAAkC,CAAC,GAAoC,EAAE,EAAE;gBACjF,IAAI,CAAC,GAAG,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC;oBAChC,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;YAEZ,eAAe,EAAE,OAAC;iBAChB,MAAM,CAAwB,CAAC,GAA0B,EAAE,EAAE;gBAE7D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;oBAChF,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;YAEZ,gBAAgB,EAAE,OAAC;iBACjB,MAAM,CAAoC,CAAC,GAAsC,EAAE,EAAE;gBACrF,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gBAE9B,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC;oBAClF,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;SACZ,CAAC;QACF,YAAY,EAAE,OAAC;aACb,MAAM,CAAC;YACP,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"ai-build-request.dto.js","sourceRoot":"","sources":["../../../src/dto/ai/ai-build-request.dto.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AACxB,yCAA8B;AAQ9B,MAAa,uBAAwB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACpD,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QACjB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;QACd,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,MAAM,CAAC;QACvB,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,SAAS,CAAC;QAC1B,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,eAAe,EAAE,OAAC,CAAC,MAAM,CAAC;YACzB,eAAe,EAAE,OAAC;iBAChB,MAAM,CAAyB,CAAC,GAA2B,EAAE,EAAE;gBAC/D,IAAI,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC;oBACpC,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;YAEZ,aAAa,EAAE,OAAC;iBACd,MAAM,CAAkC,CAAC,GAAoC,EAAE,EAAE;gBACjF,IAAI,CAAC,GAAG,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC;oBAChC,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;YAEZ,eAAe,EAAE,OAAC;iBAChB,MAAM,CAAwB,CAAC,GAA0B,EAAE,EAAE;gBAE7D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,QAAQ,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;oBAChF,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;YAEZ,gBAAgB,EAAE,OAAC;iBACjB,MAAM,CAAoC,CAAC,GAAsC,EAAE,EAAE;gBACrF,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gBAE9B,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC;oBAClF,OAAO,KAAK,CAAC;gBACd,CAAC;gBAED,OAAO,GAAG,CAAC;YACZ,CAAC,CAAC;iBACD,QAAQ,EAAE;SACZ,CAAC;QACF,YAAY,EAAE,OAAC;aACb,MAAM,CAAC;YACP,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;YACxC,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;SAClC,CAAC;aACD,QAAQ,EAAE;KACZ,CAAC;CACF,CAAC;CAAG;AA1DL,0DA0DK"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { Z } from 'zod-class';
|
|
3
|
+
declare const AiTruncateMessagesRequestDto_base: Z.Class<{
|
|
4
|
+
workflowId: z.ZodString;
|
|
5
|
+
messageId: z.ZodString;
|
|
6
|
+
}>;
|
|
7
|
+
export declare class AiTruncateMessagesRequestDto extends AiTruncateMessagesRequestDto_base {
|
|
8
|
+
}
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AiTruncateMessagesRequestDto = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const zod_class_1 = require("zod-class");
|
|
6
|
+
class AiTruncateMessagesRequestDto extends zod_class_1.Z.class({
|
|
7
|
+
workflowId: zod_1.z.string(),
|
|
8
|
+
messageId: zod_1.z.string(),
|
|
9
|
+
}) {
|
|
10
|
+
}
|
|
11
|
+
exports.AiTruncateMessagesRequestDto = AiTruncateMessagesRequestDto;
|
|
12
|
+
//# sourceMappingURL=ai-truncate-messages-request.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ai-truncate-messages-request.dto.js","sourceRoot":"","sources":["../../../src/dto/ai/ai-truncate-messages-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,yCAA8B;AAE9B,MAAa,4BAA6B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACzD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC;CAAG;AAHL,oEAGK"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Z } from 'zod-class';
|
|
2
|
+
declare const CreateCredentialResolverDto_base: Z.Class<{
|
|
3
|
+
name: import("zod").ZodString;
|
|
4
|
+
type: import("zod").ZodString;
|
|
5
|
+
config: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>;
|
|
6
|
+
}>;
|
|
7
|
+
export declare class CreateCredentialResolverDto extends CreateCredentialResolverDto_base {
|
|
8
|
+
}
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateCredentialResolverDto = void 0;
|
|
4
|
+
const zod_class_1 = require("zod-class");
|
|
5
|
+
const credential_resolver_schema_1 = require("../../schemas/credential-resolver.schema");
|
|
6
|
+
class CreateCredentialResolverDto extends zod_class_1.Z.class({
|
|
7
|
+
name: credential_resolver_schema_1.credentialResolverNameSchema,
|
|
8
|
+
type: credential_resolver_schema_1.credentialResolverTypeNameSchema,
|
|
9
|
+
config: credential_resolver_schema_1.credentialResolverConfigSchema,
|
|
10
|
+
}) {
|
|
11
|
+
}
|
|
12
|
+
exports.CreateCredentialResolverDto = CreateCredentialResolverDto;
|
|
13
|
+
//# sourceMappingURL=create-credential-resolver.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-credential-resolver.dto.js","sourceRoot":"","sources":["../../../src/dto/credential-resolver/create-credential-resolver.dto.ts"],"names":[],"mappings":";;;AAAA,yCAA8B;AAE9B,yFAIkD;AAElD,MAAa,2BAA4B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACxD,IAAI,EAAE,yDAA4B;IAClC,IAAI,EAAE,6DAAgC;IACtC,MAAM,EAAE,2DAA8B;CACtC,CAAC;CAAG;AAJL,kEAIK"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Z } from 'zod-class';
|
|
2
|
+
declare const UpdateCredentialResolverDto_base: Z.Class<{
|
|
3
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5
|
+
config: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6
|
+
}>;
|
|
7
|
+
export declare class UpdateCredentialResolverDto extends UpdateCredentialResolverDto_base {
|
|
8
|
+
}
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateCredentialResolverDto = void 0;
|
|
4
|
+
const zod_class_1 = require("zod-class");
|
|
5
|
+
const credential_resolver_schema_1 = require("../../schemas/credential-resolver.schema");
|
|
6
|
+
class UpdateCredentialResolverDto extends zod_class_1.Z.class({
|
|
7
|
+
type: credential_resolver_schema_1.credentialResolverTypeNameSchema.optional(),
|
|
8
|
+
name: credential_resolver_schema_1.credentialResolverNameSchema.optional(),
|
|
9
|
+
config: credential_resolver_schema_1.credentialResolverConfigSchema.optional(),
|
|
10
|
+
}) {
|
|
11
|
+
}
|
|
12
|
+
exports.UpdateCredentialResolverDto = UpdateCredentialResolverDto;
|
|
13
|
+
//# sourceMappingURL=update-credential-resolver.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-credential-resolver.dto.js","sourceRoot":"","sources":["../../../src/dto/credential-resolver/update-credential-resolver.dto.ts"],"names":[],"mappings":";;;AAAA,yCAA8B;AAE9B,yFAIkD;AAElD,MAAa,2BAA4B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACxD,IAAI,EAAE,6DAAgC,CAAC,QAAQ,EAAE;IACjD,IAAI,EAAE,yDAA4B,CAAC,QAAQ,EAAE;IAC7C,MAAM,EAAE,2DAA8B,CAAC,QAAQ,EAAE;CACjD,CAAC;CAAG;AAJL,kEAIK"}
|
|
@@ -7,6 +7,7 @@ declare const CreateCredentialDto_base: Z.Class<{
|
|
|
7
7
|
projectId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
uiContext: z.ZodOptional<z.ZodString>;
|
|
9
9
|
isGlobal: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
+
isResolvable: z.ZodOptional<z.ZodBoolean>;
|
|
10
11
|
}>;
|
|
11
12
|
export declare class CreateCredentialDto extends CreateCredentialDto_base {
|
|
12
13
|
}
|
|
@@ -10,6 +10,7 @@ class CreateCredentialDto extends zod_class_1.Z.class({
|
|
|
10
10
|
projectId: zod_1.z.string().optional(),
|
|
11
11
|
uiContext: zod_1.z.string().optional(),
|
|
12
12
|
isGlobal: zod_1.z.boolean().optional(),
|
|
13
|
+
isResolvable: zod_1.z.boolean().optional(),
|
|
13
14
|
}) {
|
|
14
15
|
}
|
|
15
16
|
exports.CreateCredentialDto = CreateCredentialDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-credential.dto.js","sourceRoot":"","sources":["../../../src/dto/credentials/create-credential.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,yCAA8B;AAE9B,MAAa,mBAAoB,SAAQ,aAAC,CAAC,KAAK,CAAC;IAChD,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAChC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAChC,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC;IACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"create-credential.dto.js","sourceRoot":"","sources":["../../../src/dto/credentials/create-credential.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,yCAA8B;AAE9B,MAAa,mBAAoB,SAAQ,aAAC,CAAC,KAAK,CAAC;IAChD,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAChC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAChC,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC;IACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,YAAY,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACpC,CAAC;CAAG;AARL,kDAQK"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RenameDataTableColumnDto = void 0;
|
|
4
|
+
const zod_class_1 = require("zod-class");
|
|
5
|
+
const data_table_schema_1 = require("../../schemas/data-table.schema");
|
|
6
|
+
class RenameDataTableColumnDto extends zod_class_1.Z.class({
|
|
7
|
+
name: data_table_schema_1.dataTableColumnNameSchema,
|
|
8
|
+
}) {
|
|
9
|
+
}
|
|
10
|
+
exports.RenameDataTableColumnDto = RenameDataTableColumnDto;
|
|
11
|
+
//# sourceMappingURL=rename-data-table-column.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rename-data-table-column.dto.js","sourceRoot":"","sources":["../../../src/dto/data-table/rename-data-table-column.dto.ts"],"names":[],"mappings":";;;AAAA,yCAA8B;AAE9B,uEAA4E;AAE5E,MAAa,wBAAyB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACrD,IAAI,EAAE,6CAAyB;CAC/B,CAAC;CAAG;AAFL,4DAEK"}
|
package/dist/dto/index.d.ts
CHANGED
|
@@ -5,10 +5,13 @@ export { AiApplySuggestionRequestDto } from './ai/ai-apply-suggestion-request.dt
|
|
|
5
5
|
export { AiFreeCreditsRequestDto } from './ai/ai-free-credits-request.dto';
|
|
6
6
|
export { AiSessionRetrievalRequestDto } from './ai/ai-session-retrieval-request.dto';
|
|
7
7
|
export { AiSessionMetadataResponseDto } from './ai/ai-session-metadata-response.dto';
|
|
8
|
+
export { AiTruncateMessagesRequestDto } from './ai/ai-truncate-messages-request.dto';
|
|
8
9
|
export { BinaryDataQueryDto } from './binary-data/binary-data-query.dto';
|
|
9
10
|
export { BinaryDataSignedQueryDto } from './binary-data/binary-data-signed-query.dto';
|
|
10
11
|
export { LoginRequestDto } from './auth/login-request.dto';
|
|
11
12
|
export { ResolveSignupTokenQueryDto } from './auth/resolve-signup-token-query.dto';
|
|
13
|
+
export { CreateCredentialResolverDto } from './credential-resolver/create-credential-resolver.dto';
|
|
14
|
+
export { UpdateCredentialResolverDto } from './credential-resolver/update-credential-resolver.dto';
|
|
12
15
|
export { OptionsRequestDto } from './dynamic-node-parameters/options-request.dto';
|
|
13
16
|
export { ResourceLocatorRequestDto } from './dynamic-node-parameters/resource-locator-request.dto';
|
|
14
17
|
export { ResourceMapperFieldsRequestDto } from './dynamic-node-parameters/resource-mapper-fields-request.dto';
|
|
@@ -75,5 +78,7 @@ export { CreateDataTableColumnDto } from './data-table/create-data-table-column.
|
|
|
75
78
|
export { AddDataTableRowsDto } from './data-table/add-data-table-rows.dto';
|
|
76
79
|
export { AddDataTableColumnDto } from './data-table/add-data-table-column.dto';
|
|
77
80
|
export { MoveDataTableColumnDto } from './data-table/move-data-table-column.dto';
|
|
81
|
+
export { RenameDataTableColumnDto } from './data-table/rename-data-table-column.dto';
|
|
78
82
|
export { OAuthClientResponseDto, ListOAuthClientsResponseDto, DeleteOAuthClientResponseDto, } from './oauth/oauth-client.dto';
|
|
79
83
|
export { ProvisioningConfigDto, ProvisioningConfigPatchDto } from './provisioning/config.dto';
|
|
84
|
+
export { WorkflowHistoryVersionsByIdsDto } from './workflow-history/workflow-history-versions-by-ids.dto';
|
package/dist/dto/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.ProvisioningConfigPatchDto = exports.ProvisioningConfigDto = exports.DeleteOAuthClientResponseDto = exports.ListOAuthClientsResponseDto = exports.OAuthClientResponseDto = exports.MoveDataTableColumnDto = exports.AddDataTableColumnDto = exports.AddDataTableRowsDto = exports.CreateDataTableColumnDto = exports.ListDataTableContentQueryDto = exports.ListDataTableQueryDto = exports.UpsertDataTableRowDto = exports.DeleteDataTableRowsDto = exports.UpdateDataTableRowDto = exports.UpdateDataTableDto = exports.CreateDataTableDto = exports.OidcConfigDto = exports.RoleGetQueryDto = exports.RoleListQueryDto = exports.CreateRoleDto = exports.UpdateRoleDto = exports.USERS_LIST_SORT_OPTIONS = exports.UsersListFilterDto = exports.PaginationDto = exports.InsightsDateFilterDto = exports.ListInsightsWorkflowQueryDto = exports.TransferFolderBodyDto = exports.ListFolderQueryDto = exports.DeleteFolderDto = exports.UpdateFolderDto = exports.CreateFolderDto = exports.CreateApiKeyRequestDto = exports.UpdateApiKeyRequestDto = exports.RetrieveTagQueryDto = void 0;
|
|
3
|
+
exports.ImportWorkflowFromUrlDto = exports.GenerateCredentialNameRequestQuery = exports.CredentialsGetManyRequestQuery = exports.CredentialsGetOneRequestQuery = exports.UpdateVariableRequestDto = exports.CreateVariableRequestDto = exports.VariableListRequestDto = exports.CreateCredentialDto = exports.PushWorkFolderRequestDto = exports.PullWorkFolderRequestDto = exports.CommunityRegisteredRequestDto = exports.UserUpdateRequestDto = exports.SettingsUpdateRequestDto = exports.RoleChangeRequestDto = exports.PasswordUpdateRequestDto = exports.SamlToggleDto = exports.SamlPreferencesAttributeMapping = exports.SamlPreferences = exports.SamlAcsDto = exports.ChangeUserRoleInProject = exports.AddUsersToProjectDto = exports.DeleteProjectDto = exports.UpdateProjectWithRelationsDto = exports.UpdateProjectDto = exports.CreateProjectDto = exports.ChangePasswordRequestDto = exports.ResolvePasswordTokenQueryDto = exports.ForgotPasswordRequestDto = exports.DismissBannerRequestDto = exports.OwnerSetupRequestDto = exports.AcceptInvitationRequestDto = exports.InviteUsersRequestDto = exports.ActionResultRequestDto = exports.ResourceMapperFieldsRequestDto = exports.ResourceLocatorRequestDto = exports.OptionsRequestDto = exports.UpdateCredentialResolverDto = exports.CreateCredentialResolverDto = exports.ResolveSignupTokenQueryDto = exports.LoginRequestDto = exports.BinaryDataSignedQueryDto = exports.BinaryDataQueryDto = exports.AiTruncateMessagesRequestDto = exports.AiSessionMetadataResponseDto = exports.AiSessionRetrievalRequestDto = exports.AiFreeCreditsRequestDto = exports.AiApplySuggestionRequestDto = exports.AiBuilderChatRequestDto = exports.AiChatRequestDto = exports.AiAskRequestDto = void 0;
|
|
4
|
+
exports.WorkflowHistoryVersionsByIdsDto = exports.ProvisioningConfigPatchDto = exports.ProvisioningConfigDto = exports.DeleteOAuthClientResponseDto = exports.ListOAuthClientsResponseDto = exports.OAuthClientResponseDto = exports.RenameDataTableColumnDto = exports.MoveDataTableColumnDto = exports.AddDataTableColumnDto = exports.AddDataTableRowsDto = exports.CreateDataTableColumnDto = exports.ListDataTableContentQueryDto = exports.ListDataTableQueryDto = exports.UpsertDataTableRowDto = exports.DeleteDataTableRowsDto = exports.UpdateDataTableRowDto = exports.UpdateDataTableDto = exports.CreateDataTableDto = exports.OidcConfigDto = exports.RoleGetQueryDto = exports.RoleListQueryDto = exports.CreateRoleDto = exports.UpdateRoleDto = exports.USERS_LIST_SORT_OPTIONS = exports.UsersListFilterDto = exports.PaginationDto = exports.InsightsDateFilterDto = exports.ListInsightsWorkflowQueryDto = exports.TransferFolderBodyDto = exports.ListFolderQueryDto = exports.DeleteFolderDto = exports.UpdateFolderDto = exports.CreateFolderDto = exports.CreateApiKeyRequestDto = exports.UpdateApiKeyRequestDto = exports.RetrieveTagQueryDto = exports.CreateOrUpdateTagRequestDto = exports.ActivateWorkflowDto = exports.TransferWorkflowBodyDto = void 0;
|
|
5
5
|
var ai_ask_request_dto_1 = require("./ai/ai-ask-request.dto");
|
|
6
6
|
Object.defineProperty(exports, "AiAskRequestDto", { enumerable: true, get: function () { return ai_ask_request_dto_1.AiAskRequestDto; } });
|
|
7
7
|
var ai_chat_request_dto_1 = require("./ai/ai-chat-request.dto");
|
|
@@ -16,6 +16,8 @@ var ai_session_retrieval_request_dto_1 = require("./ai/ai-session-retrieval-requ
|
|
|
16
16
|
Object.defineProperty(exports, "AiSessionRetrievalRequestDto", { enumerable: true, get: function () { return ai_session_retrieval_request_dto_1.AiSessionRetrievalRequestDto; } });
|
|
17
17
|
var ai_session_metadata_response_dto_1 = require("./ai/ai-session-metadata-response.dto");
|
|
18
18
|
Object.defineProperty(exports, "AiSessionMetadataResponseDto", { enumerable: true, get: function () { return ai_session_metadata_response_dto_1.AiSessionMetadataResponseDto; } });
|
|
19
|
+
var ai_truncate_messages_request_dto_1 = require("./ai/ai-truncate-messages-request.dto");
|
|
20
|
+
Object.defineProperty(exports, "AiTruncateMessagesRequestDto", { enumerable: true, get: function () { return ai_truncate_messages_request_dto_1.AiTruncateMessagesRequestDto; } });
|
|
19
21
|
var binary_data_query_dto_1 = require("./binary-data/binary-data-query.dto");
|
|
20
22
|
Object.defineProperty(exports, "BinaryDataQueryDto", { enumerable: true, get: function () { return binary_data_query_dto_1.BinaryDataQueryDto; } });
|
|
21
23
|
var binary_data_signed_query_dto_1 = require("./binary-data/binary-data-signed-query.dto");
|
|
@@ -24,6 +26,10 @@ var login_request_dto_1 = require("./auth/login-request.dto");
|
|
|
24
26
|
Object.defineProperty(exports, "LoginRequestDto", { enumerable: true, get: function () { return login_request_dto_1.LoginRequestDto; } });
|
|
25
27
|
var resolve_signup_token_query_dto_1 = require("./auth/resolve-signup-token-query.dto");
|
|
26
28
|
Object.defineProperty(exports, "ResolveSignupTokenQueryDto", { enumerable: true, get: function () { return resolve_signup_token_query_dto_1.ResolveSignupTokenQueryDto; } });
|
|
29
|
+
var create_credential_resolver_dto_1 = require("./credential-resolver/create-credential-resolver.dto");
|
|
30
|
+
Object.defineProperty(exports, "CreateCredentialResolverDto", { enumerable: true, get: function () { return create_credential_resolver_dto_1.CreateCredentialResolverDto; } });
|
|
31
|
+
var update_credential_resolver_dto_1 = require("./credential-resolver/update-credential-resolver.dto");
|
|
32
|
+
Object.defineProperty(exports, "UpdateCredentialResolverDto", { enumerable: true, get: function () { return update_credential_resolver_dto_1.UpdateCredentialResolverDto; } });
|
|
27
33
|
var options_request_dto_1 = require("./dynamic-node-parameters/options-request.dto");
|
|
28
34
|
Object.defineProperty(exports, "OptionsRequestDto", { enumerable: true, get: function () { return options_request_dto_1.OptionsRequestDto; } });
|
|
29
35
|
var resource_locator_request_dto_1 = require("./dynamic-node-parameters/resource-locator-request.dto");
|
|
@@ -158,6 +164,8 @@ var add_data_table_column_dto_1 = require("./data-table/add-data-table-column.dt
|
|
|
158
164
|
Object.defineProperty(exports, "AddDataTableColumnDto", { enumerable: true, get: function () { return add_data_table_column_dto_1.AddDataTableColumnDto; } });
|
|
159
165
|
var move_data_table_column_dto_1 = require("./data-table/move-data-table-column.dto");
|
|
160
166
|
Object.defineProperty(exports, "MoveDataTableColumnDto", { enumerable: true, get: function () { return move_data_table_column_dto_1.MoveDataTableColumnDto; } });
|
|
167
|
+
var rename_data_table_column_dto_1 = require("./data-table/rename-data-table-column.dto");
|
|
168
|
+
Object.defineProperty(exports, "RenameDataTableColumnDto", { enumerable: true, get: function () { return rename_data_table_column_dto_1.RenameDataTableColumnDto; } });
|
|
161
169
|
var oauth_client_dto_1 = require("./oauth/oauth-client.dto");
|
|
162
170
|
Object.defineProperty(exports, "OAuthClientResponseDto", { enumerable: true, get: function () { return oauth_client_dto_1.OAuthClientResponseDto; } });
|
|
163
171
|
Object.defineProperty(exports, "ListOAuthClientsResponseDto", { enumerable: true, get: function () { return oauth_client_dto_1.ListOAuthClientsResponseDto; } });
|
|
@@ -165,4 +173,6 @@ Object.defineProperty(exports, "DeleteOAuthClientResponseDto", { enumerable: tru
|
|
|
165
173
|
var config_dto_2 = require("./provisioning/config.dto");
|
|
166
174
|
Object.defineProperty(exports, "ProvisioningConfigDto", { enumerable: true, get: function () { return config_dto_2.ProvisioningConfigDto; } });
|
|
167
175
|
Object.defineProperty(exports, "ProvisioningConfigPatchDto", { enumerable: true, get: function () { return config_dto_2.ProvisioningConfigPatchDto; } });
|
|
176
|
+
var workflow_history_versions_by_ids_dto_1 = require("./workflow-history/workflow-history-versions-by-ids.dto");
|
|
177
|
+
Object.defineProperty(exports, "WorkflowHistoryVersionsByIdsDto", { enumerable: true, get: function () { return workflow_history_versions_by_ids_dto_1.WorkflowHistoryVersionsByIdsDto; } });
|
|
168
178
|
//# sourceMappingURL=index.js.map
|