@amigo-ai/platform-sdk 0.4.6 → 0.4.7

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 (57) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -2
  3. package/dist/types/generated/api.d.ts +581 -46
  4. package/dist/types/generated/api.d.ts.map +1 -1
  5. package/dist/types/resources/actions.d.ts +126 -22
  6. package/dist/types/resources/actions.d.ts.map +1 -1
  7. package/dist/types/resources/agents.d.ts +102 -16
  8. package/dist/types/resources/agents.d.ts.map +1 -1
  9. package/dist/types/resources/analytics.d.ts +74 -22
  10. package/dist/types/resources/analytics.d.ts.map +1 -1
  11. package/dist/types/resources/api-keys.d.ts +16 -3
  12. package/dist/types/resources/api-keys.d.ts.map +1 -1
  13. package/dist/types/resources/audit.d.ts +87 -31
  14. package/dist/types/resources/audit.d.ts.map +1 -1
  15. package/dist/types/resources/billing.d.ts +42 -9
  16. package/dist/types/resources/billing.d.ts.map +1 -1
  17. package/dist/types/resources/calls.d.ts +169 -65
  18. package/dist/types/resources/calls.d.ts.map +1 -1
  19. package/dist/types/resources/compliance.d.ts +6 -6
  20. package/dist/types/resources/context-graphs.d.ts +814 -17
  21. package/dist/types/resources/context-graphs.d.ts.map +1 -1
  22. package/dist/types/resources/data-sources.d.ts +68 -31
  23. package/dist/types/resources/data-sources.d.ts.map +1 -1
  24. package/dist/types/resources/functions.d.ts +49 -22
  25. package/dist/types/resources/functions.d.ts.map +1 -1
  26. package/dist/types/resources/integrations.d.ts +379 -49
  27. package/dist/types/resources/integrations.d.ts.map +1 -1
  28. package/dist/types/resources/memory.d.ts +48 -4
  29. package/dist/types/resources/memory.d.ts.map +1 -1
  30. package/dist/types/resources/operators.d.ts +189 -64
  31. package/dist/types/resources/operators.d.ts.map +1 -1
  32. package/dist/types/resources/personas.d.ts +20 -7
  33. package/dist/types/resources/personas.d.ts.map +1 -1
  34. package/dist/types/resources/phone-numbers.d.ts +46 -8
  35. package/dist/types/resources/phone-numbers.d.ts.map +1 -1
  36. package/dist/types/resources/recordings.d.ts +4 -4
  37. package/dist/types/resources/review-queue.d.ts +350 -49
  38. package/dist/types/resources/review-queue.d.ts.map +1 -1
  39. package/dist/types/resources/safety.d.ts +32 -6
  40. package/dist/types/resources/safety.d.ts.map +1 -1
  41. package/dist/types/resources/services.d.ts +212 -47
  42. package/dist/types/resources/services.d.ts.map +1 -1
  43. package/dist/types/resources/settings.d.ts +398 -36
  44. package/dist/types/resources/settings.d.ts.map +1 -1
  45. package/dist/types/resources/simulations.d.ts +150 -22
  46. package/dist/types/resources/simulations.d.ts.map +1 -1
  47. package/dist/types/resources/skills.d.ts +117 -21
  48. package/dist/types/resources/skills.d.ts.map +1 -1
  49. package/dist/types/resources/triggers.d.ts +92 -64
  50. package/dist/types/resources/triggers.d.ts.map +1 -1
  51. package/dist/types/resources/webhook-destinations.d.ts +44 -20
  52. package/dist/types/resources/webhook-destinations.d.ts.map +1 -1
  53. package/dist/types/resources/workspaces.d.ts +14 -3
  54. package/dist/types/resources/workspaces.d.ts.map +1 -1
  55. package/dist/types/resources/world.d.ts +322 -121
  56. package/dist/types/resources/world.d.ts.map +1 -1
  57. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Amigo AI
3
+ Copyright (c) 2026 Amigo Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  <p align="center">
10
10
  <a href="https://docs.amigo.ai">Product Docs</a>
11
11
  ·
12
- <a href="https://docs.amigo.ai/developer-guide">Developer Guide</a>
12
+ <a href="https://docs.amigo.ai/developer-guide/platform-api/platform-sdk">Developer Guide</a>
13
13
  ·
14
14
  <a href="https://docs.amigo.ai/api-reference">API Reference</a>
15
15
  ·
@@ -39,7 +39,7 @@ The SDK is the typed client boundary between your runtime and the workspace-scop
39
39
  | Need | Best entry point |
40
40
  | ------------------------------------------- | -------------------------------------------------------- |
41
41
  | Product architecture and deployment context | [docs.amigo.ai](https://docs.amigo.ai/) |
42
- | Tutorials and integration guidance | [Developer Guide](https://docs.amigo.ai/developer-guide) |
42
+ | Tutorials and integration guidance | [Developer Guide](https://docs.amigo.ai/developer-guide/platform-api/platform-sdk) |
43
43
  | Endpoint-by-endpoint REST reference | [API Reference](https://docs.amigo.ai/api-reference) |
44
44
  | Repo-local SDK examples | [examples/README.md](./examples/README.md) |
45
45
  | Generated package surface | [api.md](./api.md) |