@amigo-ai/platform-sdk 0.5.3 → 0.5.5
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.
- package/dist/types/generated/api.d.ts +14655 -13144
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +166 -166
- package/dist/types/resources/agents.d.ts +88 -88
- package/dist/types/resources/analytics.d.ts +39 -39
- package/dist/types/resources/api-keys.d.ts +29 -29
- package/dist/types/resources/audit.d.ts +73 -73
- package/dist/types/resources/billing.d.ts +36 -36
- package/dist/types/resources/calls.d.ts +106 -106
- package/dist/types/resources/compliance.d.ts +17 -17
- package/dist/types/resources/context-graphs.d.ts +633 -633
- package/dist/types/resources/data-sources.d.ts +81 -81
- package/dist/types/resources/functions.d.ts +22 -22
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/integrations.d.ts +257 -257
- package/dist/types/resources/memory.d.ts +35 -35
- package/dist/types/resources/operators.d.ts +147 -147
- package/dist/types/resources/personas.d.ts +37 -37
- package/dist/types/resources/phone-numbers.d.ts +62 -62
- package/dist/types/resources/recordings.d.ts +9 -9
- package/dist/types/resources/review-queue.d.ts +331 -331
- package/dist/types/resources/safety.d.ts +33 -33
- package/dist/types/resources/services.d.ts +142 -142
- package/dist/types/resources/settings.d.ts +254 -254
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/simulations.d.ts +73 -73
- package/dist/types/resources/skills.d.ts +163 -163
- package/dist/types/resources/triggers.d.ts +74 -74
- package/dist/types/resources/webhook-destinations.d.ts +57 -57
- package/dist/types/resources/workspaces.d.ts +50 -50
- package/dist/types/resources/world.d.ts +216 -216
- 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
|
-
|
|
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
|
-
|
|
16
|
-
report_period_days: number;
|
|
17
|
-
workspace_id: string;
|
|
18
|
-
audit_summary: {
|
|
15
|
+
access_controls: {
|
|
19
16
|
[x: string]: unknown;
|
|
20
17
|
};
|
|
21
|
-
|
|
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
|
-
|
|
28
|
+
generated_at: string;
|
|
29
|
+
report_period_days: number;
|
|
30
|
+
retention_policy: {
|
|
28
31
|
[x: string]: unknown;
|
|
29
32
|
};
|
|
30
|
-
|
|
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
|
-
|
|
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
|