@little-samo/samo-ai-sdk 0.7.8 → 0.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -160,7 +160,6 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
160
160
  core?: {
161
161
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
162
162
  } | undefined;
163
- rules?: string[] | undefined;
164
163
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
165
164
  languages?: string[] | undefined;
166
165
  timeZone?: string | undefined;
@@ -187,6 +186,7 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
187
186
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
188
187
  } | undefined;
189
188
  } | undefined;
189
+ rules?: string[] | undefined;
190
190
  }, {
191
191
  avatar?: string | undefined;
192
192
  name?: string | undefined;
@@ -196,7 +196,6 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
196
196
  core?: {
197
197
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
198
198
  } | undefined;
199
- rules?: string[] | undefined;
200
199
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
201
200
  languages?: string[] | undefined;
202
201
  timeZone?: string | undefined;
@@ -223,8 +222,10 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
223
222
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
224
223
  } | undefined;
225
224
  } | undefined;
225
+ rules?: string[] | undefined;
226
226
  }>;
227
227
  }, "strip", z.ZodTypeAny, {
228
+ agentId: bigint;
228
229
  config: {
229
230
  avatar?: string | undefined;
230
231
  name?: string | undefined;
@@ -234,7 +235,6 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
234
235
  core?: {
235
236
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
236
237
  } | undefined;
237
- rules?: string[] | undefined;
238
238
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
239
239
  languages?: string[] | undefined;
240
240
  timeZone?: string | undefined;
@@ -261,9 +261,10 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
261
261
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
262
262
  } | undefined;
263
263
  } | undefined;
264
+ rules?: string[] | undefined;
264
265
  };
265
- agentId: bigint;
266
266
  }, {
267
+ agentId: bigint;
267
268
  config: {
268
269
  avatar?: string | undefined;
269
270
  name?: string | undefined;
@@ -273,7 +274,6 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
273
274
  core?: {
274
275
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
275
276
  } | undefined;
276
- rules?: string[] | undefined;
277
277
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
278
278
  languages?: string[] | undefined;
279
279
  timeZone?: string | undefined;
@@ -300,8 +300,8 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
300
300
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
301
301
  } | undefined;
302
302
  } | undefined;
303
+ rules?: string[] | undefined;
303
304
  };
304
- agentId: bigint;
305
305
  }>;
306
306
  export type AgentUpdateConfigDto = z.infer<typeof AgentUpdateConfigSchema>;
307
307
  export type AgentUpdateConfigResponseDto = Partial<AgentConfig>;
@@ -327,6 +327,7 @@ export declare const AgentUpdateCredentialSchema: z.ZodObject<{
327
327
  token: string;
328
328
  }>]>;
329
329
  }, "strip", z.ZodTypeAny, {
330
+ agentId: bigint;
330
331
  credential: {
331
332
  type: "notion";
332
333
  token: string;
@@ -334,8 +335,8 @@ export declare const AgentUpdateCredentialSchema: z.ZodObject<{
334
335
  type: "notion";
335
336
  token: string;
336
337
  };
337
- agentId: bigint;
338
338
  }, {
339
+ agentId: bigint;
339
340
  credential: {
340
341
  type: "notion";
341
342
  token: string;
@@ -343,7 +344,6 @@ export declare const AgentUpdateCredentialSchema: z.ZodObject<{
343
344
  type: "notion";
344
345
  token: string;
345
346
  };
346
- agentId: bigint;
347
347
  }>;
348
348
  export type AgentUpdateCredentialDto = z.infer<typeof AgentUpdateCredentialSchema>;
349
349
  export interface AgentUpdateCredentialResponseDto {
@@ -354,11 +354,11 @@ export declare const AgentDeleteCredentialSchema: z.ZodObject<{
354
354
  agentId: z.ZodBigInt;
355
355
  credentialType: z.ZodString;
356
356
  }, "strip", z.ZodTypeAny, {
357
- credentialType: string;
358
357
  agentId: bigint;
359
- }, {
360
358
  credentialType: string;
359
+ }, {
361
360
  agentId: bigint;
361
+ credentialType: string;
362
362
  }>;
363
363
  export type AgentDeleteCredentialDto = z.infer<typeof AgentDeleteCredentialSchema>;
364
364
  export interface AgentDeleteCredentialResponseDto {
@@ -507,7 +507,6 @@ export declare const CreateAgentSchema: z.ZodObject<{
507
507
  core?: {
508
508
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
509
509
  } | undefined;
510
- rules?: string[] | undefined;
511
510
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
512
511
  languages?: string[] | undefined;
513
512
  timeZone?: string | undefined;
@@ -534,6 +533,7 @@ export declare const CreateAgentSchema: z.ZodObject<{
534
533
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
535
534
  } | undefined;
536
535
  } | undefined;
536
+ rules?: string[] | undefined;
537
537
  }, {
538
538
  avatar?: string | undefined;
539
539
  name?: string | undefined;
@@ -543,7 +543,6 @@ export declare const CreateAgentSchema: z.ZodObject<{
543
543
  core?: {
544
544
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
545
545
  } | undefined;
546
- rules?: string[] | undefined;
547
546
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
548
547
  languages?: string[] | undefined;
549
548
  timeZone?: string | undefined;
@@ -570,6 +569,7 @@ export declare const CreateAgentSchema: z.ZodObject<{
570
569
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
571
570
  } | undefined;
572
571
  } | undefined;
572
+ rules?: string[] | undefined;
573
573
  }>;
574
574
  }, "strip", z.ZodTypeAny, {
575
575
  config: {
@@ -581,7 +581,6 @@ export declare const CreateAgentSchema: z.ZodObject<{
581
581
  core?: {
582
582
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
583
583
  } | undefined;
584
- rules?: string[] | undefined;
585
584
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
586
585
  languages?: string[] | undefined;
587
586
  timeZone?: string | undefined;
@@ -608,6 +607,7 @@ export declare const CreateAgentSchema: z.ZodObject<{
608
607
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
609
608
  } | undefined;
610
609
  } | undefined;
610
+ rules?: string[] | undefined;
611
611
  };
612
612
  }, {
613
613
  config: {
@@ -619,7 +619,6 @@ export declare const CreateAgentSchema: z.ZodObject<{
619
619
  core?: {
620
620
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
621
621
  } | undefined;
622
- rules?: string[] | undefined;
623
622
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
624
623
  languages?: string[] | undefined;
625
624
  timeZone?: string | undefined;
@@ -646,6 +645,7 @@ export declare const CreateAgentSchema: z.ZodObject<{
646
645
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
647
646
  } | undefined;
648
647
  } | undefined;
648
+ rules?: string[] | undefined;
649
649
  };
650
650
  }>;
651
651
  export type CreateAgentDto = z.infer<typeof CreateAgentSchema>;
@@ -1,19 +1,25 @@
1
1
  import { z } from 'zod';
2
2
  export declare const GenerateAvatarImageBodySchema: z.ZodObject<{
3
- type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["avatar", "reference"]>>>;
3
+ type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["avatar", "reference", "pose"]>>>;
4
4
  style: z.ZodDefault<z.ZodOptional<z.ZodEnum<["realistic", "webtoon", "webtoon2", "illustration", "anime", "korean"]>>>;
5
5
  image: z.ZodOptional<z.ZodString>;
6
6
  prompt: z.ZodOptional<z.ZodString>;
7
+ rawPrompt: z.ZodOptional<z.ZodString>;
8
+ pose: z.ZodOptional<z.ZodString>;
7
9
  }, "strip", z.ZodTypeAny, {
8
- type: "avatar" | "reference";
10
+ type: "avatar" | "reference" | "pose";
9
11
  style: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean";
12
+ pose?: string | undefined;
10
13
  image?: string | undefined;
11
14
  prompt?: string | undefined;
15
+ rawPrompt?: string | undefined;
12
16
  }, {
13
- type?: "avatar" | "reference" | undefined;
17
+ pose?: string | undefined;
18
+ type?: "avatar" | "reference" | "pose" | undefined;
14
19
  style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
15
20
  image?: string | undefined;
16
21
  prompt?: string | undefined;
22
+ rawPrompt?: string | undefined;
17
23
  }>;
18
24
  export type GenerateAvatarImageBodyDto = z.infer<typeof GenerateAvatarImageBodySchema>;
19
25
  export interface GenerateAvatarImageResponseDto {
@@ -4,10 +4,12 @@ exports.GetSceneImageQuerySchema = exports.GenerateThumbnailImageBodySchema = ex
4
4
  const zod_1 = require("zod");
5
5
  const image_1 = require("./image");
6
6
  exports.GenerateAvatarImageBodySchema = zod_1.z.object({
7
- type: zod_1.z.enum(['avatar', 'reference']).optional().default('avatar'),
7
+ type: zod_1.z.enum(['avatar', 'reference', 'pose']).optional().default('avatar'),
8
8
  style: image_1.ImageStyleSchema.optional().default('webtoon'),
9
9
  image: zod_1.z.string().max(2048).optional(),
10
10
  prompt: zod_1.z.string().max(500).optional(),
11
+ rawPrompt: zod_1.z.string().max(500).optional(),
12
+ pose: zod_1.z.string().max(1000).optional(),
11
13
  });
12
14
  exports.GenerateThumbnailImageBodySchema = zod_1.z.object({
13
15
  style: image_1.ImageStyleSchema.optional().default('webtoon'),
@@ -1 +1 @@
1
- {"version":3,"file":"image.requests.js","sourceRoot":"","sources":["../../../src/dto/images/image.requests.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,mCAA2C;AAO9B,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,IAAI,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC;IAClE,KAAK,EAAE,wBAAgB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC;IACrD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IACtC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAYU,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACvD,KAAK,EAAE,wBAAgB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC;IACrD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IACtC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAWU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IACzB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;IAC3B,KAAK,EAAE,wBAAgB,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC"}
1
+ {"version":3,"file":"image.requests.js","sourceRoot":"","sources":["../../../src/dto/images/image.requests.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,mCAA2C;AAO9B,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,IAAI,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,WAAW,EAAE,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC1E,KAAK,EAAE,wBAAgB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC;IACrD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IACtC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACtC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACzC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC;AAYU,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACvD,KAAK,EAAE,wBAAgB,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC;IACrD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IACtC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAWU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IACzB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;IAC3B,KAAK,EAAE,wBAAgB,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC"}
@@ -118,7 +118,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
118
118
  maxLength: number;
119
119
  }>, "many">>;
120
120
  gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
121
- core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
121
+ core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
122
122
  name: z.ZodString;
123
123
  appearance: z.ZodString;
124
124
  images: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -137,7 +137,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
137
137
  }, "strip", z.ZodTypeAny, {
138
138
  name: string;
139
139
  appearance: string;
140
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
140
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
141
141
  images?: {
142
142
  description: string;
143
143
  name?: string | undefined;
@@ -146,7 +146,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
146
146
  }, {
147
147
  name: string;
148
148
  appearance: string;
149
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
149
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
150
150
  images?: {
151
151
  description: string;
152
152
  name?: string | undefined;
@@ -155,16 +155,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
155
155
  }>, "many">>;
156
156
  }, "strict", z.ZodTypeAny, {
157
157
  name?: string | undefined;
158
- thumbnail?: string | null | undefined;
159
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
158
+ description?: string | undefined;
160
159
  core?: {
161
160
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
162
161
  sequential?: boolean | undefined;
163
162
  interval?: number | undefined;
164
163
  maxAgentExecutions?: number | null | undefined;
165
164
  } | undefined;
166
- description?: string | undefined;
167
165
  rules?: string[] | undefined;
166
+ thumbnail?: string | null | undefined;
167
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
168
168
  canvases?: {
169
169
  name: string;
170
170
  description: string;
@@ -178,7 +178,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
178
178
  gimmicks?: {
179
179
  name: string;
180
180
  appearance: string;
181
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
181
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
182
182
  images?: {
183
183
  description: string;
184
184
  name?: string | undefined;
@@ -187,16 +187,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
187
187
  }[] | undefined;
188
188
  }, {
189
189
  name?: string | undefined;
190
- thumbnail?: string | null | undefined;
191
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
190
+ description?: string | undefined;
192
191
  core?: {
193
192
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
194
193
  sequential?: boolean | undefined;
195
194
  interval?: number | undefined;
196
195
  maxAgentExecutions?: number | null | undefined;
197
196
  } | undefined;
198
- description?: string | undefined;
199
197
  rules?: string[] | undefined;
198
+ thumbnail?: string | null | undefined;
199
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
200
200
  canvases?: {
201
201
  name: string;
202
202
  description: string;
@@ -210,7 +210,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
210
210
  gimmicks?: {
211
211
  name: string;
212
212
  appearance: string;
213
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
213
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
214
214
  images?: {
215
215
  description: string;
216
216
  name?: string | undefined;
@@ -222,16 +222,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
222
222
  locationId: bigint;
223
223
  config: {
224
224
  name?: string | undefined;
225
- thumbnail?: string | null | undefined;
226
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
225
+ description?: string | undefined;
227
226
  core?: {
228
227
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
229
228
  sequential?: boolean | undefined;
230
229
  interval?: number | undefined;
231
230
  maxAgentExecutions?: number | null | undefined;
232
231
  } | undefined;
233
- description?: string | undefined;
234
232
  rules?: string[] | undefined;
233
+ thumbnail?: string | null | undefined;
234
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
235
235
  canvases?: {
236
236
  name: string;
237
237
  description: string;
@@ -245,7 +245,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
245
245
  gimmicks?: {
246
246
  name: string;
247
247
  appearance: string;
248
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
248
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
249
249
  images?: {
250
250
  description: string;
251
251
  name?: string | undefined;
@@ -257,16 +257,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
257
257
  locationId: bigint;
258
258
  config: {
259
259
  name?: string | undefined;
260
- thumbnail?: string | null | undefined;
261
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
260
+ description?: string | undefined;
262
261
  core?: {
263
262
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
264
263
  sequential?: boolean | undefined;
265
264
  interval?: number | undefined;
266
265
  maxAgentExecutions?: number | null | undefined;
267
266
  } | undefined;
268
- description?: string | undefined;
269
267
  rules?: string[] | undefined;
268
+ thumbnail?: string | null | undefined;
269
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
270
270
  canvases?: {
271
271
  name: string;
272
272
  description: string;
@@ -280,7 +280,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
280
280
  gimmicks?: {
281
281
  name: string;
282
282
  appearance: string;
283
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
283
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
284
284
  images?: {
285
285
  description: string;
286
286
  name?: string | undefined;
@@ -536,7 +536,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
536
536
  maxLength: number;
537
537
  }>, "many">>;
538
538
  gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
539
- core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
539
+ core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
540
540
  name: z.ZodString;
541
541
  appearance: z.ZodString;
542
542
  images: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -555,7 +555,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
555
555
  }, "strip", z.ZodTypeAny, {
556
556
  name: string;
557
557
  appearance: string;
558
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
558
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
559
559
  images?: {
560
560
  description: string;
561
561
  name?: string | undefined;
@@ -564,7 +564,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
564
564
  }, {
565
565
  name: string;
566
566
  appearance: string;
567
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
567
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
568
568
  images?: {
569
569
  description: string;
570
570
  name?: string | undefined;
@@ -573,16 +573,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
573
573
  }>, "many">>;
574
574
  }, "strip", z.ZodTypeAny, {
575
575
  name?: string | undefined;
576
- thumbnail?: string | null | undefined;
577
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
576
+ description?: string | undefined;
578
577
  core?: {
579
578
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
580
579
  sequential?: boolean | undefined;
581
580
  interval?: number | undefined;
582
581
  maxAgentExecutions?: number | null | undefined;
583
582
  } | undefined;
584
- description?: string | undefined;
585
583
  rules?: string[] | undefined;
584
+ thumbnail?: string | null | undefined;
585
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
586
586
  canvases?: {
587
587
  name: string;
588
588
  description: string;
@@ -596,7 +596,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
596
596
  gimmicks?: {
597
597
  name: string;
598
598
  appearance: string;
599
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
599
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
600
600
  images?: {
601
601
  description: string;
602
602
  name?: string | undefined;
@@ -605,16 +605,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
605
605
  }[] | undefined;
606
606
  }, {
607
607
  name?: string | undefined;
608
- thumbnail?: string | null | undefined;
609
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
608
+ description?: string | undefined;
610
609
  core?: {
611
610
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
612
611
  sequential?: boolean | undefined;
613
612
  interval?: number | undefined;
614
613
  maxAgentExecutions?: number | null | undefined;
615
614
  } | undefined;
616
- description?: string | undefined;
617
615
  rules?: string[] | undefined;
616
+ thumbnail?: string | null | undefined;
617
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
618
618
  canvases?: {
619
619
  name: string;
620
620
  description: string;
@@ -628,7 +628,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
628
628
  gimmicks?: {
629
629
  name: string;
630
630
  appearance: string;
631
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
631
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
632
632
  images?: {
633
633
  description: string;
634
634
  name?: string | undefined;
@@ -757,7 +757,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
757
757
  core?: {
758
758
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
759
759
  } | undefined;
760
- rules?: string[] | undefined;
761
760
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
762
761
  languages?: string[] | undefined;
763
762
  timeZone?: string | undefined;
@@ -784,6 +783,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
784
783
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
785
784
  } | undefined;
786
785
  } | undefined;
786
+ rules?: string[] | undefined;
787
787
  }, {
788
788
  avatar?: string | undefined;
789
789
  name?: string | undefined;
@@ -793,7 +793,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
793
793
  core?: {
794
794
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
795
795
  } | undefined;
796
- rules?: string[] | undefined;
797
796
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
798
797
  languages?: string[] | undefined;
799
798
  timeZone?: string | undefined;
@@ -820,6 +819,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
820
819
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
821
820
  } | undefined;
822
821
  } | undefined;
822
+ rules?: string[] | undefined;
823
823
  }>, "many">>;
824
824
  }, "strip", z.ZodTypeAny, {
825
825
  presetDescription: string;
@@ -832,16 +832,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
832
832
  isSensitive?: boolean | undefined;
833
833
  locationConfig?: {
834
834
  name?: string | undefined;
835
- thumbnail?: string | null | undefined;
836
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
835
+ description?: string | undefined;
837
836
  core?: {
838
837
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
839
838
  sequential?: boolean | undefined;
840
839
  interval?: number | undefined;
841
840
  maxAgentExecutions?: number | null | undefined;
842
841
  } | undefined;
843
- description?: string | undefined;
844
842
  rules?: string[] | undefined;
843
+ thumbnail?: string | null | undefined;
844
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
845
845
  canvases?: {
846
846
  name: string;
847
847
  description: string;
@@ -855,7 +855,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
855
855
  gimmicks?: {
856
856
  name: string;
857
857
  appearance: string;
858
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
858
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
859
859
  images?: {
860
860
  description: string;
861
861
  name?: string | undefined;
@@ -872,7 +872,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
872
872
  core?: {
873
873
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
874
874
  } | undefined;
875
- rules?: string[] | undefined;
876
875
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
877
876
  languages?: string[] | undefined;
878
877
  timeZone?: string | undefined;
@@ -899,6 +898,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
899
898
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
900
899
  } | undefined;
901
900
  } | undefined;
901
+ rules?: string[] | undefined;
902
902
  }[] | undefined;
903
903
  }, {
904
904
  presetDescription: string;
@@ -911,16 +911,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
911
911
  isSensitive?: boolean | undefined;
912
912
  locationConfig?: {
913
913
  name?: string | undefined;
914
- thumbnail?: string | null | undefined;
915
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
914
+ description?: string | undefined;
916
915
  core?: {
917
916
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
918
917
  sequential?: boolean | undefined;
919
918
  interval?: number | undefined;
920
919
  maxAgentExecutions?: number | null | undefined;
921
920
  } | undefined;
922
- description?: string | undefined;
923
921
  rules?: string[] | undefined;
922
+ thumbnail?: string | null | undefined;
923
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
924
924
  canvases?: {
925
925
  name: string;
926
926
  description: string;
@@ -934,7 +934,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
934
934
  gimmicks?: {
935
935
  name: string;
936
936
  appearance: string;
937
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
937
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
938
938
  images?: {
939
939
  description: string;
940
940
  name?: string | undefined;
@@ -951,7 +951,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
951
951
  core?: {
952
952
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
953
953
  } | undefined;
954
- rules?: string[] | undefined;
955
954
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
956
955
  languages?: string[] | undefined;
957
956
  timeZone?: string | undefined;
@@ -978,6 +977,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
978
977
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
979
978
  } | undefined;
980
979
  } | undefined;
980
+ rules?: string[] | undefined;
981
981
  }[] | undefined;
982
982
  }>;
983
983
  export type CreateLocationPresetDto = z.infer<typeof CreateLocationPresetSchema>;
@@ -1161,7 +1161,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1161
1161
  maxLength: number;
1162
1162
  }>, "many">>;
1163
1163
  gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1164
- core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
1164
+ core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
1165
1165
  name: z.ZodString;
1166
1166
  appearance: z.ZodString;
1167
1167
  images: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1180,7 +1180,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1180
1180
  }, "strip", z.ZodTypeAny, {
1181
1181
  name: string;
1182
1182
  appearance: string;
1183
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
1183
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
1184
1184
  images?: {
1185
1185
  description: string;
1186
1186
  name?: string | undefined;
@@ -1189,7 +1189,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1189
1189
  }, {
1190
1190
  name: string;
1191
1191
  appearance: string;
1192
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
1192
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
1193
1193
  images?: {
1194
1194
  description: string;
1195
1195
  name?: string | undefined;
@@ -1198,16 +1198,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1198
1198
  }>, "many">>;
1199
1199
  }, "strip", z.ZodTypeAny, {
1200
1200
  name?: string | undefined;
1201
- thumbnail?: string | null | undefined;
1202
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1201
+ description?: string | undefined;
1203
1202
  core?: {
1204
1203
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1205
1204
  sequential?: boolean | undefined;
1206
1205
  interval?: number | undefined;
1207
1206
  maxAgentExecutions?: number | null | undefined;
1208
1207
  } | undefined;
1209
- description?: string | undefined;
1210
1208
  rules?: string[] | undefined;
1209
+ thumbnail?: string | null | undefined;
1210
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1211
1211
  canvases?: {
1212
1212
  name: string;
1213
1213
  description: string;
@@ -1221,7 +1221,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1221
1221
  gimmicks?: {
1222
1222
  name: string;
1223
1223
  appearance: string;
1224
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
1224
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
1225
1225
  images?: {
1226
1226
  description: string;
1227
1227
  name?: string | undefined;
@@ -1230,16 +1230,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1230
1230
  }[] | undefined;
1231
1231
  }, {
1232
1232
  name?: string | undefined;
1233
- thumbnail?: string | null | undefined;
1234
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1233
+ description?: string | undefined;
1235
1234
  core?: {
1236
1235
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1237
1236
  sequential?: boolean | undefined;
1238
1237
  interval?: number | undefined;
1239
1238
  maxAgentExecutions?: number | null | undefined;
1240
1239
  } | undefined;
1241
- description?: string | undefined;
1242
1240
  rules?: string[] | undefined;
1241
+ thumbnail?: string | null | undefined;
1242
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1243
1243
  canvases?: {
1244
1244
  name: string;
1245
1245
  description: string;
@@ -1253,7 +1253,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1253
1253
  gimmicks?: {
1254
1254
  name: string;
1255
1255
  appearance: string;
1256
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
1256
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
1257
1257
  images?: {
1258
1258
  description: string;
1259
1259
  name?: string | undefined;
@@ -1382,7 +1382,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1382
1382
  core?: {
1383
1383
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1384
1384
  } | undefined;
1385
- rules?: string[] | undefined;
1386
1385
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
1387
1386
  languages?: string[] | undefined;
1388
1387
  timeZone?: string | undefined;
@@ -1409,6 +1408,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1409
1408
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
1410
1409
  } | undefined;
1411
1410
  } | undefined;
1411
+ rules?: string[] | undefined;
1412
1412
  }, {
1413
1413
  avatar?: string | undefined;
1414
1414
  name?: string | undefined;
@@ -1418,7 +1418,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1418
1418
  core?: {
1419
1419
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1420
1420
  } | undefined;
1421
- rules?: string[] | undefined;
1422
1421
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
1423
1422
  languages?: string[] | undefined;
1424
1423
  timeZone?: string | undefined;
@@ -1445,6 +1444,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1445
1444
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
1446
1445
  } | undefined;
1447
1446
  } | undefined;
1447
+ rules?: string[] | undefined;
1448
1448
  }>>, "many">>;
1449
1449
  }, "strip", z.ZodTypeAny, {
1450
1450
  name?: string | undefined;
@@ -1461,16 +1461,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1461
1461
  isSensitive?: boolean | undefined;
1462
1462
  locationConfig?: {
1463
1463
  name?: string | undefined;
1464
- thumbnail?: string | null | undefined;
1465
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1464
+ description?: string | undefined;
1466
1465
  core?: {
1467
1466
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1468
1467
  sequential?: boolean | undefined;
1469
1468
  interval?: number | undefined;
1470
1469
  maxAgentExecutions?: number | null | undefined;
1471
1470
  } | undefined;
1472
- description?: string | undefined;
1473
1471
  rules?: string[] | undefined;
1472
+ thumbnail?: string | null | undefined;
1473
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1474
1474
  canvases?: {
1475
1475
  name: string;
1476
1476
  description: string;
@@ -1484,7 +1484,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1484
1484
  gimmicks?: {
1485
1485
  name: string;
1486
1486
  appearance: string;
1487
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
1487
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
1488
1488
  images?: {
1489
1489
  description: string;
1490
1490
  name?: string | undefined;
@@ -1501,7 +1501,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1501
1501
  core?: {
1502
1502
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1503
1503
  } | undefined;
1504
- rules?: string[] | undefined;
1505
1504
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
1506
1505
  languages?: string[] | undefined;
1507
1506
  timeZone?: string | undefined;
@@ -1528,6 +1527,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1528
1527
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
1529
1528
  } | undefined;
1530
1529
  } | undefined;
1530
+ rules?: string[] | undefined;
1531
1531
  } | null)[] | undefined;
1532
1532
  thumbnails?: string[] | undefined;
1533
1533
  mission?: {
@@ -1570,16 +1570,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1570
1570
  isSensitive?: boolean | undefined;
1571
1571
  locationConfig?: {
1572
1572
  name?: string | undefined;
1573
- thumbnail?: string | null | undefined;
1574
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1573
+ description?: string | undefined;
1575
1574
  core?: {
1576
1575
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1577
1576
  sequential?: boolean | undefined;
1578
1577
  interval?: number | undefined;
1579
1578
  maxAgentExecutions?: number | null | undefined;
1580
1579
  } | undefined;
1581
- description?: string | undefined;
1582
1580
  rules?: string[] | undefined;
1581
+ thumbnail?: string | null | undefined;
1582
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
1583
1583
  canvases?: {
1584
1584
  name: string;
1585
1585
  description: string;
@@ -1593,7 +1593,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1593
1593
  gimmicks?: {
1594
1594
  name: string;
1595
1595
  appearance: string;
1596
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
1596
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
1597
1597
  images?: {
1598
1598
  description: string;
1599
1599
  name?: string | undefined;
@@ -1610,7 +1610,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1610
1610
  core?: {
1611
1611
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1612
1612
  } | undefined;
1613
- rules?: string[] | undefined;
1614
1613
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
1615
1614
  languages?: string[] | undefined;
1616
1615
  timeZone?: string | undefined;
@@ -1637,6 +1636,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1637
1636
  zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
1638
1637
  } | undefined;
1639
1638
  } | undefined;
1639
+ rules?: string[] | undefined;
1640
1640
  } | null)[] | undefined;
1641
1641
  thumbnails?: string[] | undefined;
1642
1642
  mission?: {
@@ -2021,7 +2021,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2021
2021
  maxLength: number;
2022
2022
  }>, "many">>;
2023
2023
  gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
2024
- core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
2024
+ core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
2025
2025
  name: z.ZodString;
2026
2026
  appearance: z.ZodString;
2027
2027
  images: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2040,7 +2040,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2040
2040
  }, "strip", z.ZodTypeAny, {
2041
2041
  name: string;
2042
2042
  appearance: string;
2043
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
2043
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
2044
2044
  images?: {
2045
2045
  description: string;
2046
2046
  name?: string | undefined;
@@ -2049,7 +2049,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2049
2049
  }, {
2050
2050
  name: string;
2051
2051
  appearance: string;
2052
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
2052
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
2053
2053
  images?: {
2054
2054
  description: string;
2055
2055
  name?: string | undefined;
@@ -2058,16 +2058,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
2058
2058
  }>, "many">>;
2059
2059
  }, "strict", z.ZodTypeAny, {
2060
2060
  name?: string | undefined;
2061
- thumbnail?: string | null | undefined;
2062
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2061
+ description?: string | undefined;
2063
2062
  core?: {
2064
2063
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
2065
2064
  sequential?: boolean | undefined;
2066
2065
  interval?: number | undefined;
2067
2066
  maxAgentExecutions?: number | null | undefined;
2068
2067
  } | undefined;
2069
- description?: string | undefined;
2070
2068
  rules?: string[] | undefined;
2069
+ thumbnail?: string | null | undefined;
2070
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2071
2071
  canvases?: {
2072
2072
  name: string;
2073
2073
  description: string;
@@ -2081,7 +2081,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2081
2081
  gimmicks?: {
2082
2082
  name: string;
2083
2083
  appearance: string;
2084
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
2084
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
2085
2085
  images?: {
2086
2086
  description: string;
2087
2087
  name?: string | undefined;
@@ -2090,16 +2090,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
2090
2090
  }[] | undefined;
2091
2091
  }, {
2092
2092
  name?: string | undefined;
2093
- thumbnail?: string | null | undefined;
2094
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2093
+ description?: string | undefined;
2095
2094
  core?: {
2096
2095
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
2097
2096
  sequential?: boolean | undefined;
2098
2097
  interval?: number | undefined;
2099
2098
  maxAgentExecutions?: number | null | undefined;
2100
2099
  } | undefined;
2101
- description?: string | undefined;
2102
2100
  rules?: string[] | undefined;
2101
+ thumbnail?: string | null | undefined;
2102
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2103
2103
  canvases?: {
2104
2104
  name: string;
2105
2105
  description: string;
@@ -2113,7 +2113,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2113
2113
  gimmicks?: {
2114
2114
  name: string;
2115
2115
  appearance: string;
2116
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
2116
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
2117
2117
  images?: {
2118
2118
  description: string;
2119
2119
  name?: string | undefined;
@@ -2128,16 +2128,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
2128
2128
  }, "strip", z.ZodTypeAny, {
2129
2129
  config: {
2130
2130
  name?: string | undefined;
2131
- thumbnail?: string | null | undefined;
2132
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2131
+ description?: string | undefined;
2133
2132
  core?: {
2134
2133
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
2135
2134
  sequential?: boolean | undefined;
2136
2135
  interval?: number | undefined;
2137
2136
  maxAgentExecutions?: number | null | undefined;
2138
2137
  } | undefined;
2139
- description?: string | undefined;
2140
2138
  rules?: string[] | undefined;
2139
+ thumbnail?: string | null | undefined;
2140
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2141
2141
  canvases?: {
2142
2142
  name: string;
2143
2143
  description: string;
@@ -2151,7 +2151,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2151
2151
  gimmicks?: {
2152
2152
  name: string;
2153
2153
  appearance: string;
2154
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
2154
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
2155
2155
  images?: {
2156
2156
  description: string;
2157
2157
  name?: string | undefined;
@@ -2163,16 +2163,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
2163
2163
  }, {
2164
2164
  config: {
2165
2165
  name?: string | undefined;
2166
- thumbnail?: string | null | undefined;
2167
- environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2166
+ description?: string | undefined;
2168
2167
  core?: {
2169
2168
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
2170
2169
  sequential?: boolean | undefined;
2171
2170
  interval?: number | undefined;
2172
2171
  maxAgentExecutions?: number | null | undefined;
2173
2172
  } | undefined;
2174
- description?: string | undefined;
2175
2173
  rules?: string[] | undefined;
2174
+ thumbnail?: string | null | undefined;
2175
+ environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
2176
2176
  canvases?: {
2177
2177
  name: string;
2178
2178
  description: string;
@@ -2186,7 +2186,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
2186
2186
  gimmicks?: {
2187
2187
  name: string;
2188
2188
  appearance: string;
2189
- core: "web_search" | "image_generator" | "character_image_generator" | "notion";
2189
+ core: "notion" | "web_search" | "image_generator" | "character_image_generator";
2190
2190
  images?: {
2191
2191
  description: string;
2192
2192
  name?: string | undefined;
@@ -2242,8 +2242,8 @@ export declare const GetAgentHelperLocationQuerySchema: z.ZodObject<{
2242
2242
  readonly MINIMO: "MINIMO";
2243
2243
  }>>>;
2244
2244
  }, "strip", z.ZodTypeAny, {
2245
- platform: "API" | "MINIMO";
2246
2245
  agentId: bigint;
2246
+ platform: "API" | "MINIMO";
2247
2247
  }, {
2248
2248
  agentId: bigint;
2249
2249
  platform?: "API" | "MINIMO" | undefined;
@@ -2276,8 +2276,8 @@ export declare const GetAgentDmLocationQuerySchema: z.ZodObject<{
2276
2276
  readonly MINIMO: "MINIMO";
2277
2277
  }>>>;
2278
2278
  }, "strip", z.ZodTypeAny, {
2279
- platform: "API" | "MINIMO";
2280
2279
  agentId: bigint;
2280
+ platform: "API" | "MINIMO";
2281
2281
  }, {
2282
2282
  agentId: bigint;
2283
2283
  platform?: "API" | "MINIMO" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@little-samo/samo-ai-sdk",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "SamoAI SDK",
5
5
  "license": "MIT",
6
6
  "repository": {