@little-samo/samo-ai-sdk 0.1.1-rv4 → 0.1.1-rv6

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.
@@ -7,5 +7,5 @@ export interface AgentPublicDto {
7
7
  ownerUserId: UserId;
8
8
  }
9
9
  export interface AgentPrivateDto extends AgentPublicDto {
10
- config: AgentConfig;
10
+ config: AgentConfig | null;
11
11
  }
@@ -1,4 +1,4 @@
1
- import { LocationId, UserId } from '@little-samo/samo-ai';
1
+ import { AgentId, 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
- name: string;
20
+ agentId: AgentId;
21
21
  }
22
22
  export interface LocationUserJoinEventDto extends LocationEventDtoBase {
23
23
  type: typeof LocationEventType.UserJoin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@little-samo/samo-ai-sdk",
3
- "version": "0.1.1-rv4",
3
+ "version": "0.1.1-rv6",
4
4
  "description": "SamoAI SDK",
5
5
  "license": "MIT",
6
6
  "repository": {