@little-samo/samo-ai-sdk 0.1.1-rv6 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dto/entities/agents/agent.d.ts +1 -1
- package/dist/dto/entities/agents/agent.preset.d.ts +0 -2
- package/dist/dto/entities/agents/agent.requests.d.ts +16 -16
- package/dist/dto/locations/location.d.ts +1 -1
- package/dist/dto/locations/location.events.d.ts +2 -2
- package/dist/dto/locations/location.preset.d.ts +0 -2
- package/dist/dto/locations/location.requests.d.ts +27 -27
- package/dist/models/locations/location.config.js +1 -1
- package/dist/models/locations/location.config.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { AgentConfig } from '@little-samo/samo-ai-sdk/models';
|
|
2
|
-
import { UserPublicDto } from '../users';
|
|
3
2
|
export interface AgentPresetDto {
|
|
4
3
|
id: bigint;
|
|
5
4
|
presetName: string;
|
|
6
5
|
presetShortDescription: string;
|
|
7
6
|
presetDescription: string;
|
|
8
7
|
config: Partial<AgentConfig>;
|
|
9
|
-
ownerUser?: UserPublicDto;
|
|
10
8
|
createdAt: Date;
|
|
11
9
|
updatedAt: Date;
|
|
12
10
|
}
|
|
@@ -6,11 +6,11 @@ export declare const AgentsPaginationQuerySchema: z.ZodObject<{
|
|
|
6
6
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
7
7
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
page: number;
|
|
10
9
|
limit: number;
|
|
10
|
+
page: number;
|
|
11
11
|
}, {
|
|
12
|
-
page?: number | undefined;
|
|
13
12
|
limit?: number | undefined;
|
|
13
|
+
page?: number | undefined;
|
|
14
14
|
}>;
|
|
15
15
|
export type AgentsPaginationQueryDto = z.infer<typeof AgentsPaginationQuerySchema>;
|
|
16
16
|
export interface AgentsPaginatedResponseDto {
|
|
@@ -223,11 +223,12 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
223
223
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
224
224
|
}, "strict", z.ZodTypeAny, {
|
|
225
225
|
name?: string | undefined;
|
|
226
|
-
avatar?: string | undefined;
|
|
227
|
-
appearance?: string | undefined;
|
|
228
226
|
core?: {
|
|
229
227
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
230
228
|
} | undefined;
|
|
229
|
+
appearance?: string | undefined;
|
|
230
|
+
rules?: string[] | undefined;
|
|
231
|
+
avatar?: string | undefined;
|
|
231
232
|
llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "anthropic-low" | "anthropic-medium" | "anthropic-high" | "deepseek-low" | "deepseek-medium" | undefined;
|
|
232
233
|
languages?: string[] | undefined;
|
|
233
234
|
timeZone?: string | undefined;
|
|
@@ -289,14 +290,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
289
290
|
mbti: z.ZodOptional<z.ZodString>;
|
|
290
291
|
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
291
292
|
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip"> | undefined;
|
|
292
|
-
rules?: string[] | undefined;
|
|
293
293
|
}, {
|
|
294
294
|
name?: string | undefined;
|
|
295
|
-
avatar?: string | undefined;
|
|
296
|
-
appearance?: string | undefined;
|
|
297
295
|
core?: {
|
|
298
296
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
299
297
|
} | undefined;
|
|
298
|
+
appearance?: string | undefined;
|
|
299
|
+
rules?: string[] | undefined;
|
|
300
|
+
avatar?: string | undefined;
|
|
300
301
|
llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "anthropic-low" | "anthropic-medium" | "anthropic-high" | "deepseek-low" | "deepseek-medium" | undefined;
|
|
301
302
|
languages?: string[] | undefined;
|
|
302
303
|
timeZone?: string | undefined;
|
|
@@ -358,17 +359,17 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
358
359
|
mbti: z.ZodOptional<z.ZodString>;
|
|
359
360
|
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
360
361
|
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip"> | undefined;
|
|
361
|
-
rules?: string[] | undefined;
|
|
362
362
|
}>;
|
|
363
363
|
}, "strip", z.ZodTypeAny, {
|
|
364
364
|
agentId: bigint;
|
|
365
365
|
config: {
|
|
366
366
|
name?: string | undefined;
|
|
367
|
-
avatar?: string | undefined;
|
|
368
|
-
appearance?: string | undefined;
|
|
369
367
|
core?: {
|
|
370
368
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
371
369
|
} | undefined;
|
|
370
|
+
appearance?: string | undefined;
|
|
371
|
+
rules?: string[] | undefined;
|
|
372
|
+
avatar?: string | undefined;
|
|
372
373
|
llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "anthropic-low" | "anthropic-medium" | "anthropic-high" | "deepseek-low" | "deepseek-medium" | undefined;
|
|
373
374
|
languages?: string[] | undefined;
|
|
374
375
|
timeZone?: string | undefined;
|
|
@@ -430,17 +431,17 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
430
431
|
mbti: z.ZodOptional<z.ZodString>;
|
|
431
432
|
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
432
433
|
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip"> | undefined;
|
|
433
|
-
rules?: string[] | undefined;
|
|
434
434
|
};
|
|
435
435
|
}, {
|
|
436
436
|
agentId: bigint;
|
|
437
437
|
config: {
|
|
438
438
|
name?: string | undefined;
|
|
439
|
-
avatar?: string | undefined;
|
|
440
|
-
appearance?: string | undefined;
|
|
441
439
|
core?: {
|
|
442
440
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
443
441
|
} | undefined;
|
|
442
|
+
appearance?: string | undefined;
|
|
443
|
+
rules?: string[] | undefined;
|
|
444
|
+
avatar?: string | undefined;
|
|
444
445
|
llmPreset?: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "anthropic-low" | "anthropic-medium" | "anthropic-high" | "deepseek-low" | "deepseek-medium" | undefined;
|
|
445
446
|
languages?: string[] | undefined;
|
|
446
447
|
timeZone?: string | undefined;
|
|
@@ -502,7 +503,6 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
502
503
|
mbti: z.ZodOptional<z.ZodString>;
|
|
503
504
|
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
504
505
|
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip"> | undefined;
|
|
505
|
-
rules?: string[] | undefined;
|
|
506
506
|
};
|
|
507
507
|
}>;
|
|
508
508
|
export type AgentUpdateConfigDto = z.infer<typeof AgentUpdateConfigSchema>;
|
|
@@ -511,11 +511,11 @@ export declare const AgentPresetsPaginationQuerySchema: z.ZodObject<{
|
|
|
511
511
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
512
512
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
513
513
|
}, "strip", z.ZodTypeAny, {
|
|
514
|
-
page: number;
|
|
515
514
|
limit: number;
|
|
515
|
+
page: number;
|
|
516
516
|
}, {
|
|
517
|
-
page?: number | undefined;
|
|
518
517
|
limit?: number | undefined;
|
|
518
|
+
page?: number | undefined;
|
|
519
519
|
}>;
|
|
520
520
|
export type AgentPresetsPaginationQueryDto = z.infer<typeof AgentPresetsPaginationQuerySchema>;
|
|
521
521
|
export interface AgentPresetsPaginatedResponseDto {
|
|
@@ -10,7 +10,7 @@ export interface LocationPublicDto {
|
|
|
10
10
|
updatedAt: Date;
|
|
11
11
|
}
|
|
12
12
|
export interface LocationPrivateDto extends LocationPublicDto {
|
|
13
|
-
config: LocationConfig
|
|
13
|
+
config: LocationConfig;
|
|
14
14
|
}
|
|
15
15
|
export interface LocationListItemDto extends LocationPublicDto {
|
|
16
16
|
lastMessage: LocationMessageDto | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LocationId, UserId } from '@little-samo/samo-ai';
|
|
2
2
|
import { UserPublicDto } from '../entities';
|
|
3
3
|
import { LocationMessageDto } from './location.message';
|
|
4
4
|
export declare const LocationEventType: {
|
|
@@ -17,7 +17,7 @@ export interface LocationEventDtoBase {
|
|
|
17
17
|
}
|
|
18
18
|
export interface LocationAgentExecutionEventDto extends LocationEventDtoBase {
|
|
19
19
|
type: typeof LocationEventType.AgentExecution;
|
|
20
|
-
|
|
20
|
+
name: string;
|
|
21
21
|
}
|
|
22
22
|
export interface LocationUserJoinEventDto extends LocationEventDtoBase {
|
|
23
23
|
type: typeof LocationEventType.UserJoin;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { LocationConfig } from '@little-samo/samo-ai-sdk/models';
|
|
2
|
-
import { UserPublicDto } from '../entities';
|
|
3
2
|
export interface LocationPresetDto {
|
|
4
3
|
id: bigint;
|
|
5
4
|
presetName: string;
|
|
@@ -8,7 +7,6 @@ export interface LocationPresetDto {
|
|
|
8
7
|
name: string;
|
|
9
8
|
description: string;
|
|
10
9
|
config: Partial<LocationConfig>;
|
|
11
|
-
ownerUser?: UserPublicDto;
|
|
12
10
|
createdAt: Date;
|
|
13
11
|
updatedAt: Date;
|
|
14
12
|
}
|
|
@@ -10,8 +10,8 @@ export declare const UserLocationsQuerySchema: z.ZodObject<{
|
|
|
10
10
|
limit: number;
|
|
11
11
|
cursor?: string | undefined;
|
|
12
12
|
}, {
|
|
13
|
-
limit?: number | undefined;
|
|
14
13
|
cursor?: string | undefined;
|
|
14
|
+
limit?: number | undefined;
|
|
15
15
|
}>;
|
|
16
16
|
export type UserLocationsQueryDto = z.infer<typeof UserLocationsQuerySchema>;
|
|
17
17
|
export interface UserLocationsResponseDto {
|
|
@@ -102,11 +102,11 @@ export declare const JoinAgentToLocationToolSchema: z.ZodObject<{
|
|
|
102
102
|
locationId: z.ZodBigInt;
|
|
103
103
|
agentId: z.ZodBigInt;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
|
-
agentId: bigint;
|
|
106
105
|
locationId: bigint;
|
|
107
|
-
}, {
|
|
108
106
|
agentId: bigint;
|
|
107
|
+
}, {
|
|
109
108
|
locationId: bigint;
|
|
109
|
+
agentId: bigint;
|
|
110
110
|
}>;
|
|
111
111
|
export type JoinAgentToLocationToolDto = z.infer<typeof JoinAgentToLocationToolSchema>;
|
|
112
112
|
export declare const RemoveAgentFromLocationParamsSchema: z.ZodObject<{
|
|
@@ -133,11 +133,11 @@ export declare const RemoveAgentFromLocationToolSchema: z.ZodObject<{
|
|
|
133
133
|
locationId: z.ZodBigInt;
|
|
134
134
|
agentId: z.ZodBigInt;
|
|
135
135
|
}, "strip", z.ZodTypeAny, {
|
|
136
|
-
agentId: bigint;
|
|
137
136
|
locationId: bigint;
|
|
138
|
-
}, {
|
|
139
137
|
agentId: bigint;
|
|
138
|
+
}, {
|
|
140
139
|
locationId: bigint;
|
|
140
|
+
agentId: bigint;
|
|
141
141
|
}>;
|
|
142
142
|
export type RemoveAgentFromLocationToolDto = z.infer<typeof RemoveAgentFromLocationToolSchema>;
|
|
143
143
|
export interface LocationMessagesResponseDto {
|
|
@@ -148,11 +148,11 @@ export declare const LocationPresetsPaginationQuerySchema: z.ZodObject<{
|
|
|
148
148
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
149
149
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
page: number;
|
|
152
151
|
limit: number;
|
|
152
|
+
page: number;
|
|
153
153
|
}, {
|
|
154
|
-
page?: number | undefined;
|
|
155
154
|
limit?: number | undefined;
|
|
155
|
+
page?: number | undefined;
|
|
156
156
|
}>;
|
|
157
157
|
export type LocationPresetsPaginationQueryDto = z.infer<typeof LocationPresetsPaginationQuerySchema>;
|
|
158
158
|
export interface LocationPresetsPaginatedResponseDto {
|
|
@@ -226,25 +226,25 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
226
226
|
appearance: z.ZodString;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
name: string;
|
|
229
|
+
core: "web_search" | "x_twitter";
|
|
229
230
|
description: string;
|
|
230
231
|
appearance: string;
|
|
231
|
-
core: "web_search" | "x_twitter";
|
|
232
232
|
}, {
|
|
233
233
|
name: string;
|
|
234
|
+
core: "web_search" | "x_twitter";
|
|
234
235
|
description: string;
|
|
235
236
|
appearance: string;
|
|
236
|
-
core: "web_search" | "x_twitter";
|
|
237
237
|
}>, "many">>;
|
|
238
238
|
}, "strict", z.ZodTypeAny, {
|
|
239
239
|
name?: string | undefined;
|
|
240
|
-
|
|
240
|
+
thumbnail?: string | undefined;
|
|
241
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
241
242
|
core?: {
|
|
242
243
|
name: "round_robin" | "update_forever" | "update_once";
|
|
243
244
|
sequential?: boolean | undefined;
|
|
244
245
|
} | undefined;
|
|
246
|
+
description?: string | undefined;
|
|
245
247
|
rules?: string[] | undefined;
|
|
246
|
-
thumbnail?: string | undefined;
|
|
247
|
-
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
248
248
|
canvases?: {
|
|
249
249
|
name: string;
|
|
250
250
|
description: string;
|
|
@@ -257,20 +257,20 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
257
257
|
}[] | undefined;
|
|
258
258
|
gimmicks?: {
|
|
259
259
|
name: string;
|
|
260
|
+
core: "web_search" | "x_twitter";
|
|
260
261
|
description: string;
|
|
261
262
|
appearance: string;
|
|
262
|
-
core: "web_search" | "x_twitter";
|
|
263
263
|
}[] | undefined;
|
|
264
264
|
}, {
|
|
265
265
|
name?: string | undefined;
|
|
266
|
-
|
|
266
|
+
thumbnail?: string | undefined;
|
|
267
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
267
268
|
core?: {
|
|
268
269
|
name: "round_robin" | "update_forever" | "update_once";
|
|
269
270
|
sequential?: boolean | undefined;
|
|
270
271
|
} | undefined;
|
|
272
|
+
description?: string | undefined;
|
|
271
273
|
rules?: string[] | undefined;
|
|
272
|
-
thumbnail?: string | undefined;
|
|
273
|
-
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
274
274
|
canvases?: {
|
|
275
275
|
name: string;
|
|
276
276
|
description: string;
|
|
@@ -283,22 +283,23 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
283
283
|
}[] | undefined;
|
|
284
284
|
gimmicks?: {
|
|
285
285
|
name: string;
|
|
286
|
+
core: "web_search" | "x_twitter";
|
|
286
287
|
description: string;
|
|
287
288
|
appearance: string;
|
|
288
|
-
core: "web_search" | "x_twitter";
|
|
289
289
|
}[] | undefined;
|
|
290
290
|
}>;
|
|
291
291
|
}, "strip", z.ZodTypeAny, {
|
|
292
|
+
locationId: bigint;
|
|
292
293
|
config: {
|
|
293
294
|
name?: string | undefined;
|
|
294
|
-
|
|
295
|
+
thumbnail?: string | undefined;
|
|
296
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
295
297
|
core?: {
|
|
296
298
|
name: "round_robin" | "update_forever" | "update_once";
|
|
297
299
|
sequential?: boolean | undefined;
|
|
298
300
|
} | undefined;
|
|
301
|
+
description?: string | undefined;
|
|
299
302
|
rules?: string[] | undefined;
|
|
300
|
-
thumbnail?: string | undefined;
|
|
301
|
-
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
302
303
|
canvases?: {
|
|
303
304
|
name: string;
|
|
304
305
|
description: string;
|
|
@@ -311,23 +312,23 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
311
312
|
}[] | undefined;
|
|
312
313
|
gimmicks?: {
|
|
313
314
|
name: string;
|
|
315
|
+
core: "web_search" | "x_twitter";
|
|
314
316
|
description: string;
|
|
315
317
|
appearance: string;
|
|
316
|
-
core: "web_search" | "x_twitter";
|
|
317
318
|
}[] | undefined;
|
|
318
319
|
};
|
|
319
|
-
locationId: bigint;
|
|
320
320
|
}, {
|
|
321
|
+
locationId: bigint;
|
|
321
322
|
config: {
|
|
322
323
|
name?: string | undefined;
|
|
323
|
-
|
|
324
|
+
thumbnail?: string | undefined;
|
|
325
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
324
326
|
core?: {
|
|
325
327
|
name: "round_robin" | "update_forever" | "update_once";
|
|
326
328
|
sequential?: boolean | undefined;
|
|
327
329
|
} | undefined;
|
|
330
|
+
description?: string | undefined;
|
|
328
331
|
rules?: string[] | undefined;
|
|
329
|
-
thumbnail?: string | undefined;
|
|
330
|
-
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
331
332
|
canvases?: {
|
|
332
333
|
name: string;
|
|
333
334
|
description: string;
|
|
@@ -340,12 +341,11 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
340
341
|
}[] | undefined;
|
|
341
342
|
gimmicks?: {
|
|
342
343
|
name: string;
|
|
344
|
+
core: "web_search" | "x_twitter";
|
|
343
345
|
description: string;
|
|
344
346
|
appearance: string;
|
|
345
|
-
core: "web_search" | "x_twitter";
|
|
346
347
|
}[] | undefined;
|
|
347
348
|
};
|
|
348
|
-
locationId: bigint;
|
|
349
349
|
}>;
|
|
350
350
|
export type LocationUpdateConfigDto = z.infer<typeof LocationUpdateConfigSchema>;
|
|
351
351
|
export type LocationUpdateConfigResponseDto = Partial<LocationConfig>;
|
|
@@ -29,7 +29,7 @@ exports.LocationConfigCanvasSchema = zod_1.z.object({
|
|
|
29
29
|
.describe('Unique identifier for the canvas that agents use to reference it'),
|
|
30
30
|
description: zod_1.z
|
|
31
31
|
.string()
|
|
32
|
-
.max(
|
|
32
|
+
.max(500)
|
|
33
33
|
.describe('Clear explanation of the canvas purpose and intended use for agents'),
|
|
34
34
|
maxLength: zod_1.z
|
|
35
35
|
.number()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.config.js","sourceRoot":"","sources":["../../../src/models/locations/location.config.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,6DAA2D;AAE9C,QAAA,yBAAyB,GAAG,OAAC,CAAC,KAAK,CAAC;IAC/C,OAAC;SACE,OAAO,CAAC,wCAAmB,CAAC,IAAI,CAAC;SACjC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAC;SACE,OAAO,CAAC,wCAAmB,CAAC,WAAW,CAAC;SACxC,QAAQ,CACP,qEAAqE,CACtE;CACJ,CAAC,CAAC;AAEU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC;QACZ,OAAC,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QACrE,OAAC;aACE,OAAO,CAAC,gBAAgB,CAAC;aACzB,QAAQ,CAAC,6CAA6C,CAAC;QAC1D,OAAC,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC;KACxE,CAAC;IACF,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,+BAA+B,CAAC;CAC7E,CAAC,CAAC;AAIU,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,OAAC;SACJ,MAAM,EAAE;SACR,GAAG,CAAC,EAAE,CAAC;SACP,KAAK,CAAC,cAAc,EAAE,gDAAgD,CAAC;SACvE,QAAQ,CACP,kEAAkE,CACnE;IACH,WAAW,EAAE,OAAC;SACX,MAAM,EAAE;SACR,GAAG,CAAC,
|
|
1
|
+
{"version":3,"file":"location.config.js","sourceRoot":"","sources":["../../../src/models/locations/location.config.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@little-samo/samo-ai-sdk",
|
|
3
|
-
"version": "0.1.1
|
|
3
|
+
"version": "0.1.1",
|
|
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.1.
|
|
65
|
+
"@little-samo/samo-ai": "^0.1.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.1.1
|
|
87
|
+
"@little-samo/samo-ai": "^0.1.1",
|
|
88
88
|
"class-transformer": "^0.5.1",
|
|
89
89
|
"class-validator": "^0.14.2",
|
|
90
90
|
"zod": "^3.24.1"
|