@little-samo/samo-ai-sdk 0.1.3 → 0.1.4

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.
Files changed (44) hide show
  1. package/dist/dto/entities/agents/agent.d.ts +8 -0
  2. package/dist/dto/entities/agents/agent.requests.d.ts +131 -10
  3. package/dist/dto/entities/agents/agent.requests.js +38 -1
  4. package/dist/dto/entities/agents/agent.requests.js.map +1 -1
  5. package/dist/dto/entities/gimmicks/gimmick.d.ts +5 -0
  6. package/dist/dto/entities/gimmicks/gimmick.js +3 -0
  7. package/dist/dto/entities/gimmicks/gimmick.js.map +1 -0
  8. package/dist/dto/entities/gimmicks/index.d.ts +1 -0
  9. package/dist/dto/entities/gimmicks/index.js +18 -0
  10. package/dist/dto/entities/gimmicks/index.js.map +1 -0
  11. package/dist/dto/entities/index.d.ts +1 -0
  12. package/dist/dto/entities/index.js +1 -0
  13. package/dist/dto/entities/index.js.map +1 -1
  14. package/dist/dto/entities/users/user.d.ts +4 -0
  15. package/dist/dto/entities/users/user.requests.d.ts +6 -1
  16. package/dist/dto/entities/users/user.requests.js +2 -1
  17. package/dist/dto/entities/users/user.requests.js.map +1 -1
  18. package/dist/dto/items/item.requests.d.ts +12 -2
  19. package/dist/dto/items/item.requests.js +17 -32
  20. package/dist/dto/items/item.requests.js.map +1 -1
  21. package/dist/dto/locations/index.d.ts +1 -0
  22. package/dist/dto/locations/index.js +1 -0
  23. package/dist/dto/locations/index.js.map +1 -1
  24. package/dist/dto/locations/location.d.ts +25 -2
  25. package/dist/dto/locations/location.events.d.ts +29 -9
  26. package/dist/dto/locations/location.events.js +6 -2
  27. package/dist/dto/locations/location.events.js.map +1 -1
  28. package/dist/dto/locations/location.message.d.ts +1 -0
  29. package/dist/dto/locations/location.requests.d.ts +503 -209
  30. package/dist/dto/locations/location.requests.js +132 -51
  31. package/dist/dto/locations/location.requests.js.map +1 -1
  32. package/dist/dto/locations/location.snapshot.d.ts +11 -0
  33. package/dist/dto/locations/location.snapshot.js +3 -0
  34. package/dist/dto/locations/location.snapshot.js.map +1 -0
  35. package/dist/models/entities/agents/agent.config.d.ts +4 -4
  36. package/dist/models/entities/agents/agent.config.js +23 -15
  37. package/dist/models/entities/agents/agent.config.js.map +1 -1
  38. package/dist/models/locations/location.config.d.ts +18 -15
  39. package/dist/models/locations/location.config.js +16 -12
  40. package/dist/models/locations/location.config.js.map +1 -1
  41. package/dist/models/locations/location.constants.d.ts +1 -0
  42. package/dist/models/locations/location.constants.js +1 -0
  43. package/dist/models/locations/location.constants.js.map +1 -1
  44. package/package.json +3 -3
@@ -1 +1 @@
1
- {"version":3,"file":"location.events.js","sourceRoot":"","sources":["../../../src/dto/locations/location.events.ts"],"names":[],"mappings":";;;AAMa,QAAA,iBAAiB,GAAG;IAC/B,cAAc,EAAE,gBAAgB;IAChC,aAAa,EAAE,eAAe;IAC9B,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,gBAAgB,EAAE,kBAAkB;IACpC,eAAe,EAAE,iBAAiB;IAClC,UAAU,EAAE,YAAY;IACxB,gBAAgB,EAAE,kBAAkB;IACpC,gBAAgB,EAAE,kBAAkB;IACpC,uBAAuB,EAAE,yBAAyB;CAC1C,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,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,gBAAgB,EAAE,kBAAkB;IACpC,eAAe,EAAE,iBAAiB;IAClC,UAAU,EAAE,YAAY;IACxB,gBAAgB,EAAE,kBAAkB;IACpC,gBAAgB,EAAE,kBAAkB;IACpC,aAAa,EAAE,eAAe;IAC9B,uBAAuB,EAAE,yBAAyB;IAClD,eAAe,EAAE,iBAAiB;CAC1B,CAAC"}
@@ -4,6 +4,7 @@ export interface LocationMessageDto {
4
4
  entityType: EntityType;
5
5
  entityId: EntityId;
6
6
  name: string;
7
+ avatar?: string;
7
8
  expression?: string;
8
9
  message?: string;
9
10
  action?: string;