@little-samo/samo-ai-sdk 0.1.4-rv1 → 0.1.4-rv2
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/dto/entities/agents/agent.requests.d.ts +36 -24
- package/dist/dto/entities/agents/agent.requests.js +4 -1
- package/dist/dto/entities/agents/agent.requests.js.map +1 -1
- package/dist/dto/locations/location.requests.d.ts +34 -34
- package/dist/models/locations/location.config.d.ts +16 -16
- package/dist/models/locations/location.config.js +3 -0
- package/dist/models/locations/location.config.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { LocationId } from '@little-samo/samo-ai/models';
|
|
1
2
|
import { AgentConfig } from '@little-samo/samo-ai-sdk/models';
|
|
2
3
|
import { z } from 'zod';
|
|
3
4
|
import { AgentCostDto, AgentPrivateDto, AgentPublicDto } from './agent';
|
|
@@ -58,65 +59,65 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
58
59
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59
60
|
}, "strict", z.ZodTypeAny, {
|
|
60
61
|
name?: string | undefined;
|
|
61
|
-
avatar?: string | undefined;
|
|
62
|
-
appearance?: string | undefined;
|
|
63
62
|
core?: {
|
|
64
63
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
65
64
|
} | undefined;
|
|
65
|
+
appearance?: string | undefined;
|
|
66
|
+
rules?: string[] | undefined;
|
|
67
|
+
avatar?: string | undefined;
|
|
66
68
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
67
69
|
languages?: string[] | undefined;
|
|
68
70
|
timeZone?: string | undefined;
|
|
69
71
|
greeting?: string | undefined;
|
|
70
72
|
actions?: "todo"[] | undefined;
|
|
71
73
|
character?: Record<string, Record<string, string>> | undefined;
|
|
72
|
-
rules?: string[] | undefined;
|
|
73
74
|
}, {
|
|
74
75
|
name?: string | undefined;
|
|
75
|
-
avatar?: string | undefined;
|
|
76
|
-
appearance?: string | undefined;
|
|
77
76
|
core?: {
|
|
78
77
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
79
78
|
} | undefined;
|
|
79
|
+
appearance?: string | undefined;
|
|
80
|
+
rules?: string[] | undefined;
|
|
81
|
+
avatar?: string | undefined;
|
|
80
82
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
81
83
|
languages?: string[] | undefined;
|
|
82
84
|
timeZone?: string | undefined;
|
|
83
85
|
greeting?: string | undefined;
|
|
84
86
|
actions?: "todo"[] | undefined;
|
|
85
87
|
character?: Record<string, Record<string, string>> | undefined;
|
|
86
|
-
rules?: string[] | undefined;
|
|
87
88
|
}>;
|
|
88
89
|
}, "strip", z.ZodTypeAny, {
|
|
89
90
|
config: {
|
|
90
91
|
name?: string | undefined;
|
|
91
|
-
avatar?: string | undefined;
|
|
92
|
-
appearance?: string | undefined;
|
|
93
92
|
core?: {
|
|
94
93
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
95
94
|
} | undefined;
|
|
95
|
+
appearance?: string | undefined;
|
|
96
|
+
rules?: string[] | undefined;
|
|
97
|
+
avatar?: string | undefined;
|
|
96
98
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
97
99
|
languages?: string[] | undefined;
|
|
98
100
|
timeZone?: string | undefined;
|
|
99
101
|
greeting?: string | undefined;
|
|
100
102
|
actions?: "todo"[] | undefined;
|
|
101
103
|
character?: Record<string, Record<string, string>> | undefined;
|
|
102
|
-
rules?: string[] | undefined;
|
|
103
104
|
};
|
|
104
105
|
agentId: bigint;
|
|
105
106
|
}, {
|
|
106
107
|
config: {
|
|
107
108
|
name?: string | undefined;
|
|
108
|
-
avatar?: string | undefined;
|
|
109
|
-
appearance?: string | undefined;
|
|
110
109
|
core?: {
|
|
111
110
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
112
111
|
} | undefined;
|
|
112
|
+
appearance?: string | undefined;
|
|
113
|
+
rules?: string[] | undefined;
|
|
114
|
+
avatar?: string | undefined;
|
|
113
115
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
114
116
|
languages?: string[] | undefined;
|
|
115
117
|
timeZone?: string | undefined;
|
|
116
118
|
greeting?: string | undefined;
|
|
117
119
|
actions?: "todo"[] | undefined;
|
|
118
120
|
character?: Record<string, Record<string, string>> | undefined;
|
|
119
|
-
rules?: string[] | undefined;
|
|
120
121
|
};
|
|
121
122
|
agentId: bigint;
|
|
122
123
|
}>;
|
|
@@ -233,64 +234,64 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
233
234
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
234
235
|
}, "strict", z.ZodTypeAny, {
|
|
235
236
|
name?: string | undefined;
|
|
236
|
-
avatar?: string | undefined;
|
|
237
|
-
appearance?: string | undefined;
|
|
238
237
|
core?: {
|
|
239
238
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
240
239
|
} | undefined;
|
|
240
|
+
appearance?: string | undefined;
|
|
241
|
+
rules?: string[] | undefined;
|
|
242
|
+
avatar?: string | undefined;
|
|
241
243
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
242
244
|
languages?: string[] | undefined;
|
|
243
245
|
timeZone?: string | undefined;
|
|
244
246
|
greeting?: string | undefined;
|
|
245
247
|
actions?: "todo"[] | undefined;
|
|
246
248
|
character?: Record<string, Record<string, string>> | undefined;
|
|
247
|
-
rules?: string[] | undefined;
|
|
248
249
|
}, {
|
|
249
250
|
name?: string | undefined;
|
|
250
|
-
avatar?: string | undefined;
|
|
251
|
-
appearance?: string | undefined;
|
|
252
251
|
core?: {
|
|
253
252
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
254
253
|
} | undefined;
|
|
254
|
+
appearance?: string | undefined;
|
|
255
|
+
rules?: string[] | undefined;
|
|
256
|
+
avatar?: string | undefined;
|
|
255
257
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
256
258
|
languages?: string[] | undefined;
|
|
257
259
|
timeZone?: string | undefined;
|
|
258
260
|
greeting?: string | undefined;
|
|
259
261
|
actions?: "todo"[] | undefined;
|
|
260
262
|
character?: Record<string, Record<string, string>> | undefined;
|
|
261
|
-
rules?: string[] | undefined;
|
|
262
263
|
}>;
|
|
263
264
|
}, "strip", z.ZodTypeAny, {
|
|
264
265
|
config: {
|
|
265
266
|
name?: string | undefined;
|
|
266
|
-
avatar?: string | undefined;
|
|
267
|
-
appearance?: string | undefined;
|
|
268
267
|
core?: {
|
|
269
268
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
270
269
|
} | undefined;
|
|
270
|
+
appearance?: string | undefined;
|
|
271
|
+
rules?: string[] | undefined;
|
|
272
|
+
avatar?: string | undefined;
|
|
271
273
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
272
274
|
languages?: string[] | undefined;
|
|
273
275
|
timeZone?: string | undefined;
|
|
274
276
|
greeting?: string | undefined;
|
|
275
277
|
actions?: "todo"[] | undefined;
|
|
276
278
|
character?: Record<string, Record<string, string>> | undefined;
|
|
277
|
-
rules?: string[] | undefined;
|
|
278
279
|
};
|
|
279
280
|
}, {
|
|
280
281
|
config: {
|
|
281
282
|
name?: string | undefined;
|
|
282
|
-
avatar?: string | undefined;
|
|
283
|
-
appearance?: string | undefined;
|
|
284
283
|
core?: {
|
|
285
284
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
286
285
|
} | undefined;
|
|
286
|
+
appearance?: string | undefined;
|
|
287
|
+
rules?: string[] | undefined;
|
|
288
|
+
avatar?: string | undefined;
|
|
287
289
|
llmPreset?: "gemini-low" | "gemini-medium" | "openai-low" | "openai-medium" | undefined;
|
|
288
290
|
languages?: string[] | undefined;
|
|
289
291
|
timeZone?: string | undefined;
|
|
290
292
|
greeting?: string | undefined;
|
|
291
293
|
actions?: "todo"[] | undefined;
|
|
292
294
|
character?: Record<string, Record<string, string>> | undefined;
|
|
293
|
-
rules?: string[] | undefined;
|
|
294
295
|
};
|
|
295
296
|
}>;
|
|
296
297
|
export type CreateAgentDto = z.infer<typeof CreateAgentSchema>;
|
|
@@ -321,6 +322,17 @@ export type GetHelperAgentDto = z.infer<typeof GetHelperAgentSchema>;
|
|
|
321
322
|
export interface GetHelperAgentResponseDto {
|
|
322
323
|
agent: AgentPrivateDto;
|
|
323
324
|
}
|
|
325
|
+
export declare const GetAgentLocationsParamsSchema: z.ZodObject<{
|
|
326
|
+
agentId: z.ZodBigInt;
|
|
327
|
+
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
agentId: bigint;
|
|
329
|
+
}, {
|
|
330
|
+
agentId: bigint;
|
|
331
|
+
}>;
|
|
332
|
+
export type GetAgentLocationsParamsDto = z.infer<typeof GetAgentLocationsParamsSchema>;
|
|
333
|
+
export interface GetAgentLocationsResponseDto {
|
|
334
|
+
locationIds: LocationId[];
|
|
335
|
+
}
|
|
324
336
|
export declare const GetAgentCostParamsSchema: z.ZodObject<{
|
|
325
337
|
agentId: z.ZodBigInt;
|
|
326
338
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteAgentParamsSchema = exports.UploadAgentAvatarParamsSchema = exports.GetAgentCostParamsSchema = exports.GetHelperAgentSchema = exports.CreateAgentFromPresetSchema = exports.CreateAgentSchema = exports.AgentPresetsPaginationQuerySchema = exports.AgentDeleteCredentialSchema = exports.AgentUpdateCredentialSchema = exports.AgentUpdateConfigSchema = exports.GetAgentsByIdsQuerySchema = exports.AgentsPaginationQuerySchema = void 0;
|
|
3
|
+
exports.DeleteAgentParamsSchema = exports.UploadAgentAvatarParamsSchema = exports.GetAgentCostParamsSchema = exports.GetAgentLocationsParamsSchema = exports.GetHelperAgentSchema = exports.CreateAgentFromPresetSchema = exports.CreateAgentSchema = exports.AgentPresetsPaginationQuerySchema = exports.AgentDeleteCredentialSchema = exports.AgentUpdateCredentialSchema = exports.AgentUpdateConfigSchema = exports.GetAgentsByIdsQuerySchema = exports.AgentsPaginationQuerySchema = void 0;
|
|
4
4
|
const models_1 = require("@little-samo/samo-ai-sdk/models");
|
|
5
5
|
const zod_1 = require("zod");
|
|
6
6
|
exports.AgentsPaginationQuerySchema = zod_1.z.object({
|
|
@@ -57,6 +57,9 @@ exports.CreateAgentFromPresetSchema = zod_1.z.object({
|
|
|
57
57
|
exports.GetHelperAgentSchema = zod_1.z.object({
|
|
58
58
|
helperType: zod_1.z.nativeEnum(models_1.AgentHelperType),
|
|
59
59
|
});
|
|
60
|
+
exports.GetAgentLocationsParamsSchema = zod_1.z.object({
|
|
61
|
+
agentId: zod_1.z.coerce.bigint(),
|
|
62
|
+
});
|
|
60
63
|
exports.GetAgentCostParamsSchema = zod_1.z.object({
|
|
61
64
|
agentId: zod_1.z.coerce.bigint(),
|
|
62
65
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.requests.js","sourceRoot":"","sources":["../../../../src/dto/entities/agents/agent.requests.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"agent.requests.js","sourceRoot":"","sources":["../../../../src/dto/entities/agents/agent.requests.ts"],"names":[],"mappings":"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"}
|
|
@@ -48,13 +48,13 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
48
48
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
49
49
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"CHAT">, z.ZodLiteral<"CHAT">]>>;
|
|
50
50
|
core: z.ZodOptional<z.ZodObject<{
|
|
51
|
-
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">]>;
|
|
51
|
+
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">, z.ZodLiteral<"update_until_idle">]>;
|
|
52
52
|
sequential: z.ZodOptional<z.ZodBoolean>;
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
54
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
54
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
55
55
|
sequential?: boolean | undefined;
|
|
56
56
|
}, {
|
|
57
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
57
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
58
58
|
sequential?: boolean | undefined;
|
|
59
59
|
}>>;
|
|
60
60
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -91,23 +91,23 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
91
91
|
appearance: z.ZodString;
|
|
92
92
|
}, "strip", z.ZodTypeAny, {
|
|
93
93
|
name: string;
|
|
94
|
-
appearance: string;
|
|
95
94
|
core: "web_search" | "x_twitter" | "notion";
|
|
95
|
+
appearance: string;
|
|
96
96
|
}, {
|
|
97
97
|
name: string;
|
|
98
|
-
appearance: string;
|
|
99
98
|
core: "web_search" | "x_twitter" | "notion";
|
|
99
|
+
appearance: string;
|
|
100
100
|
}>, "many">>;
|
|
101
101
|
}, "strict", z.ZodTypeAny, {
|
|
102
102
|
name?: string | undefined;
|
|
103
103
|
description?: string | undefined;
|
|
104
104
|
core?: {
|
|
105
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
105
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
106
106
|
sequential?: boolean | undefined;
|
|
107
107
|
} | undefined;
|
|
108
|
-
rules?: string[] | undefined;
|
|
109
108
|
thumbnail?: string | null | undefined;
|
|
110
109
|
environment?: "CHAT" | undefined;
|
|
110
|
+
rules?: string[] | undefined;
|
|
111
111
|
canvases?: {
|
|
112
112
|
name: string;
|
|
113
113
|
description: string;
|
|
@@ -120,19 +120,19 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
120
120
|
}[] | undefined;
|
|
121
121
|
gimmicks?: {
|
|
122
122
|
name: string;
|
|
123
|
-
appearance: string;
|
|
124
123
|
core: "web_search" | "x_twitter" | "notion";
|
|
124
|
+
appearance: string;
|
|
125
125
|
}[] | undefined;
|
|
126
126
|
}, {
|
|
127
127
|
name?: string | undefined;
|
|
128
128
|
description?: string | undefined;
|
|
129
129
|
core?: {
|
|
130
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
130
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
131
131
|
sequential?: boolean | undefined;
|
|
132
132
|
} | undefined;
|
|
133
|
-
rules?: string[] | undefined;
|
|
134
133
|
thumbnail?: string | null | undefined;
|
|
135
134
|
environment?: "CHAT" | undefined;
|
|
135
|
+
rules?: string[] | undefined;
|
|
136
136
|
canvases?: {
|
|
137
137
|
name: string;
|
|
138
138
|
description: string;
|
|
@@ -145,8 +145,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
145
145
|
}[] | undefined;
|
|
146
146
|
gimmicks?: {
|
|
147
147
|
name: string;
|
|
148
|
-
appearance: string;
|
|
149
148
|
core: "web_search" | "x_twitter" | "notion";
|
|
149
|
+
appearance: string;
|
|
150
150
|
}[] | undefined;
|
|
151
151
|
}>;
|
|
152
152
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -155,12 +155,12 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
155
155
|
name?: string | undefined;
|
|
156
156
|
description?: string | undefined;
|
|
157
157
|
core?: {
|
|
158
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
158
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
159
159
|
sequential?: boolean | undefined;
|
|
160
160
|
} | undefined;
|
|
161
|
-
rules?: string[] | undefined;
|
|
162
161
|
thumbnail?: string | null | undefined;
|
|
163
162
|
environment?: "CHAT" | undefined;
|
|
163
|
+
rules?: string[] | undefined;
|
|
164
164
|
canvases?: {
|
|
165
165
|
name: string;
|
|
166
166
|
description: string;
|
|
@@ -173,8 +173,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
173
173
|
}[] | undefined;
|
|
174
174
|
gimmicks?: {
|
|
175
175
|
name: string;
|
|
176
|
-
appearance: string;
|
|
177
176
|
core: "web_search" | "x_twitter" | "notion";
|
|
177
|
+
appearance: string;
|
|
178
178
|
}[] | undefined;
|
|
179
179
|
};
|
|
180
180
|
}, {
|
|
@@ -183,12 +183,12 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
183
183
|
name?: string | undefined;
|
|
184
184
|
description?: string | undefined;
|
|
185
185
|
core?: {
|
|
186
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
186
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
187
187
|
sequential?: boolean | undefined;
|
|
188
188
|
} | undefined;
|
|
189
|
-
rules?: string[] | undefined;
|
|
190
189
|
thumbnail?: string | null | undefined;
|
|
191
190
|
environment?: "CHAT" | undefined;
|
|
191
|
+
rules?: string[] | undefined;
|
|
192
192
|
canvases?: {
|
|
193
193
|
name: string;
|
|
194
194
|
description: string;
|
|
@@ -201,8 +201,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
201
201
|
}[] | undefined;
|
|
202
202
|
gimmicks?: {
|
|
203
203
|
name: string;
|
|
204
|
-
appearance: string;
|
|
205
204
|
core: "web_search" | "x_twitter" | "notion";
|
|
205
|
+
appearance: string;
|
|
206
206
|
}[] | undefined;
|
|
207
207
|
};
|
|
208
208
|
}>;
|
|
@@ -304,13 +304,13 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
304
304
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
305
305
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"CHAT">, z.ZodLiteral<"CHAT">]>>;
|
|
306
306
|
core: z.ZodOptional<z.ZodObject<{
|
|
307
|
-
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">]>;
|
|
307
|
+
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">, z.ZodLiteral<"update_until_idle">]>;
|
|
308
308
|
sequential: z.ZodOptional<z.ZodBoolean>;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
310
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
311
311
|
sequential?: boolean | undefined;
|
|
312
312
|
}, {
|
|
313
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
313
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
314
314
|
sequential?: boolean | undefined;
|
|
315
315
|
}>>;
|
|
316
316
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -347,23 +347,23 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
347
347
|
appearance: z.ZodString;
|
|
348
348
|
}, "strip", z.ZodTypeAny, {
|
|
349
349
|
name: string;
|
|
350
|
-
appearance: string;
|
|
351
350
|
core: "web_search" | "x_twitter" | "notion";
|
|
351
|
+
appearance: string;
|
|
352
352
|
}, {
|
|
353
353
|
name: string;
|
|
354
|
-
appearance: string;
|
|
355
354
|
core: "web_search" | "x_twitter" | "notion";
|
|
355
|
+
appearance: string;
|
|
356
356
|
}>, "many">>;
|
|
357
357
|
}, "strict", z.ZodTypeAny, {
|
|
358
358
|
name?: string | undefined;
|
|
359
359
|
description?: string | undefined;
|
|
360
360
|
core?: {
|
|
361
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
361
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
362
362
|
sequential?: boolean | undefined;
|
|
363
363
|
} | undefined;
|
|
364
|
-
rules?: string[] | undefined;
|
|
365
364
|
thumbnail?: string | null | undefined;
|
|
366
365
|
environment?: "CHAT" | undefined;
|
|
366
|
+
rules?: string[] | undefined;
|
|
367
367
|
canvases?: {
|
|
368
368
|
name: string;
|
|
369
369
|
description: string;
|
|
@@ -376,19 +376,19 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
376
376
|
}[] | undefined;
|
|
377
377
|
gimmicks?: {
|
|
378
378
|
name: string;
|
|
379
|
-
appearance: string;
|
|
380
379
|
core: "web_search" | "x_twitter" | "notion";
|
|
380
|
+
appearance: string;
|
|
381
381
|
}[] | undefined;
|
|
382
382
|
}, {
|
|
383
383
|
name?: string | undefined;
|
|
384
384
|
description?: string | undefined;
|
|
385
385
|
core?: {
|
|
386
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
386
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
387
387
|
sequential?: boolean | undefined;
|
|
388
388
|
} | undefined;
|
|
389
|
-
rules?: string[] | undefined;
|
|
390
389
|
thumbnail?: string | null | undefined;
|
|
391
390
|
environment?: "CHAT" | undefined;
|
|
391
|
+
rules?: string[] | undefined;
|
|
392
392
|
canvases?: {
|
|
393
393
|
name: string;
|
|
394
394
|
description: string;
|
|
@@ -401,8 +401,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
401
401
|
}[] | undefined;
|
|
402
402
|
gimmicks?: {
|
|
403
403
|
name: string;
|
|
404
|
-
appearance: string;
|
|
405
404
|
core: "web_search" | "x_twitter" | "notion";
|
|
405
|
+
appearance: string;
|
|
406
406
|
}[] | undefined;
|
|
407
407
|
}>;
|
|
408
408
|
platform: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<{
|
|
@@ -414,12 +414,12 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
414
414
|
name?: string | undefined;
|
|
415
415
|
description?: string | undefined;
|
|
416
416
|
core?: {
|
|
417
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
417
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
418
418
|
sequential?: boolean | undefined;
|
|
419
419
|
} | undefined;
|
|
420
|
-
rules?: string[] | undefined;
|
|
421
420
|
thumbnail?: string | null | undefined;
|
|
422
421
|
environment?: "CHAT" | undefined;
|
|
422
|
+
rules?: string[] | undefined;
|
|
423
423
|
canvases?: {
|
|
424
424
|
name: string;
|
|
425
425
|
description: string;
|
|
@@ -432,8 +432,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
432
432
|
}[] | undefined;
|
|
433
433
|
gimmicks?: {
|
|
434
434
|
name: string;
|
|
435
|
-
appearance: string;
|
|
436
435
|
core: "web_search" | "x_twitter" | "notion";
|
|
436
|
+
appearance: string;
|
|
437
437
|
}[] | undefined;
|
|
438
438
|
};
|
|
439
439
|
platform: "API" | "MINIMO";
|
|
@@ -442,12 +442,12 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
442
442
|
name?: string | undefined;
|
|
443
443
|
description?: string | undefined;
|
|
444
444
|
core?: {
|
|
445
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
445
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
446
446
|
sequential?: boolean | undefined;
|
|
447
447
|
} | undefined;
|
|
448
|
-
rules?: string[] | undefined;
|
|
449
448
|
thumbnail?: string | null | undefined;
|
|
450
449
|
environment?: "CHAT" | undefined;
|
|
450
|
+
rules?: string[] | undefined;
|
|
451
451
|
canvases?: {
|
|
452
452
|
name: string;
|
|
453
453
|
description: string;
|
|
@@ -460,8 +460,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
460
460
|
}[] | undefined;
|
|
461
461
|
gimmicks?: {
|
|
462
462
|
name: string;
|
|
463
|
-
appearance: string;
|
|
464
463
|
core: "web_search" | "x_twitter" | "notion";
|
|
464
|
+
appearance: string;
|
|
465
465
|
}[] | undefined;
|
|
466
466
|
};
|
|
467
467
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const LocationEnvironmentSchema: z.ZodUnion<[z.ZodLiteral<"CHAT">, z.ZodLiteral<"CHAT">]>;
|
|
3
3
|
export declare const LocationConfigCoreSchema: z.ZodObject<{
|
|
4
|
-
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">]>;
|
|
4
|
+
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">, z.ZodLiteral<"update_until_idle">]>;
|
|
5
5
|
sequential: z.ZodOptional<z.ZodBoolean>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
7
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
8
8
|
sequential?: boolean | undefined;
|
|
9
9
|
}, {
|
|
10
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
10
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
11
11
|
sequential?: boolean | undefined;
|
|
12
12
|
}>;
|
|
13
13
|
export type LocationConfigCore = z.infer<typeof LocationConfigCoreSchema>;
|
|
@@ -32,12 +32,12 @@ export declare const LocationConfigGimmickSchema: z.ZodObject<{
|
|
|
32
32
|
appearance: z.ZodString;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
34
|
name: string;
|
|
35
|
-
appearance: string;
|
|
36
35
|
core: "web_search" | "x_twitter" | "notion";
|
|
36
|
+
appearance: string;
|
|
37
37
|
}, {
|
|
38
38
|
name: string;
|
|
39
|
-
appearance: string;
|
|
40
39
|
core: "web_search" | "x_twitter" | "notion";
|
|
40
|
+
appearance: string;
|
|
41
41
|
}>;
|
|
42
42
|
export type LocationConfigGimmick = z.infer<typeof LocationConfigGimmickSchema>;
|
|
43
43
|
export declare const LocationConfigSchema: z.ZodObject<{
|
|
@@ -45,13 +45,13 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
45
45
|
thumbnail: z.ZodNullable<z.ZodString>;
|
|
46
46
|
environment: z.ZodUnion<[z.ZodLiteral<"CHAT">, z.ZodLiteral<"CHAT">]>;
|
|
47
47
|
core: z.ZodObject<{
|
|
48
|
-
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">]>;
|
|
48
|
+
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">, z.ZodLiteral<"update_until_idle">]>;
|
|
49
49
|
sequential: z.ZodOptional<z.ZodBoolean>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
51
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
52
52
|
sequential?: boolean | undefined;
|
|
53
53
|
}, {
|
|
54
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
54
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
55
55
|
sequential?: boolean | undefined;
|
|
56
56
|
}>;
|
|
57
57
|
description: z.ZodString;
|
|
@@ -88,23 +88,23 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
88
88
|
appearance: z.ZodString;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
90
|
name: string;
|
|
91
|
-
appearance: string;
|
|
92
91
|
core: "web_search" | "x_twitter" | "notion";
|
|
92
|
+
appearance: string;
|
|
93
93
|
}, {
|
|
94
94
|
name: string;
|
|
95
|
-
appearance: string;
|
|
96
95
|
core: "web_search" | "x_twitter" | "notion";
|
|
96
|
+
appearance: string;
|
|
97
97
|
}>, "many">;
|
|
98
98
|
}, "strip", z.ZodTypeAny, {
|
|
99
99
|
name: string;
|
|
100
100
|
description: string;
|
|
101
101
|
core: {
|
|
102
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
102
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
103
103
|
sequential?: boolean | undefined;
|
|
104
104
|
};
|
|
105
|
-
rules: string[];
|
|
106
105
|
thumbnail: string | null;
|
|
107
106
|
environment: "CHAT";
|
|
107
|
+
rules: string[];
|
|
108
108
|
canvases: {
|
|
109
109
|
name: string;
|
|
110
110
|
description: string;
|
|
@@ -117,19 +117,19 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
117
117
|
}[];
|
|
118
118
|
gimmicks: {
|
|
119
119
|
name: string;
|
|
120
|
-
appearance: string;
|
|
121
120
|
core: "web_search" | "x_twitter" | "notion";
|
|
121
|
+
appearance: string;
|
|
122
122
|
}[];
|
|
123
123
|
}, {
|
|
124
124
|
name: string;
|
|
125
125
|
description: string;
|
|
126
126
|
core: {
|
|
127
|
-
name: "round_robin" | "update_forever" | "update_once";
|
|
127
|
+
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
128
128
|
sequential?: boolean | undefined;
|
|
129
129
|
};
|
|
130
|
-
rules: string[];
|
|
131
130
|
thumbnail: string | null;
|
|
132
131
|
environment: "CHAT";
|
|
132
|
+
rules: string[];
|
|
133
133
|
canvases: {
|
|
134
134
|
name: string;
|
|
135
135
|
description: string;
|
|
@@ -142,8 +142,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
142
142
|
}[];
|
|
143
143
|
gimmicks: {
|
|
144
144
|
name: string;
|
|
145
|
-
appearance: string;
|
|
146
145
|
core: "web_search" | "x_twitter" | "notion";
|
|
146
|
+
appearance: string;
|
|
147
147
|
}[];
|
|
148
148
|
}>;
|
|
149
149
|
export type LocationConfig = z.infer<typeof LocationConfigSchema>;
|
|
@@ -18,6 +18,9 @@ exports.LocationConfigCoreSchema = zod_1.z.object({
|
|
|
18
18
|
.literal('update_forever')
|
|
19
19
|
.describe('Continuously update agents without stopping'),
|
|
20
20
|
zod_1.z.literal('update_once').describe('Execute agents only once per cycle'),
|
|
21
|
+
zod_1.z
|
|
22
|
+
.literal('update_until_idle')
|
|
23
|
+
.describe('Update agents continuously until no actions are available'),
|
|
21
24
|
]),
|
|
22
25
|
sequential: zod_1.z.boolean().optional().describe('Execute agents in fixed order'),
|
|
23
26
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.config.js","sourceRoot":"","sources":["../../../src/models/locations/location.config.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,6DAA2D;AAE9C,QAAA,yBAAyB,GAAG,OAAC,CAAC,KAAK,CAAC;IAC/C,OAAC;SACE,OAAO,CAAC,wCAAmB,CAAC,IAAI,CAAC;SACjC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAC;SACE,OAAO,CAAC,wCAAmB,CAAC,IAAI,CAAC;SACjC,QAAQ,CACP,oEAAoE,CACrE;CACJ,CAAC,CAAC;AAEU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC;QACZ,OAAC,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QACrE,OAAC;aACE,OAAO,CAAC,gBAAgB,CAAC;aACzB,QAAQ,CAAC,6CAA6C,CAAC;QAC1D,OAAC,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"location.config.js","sourceRoot":"","sources":["../../../src/models/locations/location.config.ts"],"names":[],"mappings":"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"}
|