@amigo-ai/platform-sdk 0.5.2 → 0.5.3

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 (52) hide show
  1. package/README.md +81 -7
  2. package/api.md +3 -0
  3. package/dist/index.cjs +42 -10
  4. package/dist/index.cjs.map +2 -2
  5. package/dist/index.mjs +42 -10
  6. package/dist/index.mjs.map +2 -2
  7. package/dist/resources/base.js +7 -2
  8. package/dist/resources/base.js.map +1 -1
  9. package/dist/resources/operators.js.map +1 -1
  10. package/dist/resources/personas.js.map +1 -1
  11. package/dist/resources/webhook-destinations.js.map +1 -1
  12. package/dist/resources/workspaces.js +22 -0
  13. package/dist/resources/workspaces.js.map +1 -1
  14. package/dist/resources/world.js.map +1 -1
  15. package/dist/types/generated/api.d.ts +13373 -13213
  16. package/dist/types/generated/api.d.ts.map +1 -1
  17. package/dist/types/resources/actions.d.ts +166 -166
  18. package/dist/types/resources/agents.d.ts +88 -88
  19. package/dist/types/resources/analytics.d.ts +39 -39
  20. package/dist/types/resources/api-keys.d.ts +29 -29
  21. package/dist/types/resources/audit.d.ts +73 -73
  22. package/dist/types/resources/base.d.ts.map +1 -1
  23. package/dist/types/resources/billing.d.ts +36 -36
  24. package/dist/types/resources/calls.d.ts +106 -106
  25. package/dist/types/resources/compliance.d.ts +17 -17
  26. package/dist/types/resources/context-graphs.d.ts +643 -643
  27. package/dist/types/resources/data-sources.d.ts +81 -81
  28. package/dist/types/resources/functions.d.ts +22 -22
  29. package/dist/types/resources/functions.d.ts.map +1 -1
  30. package/dist/types/resources/integrations.d.ts +258 -258
  31. package/dist/types/resources/memory.d.ts +35 -35
  32. package/dist/types/resources/operators.d.ts +147 -147
  33. package/dist/types/resources/operators.d.ts.map +1 -1
  34. package/dist/types/resources/personas.d.ts +37 -37
  35. package/dist/types/resources/personas.d.ts.map +1 -1
  36. package/dist/types/resources/phone-numbers.d.ts +62 -62
  37. package/dist/types/resources/recordings.d.ts +9 -9
  38. package/dist/types/resources/review-queue.d.ts +331 -331
  39. package/dist/types/resources/safety.d.ts +33 -33
  40. package/dist/types/resources/services.d.ts +142 -142
  41. package/dist/types/resources/settings.d.ts +254 -254
  42. package/dist/types/resources/settings.d.ts.map +1 -1
  43. package/dist/types/resources/simulations.d.ts +73 -73
  44. package/dist/types/resources/skills.d.ts +163 -163
  45. package/dist/types/resources/triggers.d.ts +74 -74
  46. package/dist/types/resources/webhook-destinations.d.ts +57 -57
  47. package/dist/types/resources/webhook-destinations.d.ts.map +1 -1
  48. package/dist/types/resources/workspaces.d.ts +69 -35
  49. package/dist/types/resources/workspaces.d.ts.map +1 -1
  50. package/dist/types/resources/world.d.ts +216 -216
  51. package/dist/types/resources/world.d.ts.map +1 -1
  52. package/package.json +1 -1
@@ -1,45 +1,45 @@
1
1
  import { WorkspaceScopedResource } from './base.js';
2
2
  export declare class ComplianceResource extends WorkspaceScopedResource {
3
3
  getDashboard(): Promise<{
4
- active_credentials: number;
5
- generated_at: string;
6
4
  hipaa_status: string;
7
- last_audit_export: string | null;
8
- legal_hold: boolean;
9
5
  retention_days: number | null;
6
+ legal_hold: boolean;
10
7
  total_credentials: number;
8
+ active_credentials: number;
9
+ last_audit_export: string | null;
10
+ generated_at: string;
11
11
  } & import("../index.js").ResponseMetadata>;
12
12
  getHipaa(params?: {
13
13
  report_period_days?: number;
14
14
  }): Promise<{
15
- access_controls: {
15
+ generated_at: string;
16
+ report_period_days: number;
17
+ workspace_id: string;
18
+ audit_summary: {
16
19
  [x: string]: unknown;
17
20
  };
18
- api_key_summary: {
19
- [x: string]: number;
20
- };
21
- audit_summary: {
21
+ retention_policy: {
22
22
  [x: string]: unknown;
23
23
  };
24
- compliance_status: string;
25
24
  encryption: {
26
25
  [x: string]: boolean;
27
26
  };
28
- generated_at: string;
29
- report_period_days: number;
30
- retention_policy: {
27
+ access_controls: {
31
28
  [x: string]: unknown;
32
29
  };
33
- workspace_id: string;
30
+ api_key_summary: {
31
+ [x: string]: number;
32
+ };
33
+ compliance_status: string;
34
34
  } & import("../index.js").ResponseMetadata>;
35
35
  getAccessReview(): Promise<{
36
+ generated_at: string;
37
+ workspace_id: string;
36
38
  credentials: {
37
39
  [x: string]: unknown;
38
40
  }[];
39
- generated_at: string;
40
- jwt_credentials_note: string;
41
41
  total_credentials: number;
42
- workspace_id: string;
42
+ jwt_credentials_note: string;
43
43
  } & import("../index.js").ResponseMetadata>;
44
44
  }
45
45
  //# sourceMappingURL=compliance.d.ts.map