@little-samo/samo-ai-sdk 0.2.1-rv9 → 0.3.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.
@@ -149,8 +149,8 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
149
149
  core?: {
150
150
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
151
151
  } | undefined;
152
- appearance?: string | undefined;
153
152
  rules?: string[] | undefined;
153
+ appearance?: string | undefined;
154
154
  avatar?: string | undefined;
155
155
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
156
156
  languages?: string[] | undefined;
@@ -182,8 +182,8 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
182
182
  core?: {
183
183
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
184
184
  } | undefined;
185
- appearance?: string | undefined;
186
185
  rules?: string[] | undefined;
186
+ appearance?: string | undefined;
187
187
  avatar?: string | undefined;
188
188
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
189
189
  languages?: string[] | undefined;
@@ -217,8 +217,8 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
217
217
  core?: {
218
218
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
219
219
  } | undefined;
220
- appearance?: string | undefined;
221
220
  rules?: string[] | undefined;
221
+ appearance?: string | undefined;
222
222
  avatar?: string | undefined;
223
223
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
224
224
  languages?: string[] | undefined;
@@ -253,8 +253,8 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
253
253
  core?: {
254
254
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
255
255
  } | undefined;
256
- appearance?: string | undefined;
257
256
  rules?: string[] | undefined;
257
+ appearance?: string | undefined;
258
258
  avatar?: string | undefined;
259
259
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
260
260
  languages?: string[] | undefined;
@@ -477,8 +477,8 @@ export declare const CreateAgentSchema: z.ZodObject<{
477
477
  core?: {
478
478
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
479
479
  } | undefined;
480
- appearance?: string | undefined;
481
480
  rules?: string[] | undefined;
481
+ appearance?: string | undefined;
482
482
  avatar?: string | undefined;
483
483
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
484
484
  languages?: string[] | undefined;
@@ -510,8 +510,8 @@ export declare const CreateAgentSchema: z.ZodObject<{
510
510
  core?: {
511
511
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
512
512
  } | undefined;
513
- appearance?: string | undefined;
514
513
  rules?: string[] | undefined;
514
+ appearance?: string | undefined;
515
515
  avatar?: string | undefined;
516
516
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
517
517
  languages?: string[] | undefined;
@@ -545,8 +545,8 @@ export declare const CreateAgentSchema: z.ZodObject<{
545
545
  core?: {
546
546
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
547
547
  } | undefined;
548
- appearance?: string | undefined;
549
548
  rules?: string[] | undefined;
549
+ appearance?: string | undefined;
550
550
  avatar?: string | undefined;
551
551
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
552
552
  languages?: string[] | undefined;
@@ -580,8 +580,8 @@ export declare const CreateAgentSchema: z.ZodObject<{
580
580
  core?: {
581
581
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
582
582
  } | undefined;
583
- appearance?: string | undefined;
584
583
  rules?: string[] | undefined;
584
+ appearance?: string | undefined;
585
585
  avatar?: string | undefined;
586
586
  llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
587
587
  languages?: string[] | undefined;
@@ -2,7 +2,7 @@ import { z } from 'zod';
2
2
  export declare const GimmickCoreDescriptions: {
3
3
  readonly web_search: "Searches the web for up-to-date or missing information using an LLM, providing both a summary and detailed results. Execution takes approximately 30 seconds";
4
4
  readonly image_generator: "Generates an image using an LLM based on text prompts and optional reference images. Execution takes approximately 30 seconds";
5
- readonly character_image_generator: "Generates consistent anime-style character images using Stable Diffusion with gimmick appearance configuration as common prompt. Can optionally select one description from images array to combine with the common prompt for enhanced image generation while maintaining character identity and physical traits";
5
+ readonly character_image_generator: "Generates consistent character images by using the gimmick's appearance configuration as a common prompt, which helps maintain character identity and physical traits. The style, defaulting to \"anime style\", can be customized in the appearance settings with comma-separated values. Supported values include \"realistic\" for a photorealistic style. Can optionally select one description from the images array to combine with the common prompt for enhanced image generation.";
6
6
  readonly notion: "Interacts with Notion platform for content management and collaboration";
7
7
  };
8
8
  export type GimmickCore = keyof typeof GimmickCoreDescriptions;
@@ -5,7 +5,7 @@ const zod_1 = require("zod");
5
5
  exports.GimmickCoreDescriptions = {
6
6
  web_search: 'Searches the web for up-to-date or missing information using an LLM, providing both a summary and detailed results. Execution takes approximately 30 seconds',
7
7
  image_generator: 'Generates an image using an LLM based on text prompts and optional reference images. Execution takes approximately 30 seconds',
8
- character_image_generator: 'Generates consistent anime-style character images using Stable Diffusion with gimmick appearance configuration as common prompt. Can optionally select one description from images array to combine with the common prompt for enhanced image generation while maintaining character identity and physical traits',
8
+ character_image_generator: 'Generates consistent character images by using the gimmick\'s appearance configuration as a common prompt, which helps maintain character identity and physical traits. The style, defaulting to "anime style", can be customized in the appearance settings with comma-separated values. Supported values include "realistic" for a photorealistic style. Can optionally select one description from the images array to combine with the common prompt for enhanced image generation.',
9
9
  notion: 'Interacts with Notion platform for content management and collaboration',
10
10
  };
11
11
  exports.GimmickCoreSchema = zod_1.z.union(Object.keys(exports.GimmickCoreDescriptions).map((key) => zod_1.z.literal(key).describe(exports.GimmickCoreDescriptions[key])));
@@ -1 +1 @@
1
- {"version":3,"file":"gimmick.config.js","sourceRoot":"","sources":["../../../../src/dto/entities/gimmicks/gimmick.config.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,uBAAuB,GAAG;IACrC,UAAU,EACR,8JAA8J;IAChK,eAAe,EACb,+HAA+H;IACjI,yBAAyB,EACvB,mTAAmT;IACrT,MAAM,EACJ,yEAAyE;CACnE,CAAC;AAIE,QAAA,iBAAiB,GAAG,OAAC,CAAC,KAAK,CACtC,MAAM,CAAC,IAAI,CAAC,+BAAuB,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAC/C,OAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,+BAAuB,CAAC,GAAkB,CAAC,CAAC,CAKrE,CACF,CAAC"}
1
+ {"version":3,"file":"gimmick.config.js","sourceRoot":"","sources":["../../../../src/dto/entities/gimmicks/gimmick.config.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,uBAAuB,GAAG;IACrC,UAAU,EACR,8JAA8J;IAChK,eAAe,EACb,+HAA+H;IACjI,yBAAyB,EACvB,ydAAyd;IAC3d,MAAM,EACJ,yEAAyE;CACnE,CAAC;AAIE,QAAA,iBAAiB,GAAG,OAAC,CAAC,KAAK,CACtC,MAAM,CAAC,IAAI,CAAC,+BAAuB,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAC/C,OAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,+BAAuB,CAAC,GAAkB,CAAC,CAAC,CAKrE,CACF,CAAC"}
@@ -12,16 +12,16 @@ export declare const UpdateCurrentUserBodySchema: z.ZodObject<{
12
12
  appearance: z.ZodOptional<z.ZodString>;
13
13
  isAllowSensitive: z.ZodOptional<z.ZodBoolean>;
14
14
  }, "strip", z.ZodTypeAny, {
15
+ appearance?: string | undefined;
16
+ birthDate?: Date | undefined;
15
17
  username?: string | undefined;
16
18
  nickname?: string | undefined;
17
- birthDate?: Date | undefined;
18
- appearance?: string | undefined;
19
19
  isAllowSensitive?: boolean | undefined;
20
20
  }, {
21
+ appearance?: string | undefined;
22
+ birthDate?: Date | undefined;
21
23
  username?: string | undefined;
22
24
  nickname?: string | undefined;
23
- birthDate?: Date | undefined;
24
- appearance?: string | undefined;
25
25
  isAllowSensitive?: boolean | undefined;
26
26
  }>;
27
27
  export type UpdateCurrentUserBodyDto = z.infer<typeof UpdateCurrentUserBodySchema>;
@@ -39,6 +39,7 @@ export interface LocationPublicDto {
39
39
  export interface LocationPrivateDto extends LocationPublicDto {
40
40
  config: LocationConfig | null;
41
41
  credentialTypes: string[];
42
+ overrideAgentLlmLevel: 'FREE' | 'LOW' | 'MEDIUM' | 'HIGH' | null;
42
43
  isEditable: boolean;
43
44
  }
44
45
  export interface LocationListItemDto extends LocationPublicDto {
@@ -5,6 +5,8 @@ export declare const LocationEventType: {
5
5
  readonly AgentJoined: "AgentJoined";
6
6
  readonly AgentLeft: "AgentLeft";
7
7
  readonly AgentExecuting: "AgentExecuting";
8
+ readonly AgentSendMessageStream: "AgentSendMessageStream";
9
+ readonly AgentExecuteNextAction: "AgentExecuteNextAction";
8
10
  readonly AgentExecuted: "AgentExecuted";
9
11
  readonly UserJoined: "UserJoined";
10
12
  readonly UserLeft: "UserLeft";
@@ -15,6 +17,7 @@ export declare const LocationEventType: {
15
17
  readonly MessageProcessed: "MessageProcessed";
16
18
  readonly RenderingUpdated: "RenderingUpdated";
17
19
  readonly CanvasUpdated: "CanvasUpdated";
20
+ readonly CanvasCleared: "CanvasCleared";
18
21
  readonly PauseUpdateUntilUpdated: "PauseUpdateUntilUpdated";
19
22
  readonly LocationUpdated: "LocationUpdated";
20
23
  };
@@ -28,6 +31,18 @@ export interface LocationAgentExecutingEventDto extends LocationEventDtoBase {
28
31
  type: typeof LocationEventType.AgentExecuting;
29
32
  agentId: AgentId;
30
33
  }
34
+ export interface LocationAgentSendMessageStreamEventDto extends LocationEventDtoBase {
35
+ type: typeof LocationEventType.AgentSendMessageStream;
36
+ agentId: AgentId;
37
+ index: number;
38
+ sequence: number;
39
+ delta: string;
40
+ }
41
+ export interface LocationAgentExecuteNextActionEventDto extends LocationEventDtoBase {
42
+ type: typeof LocationEventType.AgentExecuteNextAction;
43
+ agentId: AgentId;
44
+ index: number;
45
+ }
31
46
  export interface LocationAgentExecutedEventDto extends LocationEventDtoBase {
32
47
  type: typeof LocationEventType.AgentExecuted;
33
48
  agentId: AgentId;
@@ -82,6 +97,9 @@ export interface LocationCanvasUpdatedEventDto extends LocationEventDtoBase {
82
97
  name: string;
83
98
  canvas: LocationCanvasDto;
84
99
  }
100
+ export interface LocationCanvasClearedEventDto extends LocationEventDtoBase {
101
+ type: typeof LocationEventType.CanvasCleared;
102
+ }
85
103
  export interface LocationPauseUpdateUntilUpdatedEventDto extends LocationEventDtoBase {
86
104
  type: typeof LocationEventType.PauseUpdateUntilUpdated;
87
105
  pauseUpdateUntil: Date | null;
@@ -90,4 +108,4 @@ export interface LocationPauseUpdateUntilUpdatedEventDto extends LocationEventDt
90
108
  export interface LocationUpdatedEventDto extends LocationEventDtoBase {
91
109
  type: typeof LocationEventType.LocationUpdated;
92
110
  }
93
- export type LocationEventDto = LocationAgentExecutingEventDto | LocationAgentExecutedEventDto | LocationAgentJoinedEventDto | LocationAgentLeftEventDto | LocationUserJoinedEventDto | LocationUserLeftEventDto | LocationGimmickExecutingEventDto | LocationGimmickExecutedEventDto | LocationAddMessageEventDto | LocationUpdateMessageEventDto | LocationMessageProcessedEventDto | LocationRenderingUpdatedEventDto | LocationCanvasUpdatedEventDto | LocationPauseUpdateUntilUpdatedEventDto | LocationUpdatedEventDto;
111
+ export type LocationEventDto = LocationAgentExecutingEventDto | LocationAgentSendMessageStreamEventDto | LocationAgentExecuteNextActionEventDto | LocationAgentExecutedEventDto | LocationAgentJoinedEventDto | LocationAgentLeftEventDto | LocationUserJoinedEventDto | LocationUserLeftEventDto | LocationGimmickExecutingEventDto | LocationGimmickExecutedEventDto | LocationAddMessageEventDto | LocationUpdateMessageEventDto | LocationMessageProcessedEventDto | LocationRenderingUpdatedEventDto | LocationCanvasUpdatedEventDto | LocationCanvasClearedEventDto | LocationPauseUpdateUntilUpdatedEventDto | LocationUpdatedEventDto;
@@ -5,6 +5,8 @@ exports.LocationEventType = {
5
5
  AgentJoined: 'AgentJoined',
6
6
  AgentLeft: 'AgentLeft',
7
7
  AgentExecuting: 'AgentExecuting',
8
+ AgentSendMessageStream: 'AgentSendMessageStream',
9
+ AgentExecuteNextAction: 'AgentExecuteNextAction',
8
10
  AgentExecuted: 'AgentExecuted',
9
11
  UserJoined: 'UserJoined',
10
12
  UserLeft: 'UserLeft',
@@ -15,6 +17,7 @@ exports.LocationEventType = {
15
17
  MessageProcessed: 'MessageProcessed',
16
18
  RenderingUpdated: 'RenderingUpdated',
17
19
  CanvasUpdated: 'CanvasUpdated',
20
+ CanvasCleared: 'CanvasCleared',
18
21
  PauseUpdateUntilUpdated: 'PauseUpdateUntilUpdated',
19
22
  LocationUpdated: 'LocationUpdated',
20
23
  };
@@ -1 +1 @@
1
- {"version":3,"file":"location.events.js","sourceRoot":"","sources":["../../../src/dto/locations/location.events.ts"],"names":[],"mappings":";;;AAKa,QAAA,iBAAiB,GAAG;IAC/B,WAAW,EAAE,aAAa;IAC1B,SAAS,EAAE,WAAW;IACtB,cAAc,EAAE,gBAAgB;IAChC,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,gBAAgB,EAAE,kBAAkB;IACpC,eAAe,EAAE,iBAAiB;IAClC,UAAU,EAAE,YAAY;IACxB,aAAa,EAAE,eAAe;IAC9B,gBAAgB,EAAE,kBAAkB;IACpC,gBAAgB,EAAE,kBAAkB;IACpC,aAAa,EAAE,eAAe;IAC9B,uBAAuB,EAAE,yBAAyB;IAClD,eAAe,EAAE,iBAAiB;CAC1B,CAAC"}
1
+ {"version":3,"file":"location.events.js","sourceRoot":"","sources":["../../../src/dto/locations/location.events.ts"],"names":[],"mappings":";;;AAKa,QAAA,iBAAiB,GAAG;IAC/B,WAAW,EAAE,aAAa;IAC1B,SAAS,EAAE,WAAW;IACtB,cAAc,EAAE,gBAAgB;IAChC,sBAAsB,EAAE,wBAAwB;IAChD,sBAAsB,EAAE,wBAAwB;IAChD,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,gBAAgB,EAAE,kBAAkB;IACpC,eAAe,EAAE,iBAAiB;IAClC,UAAU,EAAE,YAAY;IACxB,aAAa,EAAE,eAAe;IAC9B,gBAAgB,EAAE,kBAAkB;IACpC,gBAAgB,EAAE,kBAAkB;IACpC,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,uBAAuB,EAAE,yBAAyB;IAClD,eAAe,EAAE,iBAAiB;CAC1B,CAAC"}
@@ -1,4 +1,4 @@
1
- import { UserId } from '@little-samo/samo-ai';
1
+ import { LocationId, UserId } from '@little-samo/samo-ai';
2
2
  import z from 'zod';
3
3
  import type { LocationConfigCanvas } from '@little-samo/samo-ai-sdk/models';
4
4
  import type { AgentCostDto, AgentPublicDto, GimmickCostDto, GimmickPublicDto } from '../entities';
@@ -13,12 +13,12 @@ export declare const LocationPresetMessageSchema: z.ZodObject<{
13
13
  message: z.ZodOptional<z.ZodString>;
14
14
  image: z.ZodOptional<z.ZodString>;
15
15
  }, "strip", z.ZodTypeAny, {
16
- entityType: "system" | "agent" | "user" | "gimmick";
16
+ entityType: "user" | "system" | "agent" | "gimmick";
17
17
  entityId: bigint;
18
18
  message?: string | undefined;
19
19
  image?: string | undefined;
20
20
  }, {
21
- entityType: "system" | "agent" | "user" | "gimmick";
21
+ entityType: "user" | "system" | "agent" | "gimmick";
22
22
  entityId: bigint;
23
23
  message?: string | undefined;
24
24
  image?: string | undefined;
@@ -28,20 +28,23 @@ export declare const LocationPresetCanvasSchema: z.ZodObject<{
28
28
  name: z.ZodString;
29
29
  text: z.ZodString;
30
30
  }, "strip", z.ZodTypeAny, {
31
- name: string;
32
31
  text: string;
33
- }, {
34
32
  name: string;
33
+ }, {
35
34
  text: string;
35
+ name: string;
36
36
  }>;
37
37
  export type LocationPresetCanvasDto = z.infer<typeof LocationPresetCanvasSchema>;
38
38
  export interface LocationPresetDto {
39
39
  id: bigint;
40
40
  name: string;
41
+ version: number;
42
+ versionUpdatedAt: Date;
41
43
  presetDescription: string;
42
44
  presetShortDescription: string;
43
45
  thumbnail: string | null;
44
46
  ownerUserId: UserId | null;
47
+ sourceLocationId: LocationId | null;
45
48
  agents: AgentPublicDto[];
46
49
  agentCosts: AgentCostDto[];
47
50
  gimmicks: GimmickPublicDto[];
@@ -52,6 +55,7 @@ export interface LocationPresetDto {
52
55
  isPublished: boolean;
53
56
  publishedAt: Date | null;
54
57
  hashtags: string[];
58
+ likeCount: number;
55
59
  isPublic: boolean;
56
60
  isAllowImport: boolean;
57
61
  isSensitive: boolean;
@@ -59,6 +63,7 @@ export interface LocationPresetDto {
59
63
  updatedAt: Date;
60
64
  }
61
65
  export interface LocationPresetDetailDto extends LocationPresetDto {
66
+ userRating: 'LIKE' | 'DISLIKE' | null;
62
67
  locationCount: number;
63
68
  totalUsedCredit: number;
64
69
  totalMessageCount: number;
@@ -1 +1 @@
1
- {"version":3,"file":"location.preset.js","sourceRoot":"","sources":["../../../src/dto/locations/location.preset.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0D;AAC1D,8CAAoB;AAWP,QAAA,2BAA2B,GAAG,aAAC,CAAC,MAAM,CAAC;IAClD,UAAU,EAAE,aAAC,CAAC,UAAU,CAAC,oBAAU,CAAC;IACpC,QAAQ,EAAE,aAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IAE3B,OAAO,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,aAAC;SACL,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;SACpB,QAAQ,EAAE;CACd,CAAC,CAAC;AAMU,QAAA,0BAA0B,GAAG,aAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;IACxB,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;CAC3B,CAAC,CAAC"}
1
+ {"version":3,"file":"location.preset.js","sourceRoot":"","sources":["../../../src/dto/locations/location.preset.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAsE;AACtE,8CAAoB;AAWP,QAAA,2BAA2B,GAAG,aAAC,CAAC,MAAM,CAAC;IAClD,UAAU,EAAE,aAAC,CAAC,UAAU,CAAC,oBAAU,CAAC;IACpC,QAAQ,EAAE,aAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IAE3B,OAAO,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,aAAC;SACL,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;SACpB,QAAQ,EAAE;CACd,CAAC,CAAC;AAMU,QAAA,0BAA0B,GAAG,aAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;IACxB,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;CAC3B,CAAC,CAAC"}
@@ -127,12 +127,12 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
127
127
  description: z.ZodString;
128
128
  }, "strip", z.ZodTypeAny, {
129
129
  description: string;
130
- name?: string | undefined;
131
130
  url?: string | undefined;
131
+ name?: string | undefined;
132
132
  }, {
133
133
  description: string;
134
- name?: string | undefined;
135
134
  url?: string | undefined;
135
+ name?: string | undefined;
136
136
  }>, "many">>;
137
137
  }, "strip", z.ZodTypeAny, {
138
138
  name: string;
@@ -140,8 +140,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
140
140
  appearance: string;
141
141
  images?: {
142
142
  description: string;
143
- name?: string | undefined;
144
143
  url?: string | undefined;
144
+ name?: string | undefined;
145
145
  }[] | undefined;
146
146
  }, {
147
147
  name: string;
@@ -149,21 +149,21 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
149
149
  appearance: string;
150
150
  images?: {
151
151
  description: string;
152
- name?: string | undefined;
153
152
  url?: string | undefined;
153
+ name?: string | undefined;
154
154
  }[] | undefined;
155
155
  }>, "many">>;
156
156
  }, "strict", z.ZodTypeAny, {
157
157
  name?: string | undefined;
158
158
  description?: string | undefined;
159
+ thumbnail?: string | null | undefined;
160
+ environment?: "CHAT" | "NOVEL" | undefined;
159
161
  core?: {
160
162
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
161
163
  sequential?: boolean | undefined;
162
164
  interval?: number | undefined;
163
165
  maxAgentExecutions?: number | null | undefined;
164
166
  } | undefined;
165
- thumbnail?: string | null | undefined;
166
- environment?: "CHAT" | "NOVEL" | undefined;
167
167
  rules?: string[] | undefined;
168
168
  canvases?: {
169
169
  name: string;
@@ -181,21 +181,21 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
181
181
  appearance: string;
182
182
  images?: {
183
183
  description: string;
184
- name?: string | undefined;
185
184
  url?: string | undefined;
185
+ name?: string | undefined;
186
186
  }[] | undefined;
187
187
  }[] | undefined;
188
188
  }, {
189
189
  name?: string | undefined;
190
190
  description?: string | undefined;
191
+ thumbnail?: string | null | undefined;
192
+ environment?: "CHAT" | "NOVEL" | undefined;
191
193
  core?: {
192
194
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
193
195
  sequential?: boolean | undefined;
194
196
  interval?: number | undefined;
195
197
  maxAgentExecutions?: number | null | undefined;
196
198
  } | undefined;
197
- thumbnail?: string | null | undefined;
198
- environment?: "CHAT" | "NOVEL" | undefined;
199
199
  rules?: string[] | undefined;
200
200
  canvases?: {
201
201
  name: string;
@@ -213,8 +213,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
213
213
  appearance: string;
214
214
  images?: {
215
215
  description: string;
216
- name?: string | undefined;
217
216
  url?: string | undefined;
217
+ name?: string | undefined;
218
218
  }[] | undefined;
219
219
  }[] | undefined;
220
220
  }>;
@@ -223,14 +223,14 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
223
223
  config: {
224
224
  name?: string | undefined;
225
225
  description?: string | undefined;
226
+ thumbnail?: string | null | undefined;
227
+ environment?: "CHAT" | "NOVEL" | undefined;
226
228
  core?: {
227
229
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
228
230
  sequential?: boolean | undefined;
229
231
  interval?: number | undefined;
230
232
  maxAgentExecutions?: number | null | undefined;
231
233
  } | undefined;
232
- thumbnail?: string | null | undefined;
233
- environment?: "CHAT" | "NOVEL" | undefined;
234
234
  rules?: string[] | undefined;
235
235
  canvases?: {
236
236
  name: string;
@@ -248,8 +248,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
248
248
  appearance: string;
249
249
  images?: {
250
250
  description: string;
251
- name?: string | undefined;
252
251
  url?: string | undefined;
252
+ name?: string | undefined;
253
253
  }[] | undefined;
254
254
  }[] | undefined;
255
255
  };
@@ -258,14 +258,14 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
258
258
  config: {
259
259
  name?: string | undefined;
260
260
  description?: string | undefined;
261
+ thumbnail?: string | null | undefined;
262
+ environment?: "CHAT" | "NOVEL" | undefined;
261
263
  core?: {
262
264
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
263
265
  sequential?: boolean | undefined;
264
266
  interval?: number | undefined;
265
267
  maxAgentExecutions?: number | null | undefined;
266
268
  } | undefined;
267
- thumbnail?: string | null | undefined;
268
- environment?: "CHAT" | "NOVEL" | undefined;
269
269
  rules?: string[] | undefined;
270
270
  canvases?: {
271
271
  name: string;
@@ -283,8 +283,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
283
283
  appearance: string;
284
284
  images?: {
285
285
  description: string;
286
- name?: string | undefined;
287
286
  url?: string | undefined;
287
+ name?: string | undefined;
288
288
  }[] | undefined;
289
289
  }[] | undefined;
290
290
  };
@@ -415,11 +415,11 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
415
415
  name: z.ZodString;
416
416
  text: z.ZodString;
417
417
  }, "strip", z.ZodTypeAny, {
418
- name: string;
419
418
  text: string;
420
- }, {
421
419
  name: string;
420
+ }, {
422
421
  text: string;
422
+ name: string;
423
423
  }>, "many">>;
424
424
  messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
425
425
  entityType: z.ZodNativeEnum<{
@@ -432,12 +432,12 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
432
432
  message: z.ZodOptional<z.ZodString>;
433
433
  image: z.ZodOptional<z.ZodString>;
434
434
  }, "strip", z.ZodTypeAny, {
435
- entityType: "system" | "agent" | "user" | "gimmick";
435
+ entityType: "user" | "system" | "agent" | "gimmick";
436
436
  entityId: bigint;
437
437
  message?: string | undefined;
438
438
  image?: string | undefined;
439
439
  }, {
440
- entityType: "system" | "agent" | "user" | "gimmick";
440
+ entityType: "user" | "system" | "agent" | "gimmick";
441
441
  entityId: bigint;
442
442
  message?: string | undefined;
443
443
  image?: string | undefined;
@@ -451,12 +451,12 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
451
451
  presetShortDescription: string;
452
452
  name?: string | undefined;
453
453
  canvases?: {
454
- name: string;
455
454
  text: string;
455
+ name: string;
456
456
  }[] | undefined;
457
457
  visibility?: "private" | "public" | "publish" | undefined;
458
458
  messages?: {
459
- entityType: "system" | "agent" | "user" | "gimmick";
459
+ entityType: "user" | "system" | "agent" | "gimmick";
460
460
  entityId: bigint;
461
461
  message?: string | undefined;
462
462
  image?: string | undefined;
@@ -470,12 +470,12 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
470
470
  presetShortDescription: string;
471
471
  name?: string | undefined;
472
472
  canvases?: {
473
- name: string;
474
473
  text: string;
474
+ name: string;
475
475
  }[] | undefined;
476
476
  visibility?: "private" | "public" | "publish" | undefined;
477
477
  messages?: {
478
- entityType: "system" | "agent" | "user" | "gimmick";
478
+ entityType: "user" | "system" | "agent" | "gimmick";
479
479
  entityId: bigint;
480
480
  message?: string | undefined;
481
481
  image?: string | undefined;
@@ -516,11 +516,11 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
516
516
  name: z.ZodString;
517
517
  text: z.ZodString;
518
518
  }, "strip", z.ZodTypeAny, {
519
- name: string;
520
519
  text: string;
521
- }, {
522
520
  name: string;
521
+ }, {
523
522
  text: string;
523
+ name: string;
524
524
  }>, "many">>;
525
525
  messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
526
526
  entityType: z.ZodNativeEnum<{
@@ -533,12 +533,12 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
533
533
  message: z.ZodOptional<z.ZodString>;
534
534
  image: z.ZodOptional<z.ZodString>;
535
535
  }, "strip", z.ZodTypeAny, {
536
- entityType: "system" | "agent" | "user" | "gimmick";
536
+ entityType: "user" | "system" | "agent" | "gimmick";
537
537
  entityId: bigint;
538
538
  message?: string | undefined;
539
539
  image?: string | undefined;
540
540
  }, {
541
- entityType: "system" | "agent" | "user" | "gimmick";
541
+ entityType: "user" | "system" | "agent" | "gimmick";
542
542
  entityId: bigint;
543
543
  message?: string | undefined;
544
544
  image?: string | undefined;
@@ -549,14 +549,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
549
549
  }, "strip", z.ZodTypeAny, {
550
550
  name?: string | undefined;
551
551
  canvases?: {
552
- name: string;
553
552
  text: string;
553
+ name: string;
554
554
  }[] | undefined;
555
555
  visibility?: "private" | "public" | "publish" | undefined;
556
556
  presetDescription?: string | undefined;
557
557
  presetShortDescription?: string | undefined;
558
558
  messages?: {
559
- entityType: "system" | "agent" | "user" | "gimmick";
559
+ entityType: "user" | "system" | "agent" | "gimmick";
560
560
  entityId: bigint;
561
561
  message?: string | undefined;
562
562
  image?: string | undefined;
@@ -567,14 +567,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
567
567
  }, {
568
568
  name?: string | undefined;
569
569
  canvases?: {
570
- name: string;
571
570
  text: string;
571
+ name: string;
572
572
  }[] | undefined;
573
573
  visibility?: "private" | "public" | "publish" | undefined;
574
574
  presetDescription?: string | undefined;
575
575
  presetShortDescription?: string | undefined;
576
576
  messages?: {
577
- entityType: "system" | "agent" | "user" | "gimmick";
577
+ entityType: "user" | "system" | "agent" | "gimmick";
578
578
  entityId: bigint;
579
579
  message?: string | undefined;
580
580
  image?: string | undefined;
@@ -587,6 +587,37 @@ export type UpdateLocationPresetBodyDto = z.infer<typeof UpdateLocationPresetBod
587
587
  export interface UpdateLocationPresetResponseDto {
588
588
  preset: LocationPresetDto;
589
589
  }
590
+ export declare const SyncLocationPresetVersionParamsSchema: z.ZodObject<{
591
+ presetId: z.ZodBigInt;
592
+ }, "strip", z.ZodTypeAny, {
593
+ presetId: bigint;
594
+ }, {
595
+ presetId: bigint;
596
+ }>;
597
+ export type SyncLocationPresetVersionParamsDto = z.infer<typeof SyncLocationPresetVersionParamsSchema>;
598
+ export interface SyncLocationPresetVersionResponseDto {
599
+ preset: LocationPresetDto;
600
+ }
601
+ export declare const UpdateLocationPresetRatingParamsSchema: z.ZodObject<{
602
+ presetId: z.ZodBigInt;
603
+ }, "strip", z.ZodTypeAny, {
604
+ presetId: bigint;
605
+ }, {
606
+ presetId: bigint;
607
+ }>;
608
+ export type UpdateLocationPresetRatingParamsDto = z.infer<typeof UpdateLocationPresetRatingParamsSchema>;
609
+ export declare const UpdateLocationPresetRatingBodySchema: z.ZodObject<{
610
+ rating: z.ZodNullable<z.ZodEnum<["LIKE", "DISLIKE"]>>;
611
+ }, "strip", z.ZodTypeAny, {
612
+ rating: "LIKE" | "DISLIKE" | null;
613
+ }, {
614
+ rating: "LIKE" | "DISLIKE" | null;
615
+ }>;
616
+ export type UpdateLocationPresetRatingBodyDto = z.infer<typeof UpdateLocationPresetRatingBodySchema>;
617
+ export interface UpdateLocationPresetRatingResponseDto {
618
+ success: boolean;
619
+ error?: string;
620
+ }
590
621
  export declare const DeleteLocationPresetParamsSchema: z.ZodObject<{
591
622
  presetId: z.ZodBigInt;
592
623
  }, "strip", z.ZodTypeAny, {
@@ -679,12 +710,12 @@ export declare const CreateLocationSchema: z.ZodObject<{
679
710
  description: z.ZodString;
680
711
  }, "strip", z.ZodTypeAny, {
681
712
  description: string;
682
- name?: string | undefined;
683
713
  url?: string | undefined;
714
+ name?: string | undefined;
684
715
  }, {
685
716
  description: string;
686
- name?: string | undefined;
687
717
  url?: string | undefined;
718
+ name?: string | undefined;
688
719
  }>, "many">>;
689
720
  }, "strip", z.ZodTypeAny, {
690
721
  name: string;
@@ -692,8 +723,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
692
723
  appearance: string;
693
724
  images?: {
694
725
  description: string;
695
- name?: string | undefined;
696
726
  url?: string | undefined;
727
+ name?: string | undefined;
697
728
  }[] | undefined;
698
729
  }, {
699
730
  name: string;
@@ -701,21 +732,21 @@ export declare const CreateLocationSchema: z.ZodObject<{
701
732
  appearance: string;
702
733
  images?: {
703
734
  description: string;
704
- name?: string | undefined;
705
735
  url?: string | undefined;
736
+ name?: string | undefined;
706
737
  }[] | undefined;
707
738
  }>, "many">>;
708
739
  }, "strict", z.ZodTypeAny, {
709
740
  name?: string | undefined;
710
741
  description?: string | undefined;
742
+ thumbnail?: string | null | undefined;
743
+ environment?: "CHAT" | "NOVEL" | undefined;
711
744
  core?: {
712
745
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
713
746
  sequential?: boolean | undefined;
714
747
  interval?: number | undefined;
715
748
  maxAgentExecutions?: number | null | undefined;
716
749
  } | undefined;
717
- thumbnail?: string | null | undefined;
718
- environment?: "CHAT" | "NOVEL" | undefined;
719
750
  rules?: string[] | undefined;
720
751
  canvases?: {
721
752
  name: string;
@@ -733,21 +764,21 @@ export declare const CreateLocationSchema: z.ZodObject<{
733
764
  appearance: string;
734
765
  images?: {
735
766
  description: string;
736
- name?: string | undefined;
737
767
  url?: string | undefined;
768
+ name?: string | undefined;
738
769
  }[] | undefined;
739
770
  }[] | undefined;
740
771
  }, {
741
772
  name?: string | undefined;
742
773
  description?: string | undefined;
774
+ thumbnail?: string | null | undefined;
775
+ environment?: "CHAT" | "NOVEL" | undefined;
743
776
  core?: {
744
777
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
745
778
  sequential?: boolean | undefined;
746
779
  interval?: number | undefined;
747
780
  maxAgentExecutions?: number | null | undefined;
748
781
  } | undefined;
749
- thumbnail?: string | null | undefined;
750
- environment?: "CHAT" | "NOVEL" | undefined;
751
782
  rules?: string[] | undefined;
752
783
  canvases?: {
753
784
  name: string;
@@ -765,8 +796,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
765
796
  appearance: string;
766
797
  images?: {
767
798
  description: string;
768
- name?: string | undefined;
769
799
  url?: string | undefined;
800
+ name?: string | undefined;
770
801
  }[] | undefined;
771
802
  }[] | undefined;
772
803
  }>;
@@ -778,14 +809,14 @@ export declare const CreateLocationSchema: z.ZodObject<{
778
809
  config: {
779
810
  name?: string | undefined;
780
811
  description?: string | undefined;
812
+ thumbnail?: string | null | undefined;
813
+ environment?: "CHAT" | "NOVEL" | undefined;
781
814
  core?: {
782
815
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
783
816
  sequential?: boolean | undefined;
784
817
  interval?: number | undefined;
785
818
  maxAgentExecutions?: number | null | undefined;
786
819
  } | undefined;
787
- thumbnail?: string | null | undefined;
788
- environment?: "CHAT" | "NOVEL" | undefined;
789
820
  rules?: string[] | undefined;
790
821
  canvases?: {
791
822
  name: string;
@@ -803,8 +834,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
803
834
  appearance: string;
804
835
  images?: {
805
836
  description: string;
806
- name?: string | undefined;
807
837
  url?: string | undefined;
838
+ name?: string | undefined;
808
839
  }[] | undefined;
809
840
  }[] | undefined;
810
841
  };
@@ -813,14 +844,14 @@ export declare const CreateLocationSchema: z.ZodObject<{
813
844
  config: {
814
845
  name?: string | undefined;
815
846
  description?: string | undefined;
847
+ thumbnail?: string | null | undefined;
848
+ environment?: "CHAT" | "NOVEL" | undefined;
816
849
  core?: {
817
850
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
818
851
  sequential?: boolean | undefined;
819
852
  interval?: number | undefined;
820
853
  maxAgentExecutions?: number | null | undefined;
821
854
  } | undefined;
822
- thumbnail?: string | null | undefined;
823
- environment?: "CHAT" | "NOVEL" | undefined;
824
855
  rules?: string[] | undefined;
825
856
  canvases?: {
826
857
  name: string;
@@ -838,8 +869,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
838
869
  appearance: string;
839
870
  images?: {
840
871
  description: string;
841
- name?: string | undefined;
842
872
  url?: string | undefined;
873
+ name?: string | undefined;
843
874
  }[] | undefined;
844
875
  }[] | undefined;
845
876
  };
@@ -1182,6 +1213,7 @@ export declare const UpdateLocationParamsSchema: z.ZodObject<{
1182
1213
  }>;
1183
1214
  export type UpdateLocationParamsDto = z.infer<typeof UpdateLocationParamsSchema>;
1184
1215
  export declare const UpdateLocationBodySchema: z.ZodObject<{
1216
+ overrideAgentLlmLevel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FREE", "LOW", "MEDIUM", "HIGH"]>>>;
1185
1217
  visibility: z.ZodOptional<z.ZodEnum<["private", "public", "publish"]>>;
1186
1218
  maxUsers: z.ZodOptional<z.ZodNumber>;
1187
1219
  publishDescription: z.ZodOptional<z.ZodString>;
@@ -1195,6 +1227,7 @@ export declare const UpdateLocationBodySchema: z.ZodObject<{
1195
1227
  visibility?: "private" | "public" | "publish" | undefined;
1196
1228
  hashtags?: string[] | undefined;
1197
1229
  isSensitive?: boolean | undefined;
1230
+ overrideAgentLlmLevel?: "FREE" | "LOW" | "MEDIUM" | "HIGH" | null | undefined;
1198
1231
  maxUsers?: number | undefined;
1199
1232
  publishDescription?: string | undefined;
1200
1233
  useLocationCreditOnly?: boolean | undefined;
@@ -1205,6 +1238,7 @@ export declare const UpdateLocationBodySchema: z.ZodObject<{
1205
1238
  visibility?: "private" | "public" | "publish" | undefined;
1206
1239
  hashtags?: string[] | undefined;
1207
1240
  isSensitive?: boolean | undefined;
1241
+ overrideAgentLlmLevel?: "FREE" | "LOW" | "MEDIUM" | "HIGH" | null | undefined;
1208
1242
  maxUsers?: number | undefined;
1209
1243
  publishDescription?: string | undefined;
1210
1244
  useLocationCreditOnly?: boolean | undefined;
@@ -1229,11 +1263,11 @@ export declare const UpdateLocationCanvasBodySchema: z.ZodObject<{
1229
1263
  name: z.ZodString;
1230
1264
  text: z.ZodString;
1231
1265
  }, "strip", z.ZodTypeAny, {
1232
- name: string;
1233
1266
  text: string;
1234
- }, {
1235
1267
  name: string;
1268
+ }, {
1236
1269
  text: string;
1270
+ name: string;
1237
1271
  }>;
1238
1272
  export type UpdateLocationCanvasBodyDto = z.infer<typeof UpdateLocationCanvasBodySchema>;
1239
1273
  export interface UpdateLocationCanvasResponseDto {
@@ -1492,12 +1526,12 @@ export declare const UpdateLocationImageSchema: z.ZodObject<{
1492
1526
  image: z.ZodString;
1493
1527
  index: z.ZodOptional<z.ZodNumber>;
1494
1528
  }, "strip", z.ZodTypeAny, {
1495
- locationId: bigint;
1496
1529
  image: string;
1530
+ locationId: bigint;
1497
1531
  index?: number | undefined;
1498
1532
  }, {
1499
- locationId: bigint;
1500
1533
  image: string;
1534
+ locationId: bigint;
1501
1535
  index?: number | undefined;
1502
1536
  }>;
1503
1537
  export type UpdateLocationImageDto = z.infer<typeof UpdateLocationImageSchema>;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetLocationScheduledMessagesParamsSchema = exports.UpdateLocationCanvasBodySchema = exports.UpdateLocationCanvasParamsSchema = exports.UpdateLocationBodySchema = exports.UpdateLocationParamsSchema = exports.RemoveAgentFromLocationToolSchema = exports.RemoveAgentFromLocationBodySchema = exports.RemoveAgentFromLocationParamsSchema = exports.JoinAgentToLocationToolSchema = exports.JoinAgentToLocationBodySchema = exports.JoinAgentToLocationParamsSchema = exports.LocationUnreadCountParamsSchema = exports.MarkLocationAsReadParamsSchema = exports.GetLocationSnapshotParamsSchema = exports.CreateLocationSnapshotBodySchema = exports.CreateLocationSnapshotParamsSchema = exports.WithdrawCreditsBodySchema = exports.WithdrawCreditsParamsSchema = exports.DepositCreditsBodySchema = exports.DepositCreditsParamsSchema = exports.GetLocationContentParamsSchema = exports.UploadLocationThumbnailParamsSchema = exports.ResetLocationBodySchema = exports.ResetLocationParamsSchema = exports.GetLocationCostParamsSchema = exports.GetLocationPrivateParamsSchema = exports.DeleteLocationParamsSchema = exports.GetLocationParamsSchema = exports.GetAgentDmLocationQuerySchema = exports.GetLocationHelperLocationQuerySchema = exports.GetAgentHelperLocationQuerySchema = exports.GetHelperLocationQuerySchema = exports.CreateLocationFromPresetSchema = exports.CreateLocationSchema = exports.GetLocationPresetLocationsParamsSchema = exports.DeleteLocationPresetParamsSchema = exports.UpdateLocationPresetBodySchema = exports.UpdateLocationPresetParamsSchema = exports.GetLocationPresetParamsSchema = exports.CreateLocationPresetSchema = exports.TrendingLocationPresetsQuerySchema = exports.PublishedLocationPresetsQuerySchema = exports.LocationPresetsPaginationQuerySchema = exports.LocationDeleteCredentialSchema = exports.LocationUpdateCredentialSchema = exports.LocationUpdateConfigSchema = exports.LocationsUnreadCountQuerySchema = exports.TrendingLocationsQuerySchema = exports.PublishedLocationsQuerySchema = exports.UserLocationsQuerySchema = void 0;
4
- exports.ResumeLocationUpdateSchema = exports.PauseLocationUpdateSchema = exports.UpdateLocationAgentIsActiveSchema = exports.UpdateLocationRenderingSchema = exports.UpdateLocationImageSchema = exports.SendSystemMessageSchema = exports.SendLocationMessageSchema = exports.GetLocationMessagesSchema = exports.BanUserFromLocationSchema = exports.UnsubscribeLocationSchema = exports.SubscribeLocationSchema = exports.LeaveLocationSchema = exports.JoinLocationSchema = exports.DeleteLocationScheduledMessageToolSchema = exports.DeleteLocationScheduledMessageParamsSchema = exports.UpdateLocationScheduledMessageToolSchema = exports.UpdateLocationScheduledMessageBodySchema = exports.UpdateLocationScheduledMessageParamsSchema = exports.CreateLocationScheduledMessageToolSchema = exports.CreateLocationScheduledMessageBodySchema = exports.CreateLocationScheduledMessageParamsSchema = void 0;
3
+ exports.UpdateLocationBodySchema = exports.UpdateLocationParamsSchema = exports.RemoveAgentFromLocationToolSchema = exports.RemoveAgentFromLocationBodySchema = exports.RemoveAgentFromLocationParamsSchema = exports.JoinAgentToLocationToolSchema = exports.JoinAgentToLocationBodySchema = exports.JoinAgentToLocationParamsSchema = exports.LocationUnreadCountParamsSchema = exports.MarkLocationAsReadParamsSchema = exports.GetLocationSnapshotParamsSchema = exports.CreateLocationSnapshotBodySchema = exports.CreateLocationSnapshotParamsSchema = exports.WithdrawCreditsBodySchema = exports.WithdrawCreditsParamsSchema = exports.DepositCreditsBodySchema = exports.DepositCreditsParamsSchema = exports.GetLocationContentParamsSchema = exports.UploadLocationThumbnailParamsSchema = exports.ResetLocationBodySchema = exports.ResetLocationParamsSchema = exports.GetLocationCostParamsSchema = exports.GetLocationPrivateParamsSchema = exports.DeleteLocationParamsSchema = exports.GetLocationParamsSchema = exports.GetAgentDmLocationQuerySchema = exports.GetLocationHelperLocationQuerySchema = exports.GetAgentHelperLocationQuerySchema = exports.GetHelperLocationQuerySchema = exports.CreateLocationFromPresetSchema = exports.CreateLocationSchema = exports.GetLocationPresetLocationsParamsSchema = exports.DeleteLocationPresetParamsSchema = exports.UpdateLocationPresetRatingBodySchema = exports.UpdateLocationPresetRatingParamsSchema = exports.SyncLocationPresetVersionParamsSchema = exports.UpdateLocationPresetBodySchema = exports.UpdateLocationPresetParamsSchema = exports.GetLocationPresetParamsSchema = exports.CreateLocationPresetSchema = exports.TrendingLocationPresetsQuerySchema = exports.PublishedLocationPresetsQuerySchema = exports.LocationPresetsPaginationQuerySchema = exports.LocationDeleteCredentialSchema = exports.LocationUpdateCredentialSchema = exports.LocationUpdateConfigSchema = exports.LocationsUnreadCountQuerySchema = exports.TrendingLocationsQuerySchema = exports.PublishedLocationsQuerySchema = exports.UserLocationsQuerySchema = void 0;
4
+ exports.ResumeLocationUpdateSchema = exports.PauseLocationUpdateSchema = exports.UpdateLocationAgentIsActiveSchema = exports.UpdateLocationRenderingSchema = exports.UpdateLocationImageSchema = exports.SendSystemMessageSchema = exports.SendLocationMessageSchema = exports.GetLocationMessagesSchema = exports.BanUserFromLocationSchema = exports.UnsubscribeLocationSchema = exports.SubscribeLocationSchema = exports.LeaveLocationSchema = exports.JoinLocationSchema = exports.DeleteLocationScheduledMessageToolSchema = exports.DeleteLocationScheduledMessageParamsSchema = exports.UpdateLocationScheduledMessageToolSchema = exports.UpdateLocationScheduledMessageBodySchema = exports.UpdateLocationScheduledMessageParamsSchema = exports.CreateLocationScheduledMessageToolSchema = exports.CreateLocationScheduledMessageBodySchema = exports.CreateLocationScheduledMessageParamsSchema = exports.GetLocationScheduledMessagesParamsSchema = exports.UpdateLocationCanvasBodySchema = exports.UpdateLocationCanvasParamsSchema = void 0;
5
5
  const common_1 = require("@little-samo/samo-ai/common");
6
6
  const models_1 = require("@little-samo/samo-ai-sdk/models");
7
7
  const zod_1 = require("zod");
@@ -93,6 +93,15 @@ exports.UpdateLocationPresetBodySchema = zod_1.z.object({
93
93
  isAllowImport: zod_1.z.boolean().optional(),
94
94
  isSensitive: zod_1.z.boolean().optional(),
95
95
  });
96
+ exports.SyncLocationPresetVersionParamsSchema = zod_1.z.object({
97
+ presetId: zod_1.z.coerce.bigint(),
98
+ });
99
+ exports.UpdateLocationPresetRatingParamsSchema = zod_1.z.object({
100
+ presetId: zod_1.z.coerce.bigint(),
101
+ });
102
+ exports.UpdateLocationPresetRatingBodySchema = zod_1.z.object({
103
+ rating: zod_1.z.enum(['LIKE', 'DISLIKE']).nullable(),
104
+ });
96
105
  exports.DeleteLocationPresetParamsSchema = zod_1.z.object({
97
106
  presetId: zod_1.z.coerce.bigint(),
98
107
  });
@@ -226,6 +235,10 @@ exports.UpdateLocationParamsSchema = zod_1.z.object({
226
235
  locationId: zod_1.z.coerce.bigint(),
227
236
  });
228
237
  exports.UpdateLocationBodySchema = zod_1.z.object({
238
+ overrideAgentLlmLevel: zod_1.z
239
+ .enum(['FREE', 'LOW', 'MEDIUM', 'HIGH'])
240
+ .nullable()
241
+ .optional(),
229
242
  visibility: zod_1.z.enum(['private', 'public', 'publish']).optional(),
230
243
  maxUsers: zod_1.z.number().int().min(1).max(99).optional(),
231
244
  publishDescription: zod_1.z.string().max(500).optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"location.requests.js","sourceRoot":"","sources":["../../../src/dto/locations/location.requests.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"location.requests.js","sourceRoot":"","sources":["../../../src/dto/locations/location.requests.ts"],"names":[],"mappings":"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"}
@@ -37,12 +37,12 @@ export declare const LocationConfigGimmickImageSchema: z.ZodObject<{
37
37
  description: z.ZodString;
38
38
  }, "strip", z.ZodTypeAny, {
39
39
  description: string;
40
- name?: string | undefined;
41
40
  url?: string | undefined;
41
+ name?: string | undefined;
42
42
  }, {
43
43
  description: string;
44
- name?: string | undefined;
45
44
  url?: string | undefined;
45
+ name?: string | undefined;
46
46
  }>;
47
47
  export type LocationConfigGimmickImage = z.infer<typeof LocationConfigGimmickImageSchema>;
48
48
  export declare const LocationConfigGimmickSchema: z.ZodObject<{
@@ -55,12 +55,12 @@ export declare const LocationConfigGimmickSchema: z.ZodObject<{
55
55
  description: z.ZodString;
56
56
  }, "strip", z.ZodTypeAny, {
57
57
  description: string;
58
- name?: string | undefined;
59
58
  url?: string | undefined;
59
+ name?: string | undefined;
60
60
  }, {
61
61
  description: string;
62
- name?: string | undefined;
63
62
  url?: string | undefined;
63
+ name?: string | undefined;
64
64
  }>, "many">>;
65
65
  }, "strip", z.ZodTypeAny, {
66
66
  name: string;
@@ -68,8 +68,8 @@ export declare const LocationConfigGimmickSchema: z.ZodObject<{
68
68
  appearance: string;
69
69
  images?: {
70
70
  description: string;
71
- name?: string | undefined;
72
71
  url?: string | undefined;
72
+ name?: string | undefined;
73
73
  }[] | undefined;
74
74
  }, {
75
75
  name: string;
@@ -77,8 +77,8 @@ export declare const LocationConfigGimmickSchema: z.ZodObject<{
77
77
  appearance: string;
78
78
  images?: {
79
79
  description: string;
80
- name?: string | undefined;
81
80
  url?: string | undefined;
81
+ name?: string | undefined;
82
82
  }[] | undefined;
83
83
  }>;
84
84
  export type LocationConfigGimmick = z.infer<typeof LocationConfigGimmickSchema>;
@@ -140,12 +140,12 @@ export declare const LocationConfigSchema: z.ZodObject<{
140
140
  description: z.ZodString;
141
141
  }, "strip", z.ZodTypeAny, {
142
142
  description: string;
143
- name?: string | undefined;
144
143
  url?: string | undefined;
144
+ name?: string | undefined;
145
145
  }, {
146
146
  description: string;
147
- name?: string | undefined;
148
147
  url?: string | undefined;
148
+ name?: string | undefined;
149
149
  }>, "many">>;
150
150
  }, "strip", z.ZodTypeAny, {
151
151
  name: string;
@@ -153,8 +153,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
153
153
  appearance: string;
154
154
  images?: {
155
155
  description: string;
156
- name?: string | undefined;
157
156
  url?: string | undefined;
157
+ name?: string | undefined;
158
158
  }[] | undefined;
159
159
  }, {
160
160
  name: string;
@@ -162,21 +162,21 @@ export declare const LocationConfigSchema: z.ZodObject<{
162
162
  appearance: string;
163
163
  images?: {
164
164
  description: string;
165
- name?: string | undefined;
166
165
  url?: string | undefined;
166
+ name?: string | undefined;
167
167
  }[] | undefined;
168
168
  }>, "many">;
169
169
  }, "strip", z.ZodTypeAny, {
170
170
  name: string;
171
171
  description: string;
172
+ thumbnail: string | null;
173
+ environment: "CHAT" | "NOVEL";
172
174
  core: {
173
175
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
174
176
  sequential?: boolean | undefined;
175
177
  interval?: number | undefined;
176
178
  maxAgentExecutions?: number | null | undefined;
177
179
  };
178
- thumbnail: string | null;
179
- environment: "CHAT" | "NOVEL";
180
180
  rules: string[];
181
181
  canvases: {
182
182
  name: string;
@@ -194,21 +194,21 @@ export declare const LocationConfigSchema: z.ZodObject<{
194
194
  appearance: string;
195
195
  images?: {
196
196
  description: string;
197
- name?: string | undefined;
198
197
  url?: string | undefined;
198
+ name?: string | undefined;
199
199
  }[] | undefined;
200
200
  }[];
201
201
  }, {
202
202
  name: string;
203
203
  description: string;
204
+ thumbnail: string | null;
205
+ environment: "CHAT" | "NOVEL";
204
206
  core: {
205
207
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
206
208
  sequential?: boolean | undefined;
207
209
  interval?: number | undefined;
208
210
  maxAgentExecutions?: number | null | undefined;
209
211
  };
210
- thumbnail: string | null;
211
- environment: "CHAT" | "NOVEL";
212
212
  rules: string[];
213
213
  canvases: {
214
214
  name: string;
@@ -226,8 +226,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
226
226
  appearance: string;
227
227
  images?: {
228
228
  description: string;
229
- name?: string | undefined;
230
229
  url?: string | undefined;
230
+ name?: string | undefined;
231
231
  }[] | undefined;
232
232
  }[];
233
233
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@little-samo/samo-ai-sdk",
3
- "version": "0.2.1-rv9",
3
+ "version": "0.3.0",
4
4
  "description": "SamoAI SDK",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -62,7 +62,7 @@
62
62
  "devDependencies": {
63
63
  "@eslint/eslintrc": "^3.1.0",
64
64
  "@eslint/js": "^9.13.0",
65
- "@little-samo/samo-ai": "^0.2.1",
65
+ "@little-samo/samo-ai": "^0.3.0",
66
66
  "@types/lodash": "^4",
67
67
  "@types/node": "^20.3.1",
68
68
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -84,7 +84,7 @@
84
84
  "zod": "^3.24.1"
85
85
  },
86
86
  "peerDependencies": {
87
- "@little-samo/samo-ai": "^0.2.1",
87
+ "@little-samo/samo-ai": "^0.3.0",
88
88
  "class-transformer": "^0.5.1",
89
89
  "class-validator": "^0.14.2",
90
90
  "zod": "^3.24.1"