@amigo-ai/platform-sdk 0.5.3 → 0.5.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 (32) hide show
  1. package/dist/types/generated/api.d.ts +13860 -13131
  2. package/dist/types/generated/api.d.ts.map +1 -1
  3. package/dist/types/resources/actions.d.ts +166 -166
  4. package/dist/types/resources/agents.d.ts +88 -88
  5. package/dist/types/resources/analytics.d.ts +39 -39
  6. package/dist/types/resources/api-keys.d.ts +29 -29
  7. package/dist/types/resources/audit.d.ts +73 -73
  8. package/dist/types/resources/billing.d.ts +36 -36
  9. package/dist/types/resources/calls.d.ts +106 -106
  10. package/dist/types/resources/compliance.d.ts +17 -17
  11. package/dist/types/resources/context-graphs.d.ts +633 -633
  12. package/dist/types/resources/data-sources.d.ts +81 -81
  13. package/dist/types/resources/functions.d.ts +22 -22
  14. package/dist/types/resources/functions.d.ts.map +1 -1
  15. package/dist/types/resources/integrations.d.ts +258 -258
  16. package/dist/types/resources/memory.d.ts +35 -35
  17. package/dist/types/resources/operators.d.ts +147 -147
  18. package/dist/types/resources/personas.d.ts +37 -37
  19. package/dist/types/resources/phone-numbers.d.ts +62 -62
  20. package/dist/types/resources/recordings.d.ts +9 -9
  21. package/dist/types/resources/review-queue.d.ts +331 -331
  22. package/dist/types/resources/safety.d.ts +33 -33
  23. package/dist/types/resources/services.d.ts +142 -142
  24. package/dist/types/resources/settings.d.ts +254 -254
  25. package/dist/types/resources/settings.d.ts.map +1 -1
  26. package/dist/types/resources/simulations.d.ts +73 -73
  27. package/dist/types/resources/skills.d.ts +163 -163
  28. package/dist/types/resources/triggers.d.ts +74 -74
  29. package/dist/types/resources/webhook-destinations.d.ts +57 -57
  30. package/dist/types/resources/workspaces.d.ts +50 -50
  31. package/dist/types/resources/world.d.ts +216 -216
  32. 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;
4
6
  hipaa_status: string;
5
- retention_days: number | null;
7
+ last_audit_export: string | null;
6
8
  legal_hold: boolean;
9
+ retention_days: number | null;
7
10
  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
- generated_at: string;
16
- report_period_days: number;
17
- workspace_id: string;
18
- audit_summary: {
15
+ access_controls: {
19
16
  [x: string]: unknown;
20
17
  };
21
- retention_policy: {
18
+ api_key_summary: {
19
+ [x: string]: number;
20
+ };
21
+ audit_summary: {
22
22
  [x: string]: unknown;
23
23
  };
24
+ compliance_status: string;
24
25
  encryption: {
25
26
  [x: string]: boolean;
26
27
  };
27
- access_controls: {
28
+ generated_at: string;
29
+ report_period_days: number;
30
+ retention_policy: {
28
31
  [x: string]: unknown;
29
32
  };
30
- api_key_summary: {
31
- [x: string]: number;
32
- };
33
- compliance_status: string;
33
+ workspace_id: string;
34
34
  } & import("../index.js").ResponseMetadata>;
35
35
  getAccessReview(): Promise<{
36
- generated_at: string;
37
- workspace_id: string;
38
36
  credentials: {
39
37
  [x: string]: unknown;
40
38
  }[];
41
- total_credentials: number;
39
+ generated_at: string;
42
40
  jwt_credentials_note: string;
41
+ total_credentials: number;
42
+ workspace_id: string;
43
43
  } & import("../index.js").ResponseMetadata>;
44
44
  }
45
45
  //# sourceMappingURL=compliance.d.ts.map