@amigo-ai/platform-sdk 0.1.0 → 0.2.1
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/README.md +114 -2
- package/dist/core/branded-types.js +1 -0
- package/dist/core/branded-types.js.map +1 -1
- package/dist/core/errors.js +43 -3
- package/dist/core/errors.js.map +1 -1
- package/dist/core/openapi-client.js +60 -48
- package/dist/core/openapi-client.js.map +1 -1
- package/dist/core/rate-limit.js +13 -0
- package/dist/core/rate-limit.js.map +1 -0
- package/dist/core/webhooks.js +17 -0
- package/dist/core/webhooks.js.map +1 -0
- package/dist/generated/api.js +2 -0
- package/dist/{types → generated}/api.js.map +1 -1
- package/dist/index.cjs +1668 -371
- package/dist/index.cjs.map +4 -4
- package/dist/index.js +59 -43
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1658 -371
- package/dist/index.mjs.map +4 -4
- package/dist/resources/actions.js +52 -0
- package/dist/resources/actions.js.map +1 -0
- package/dist/resources/agents.js +30 -30
- package/dist/resources/agents.js.map +1 -1
- package/dist/resources/analytics.js +34 -15
- package/dist/resources/analytics.js.map +1 -1
- package/dist/resources/api-keys.js +17 -19
- package/dist/resources/api-keys.js.map +1 -1
- package/dist/resources/audit.js +35 -0
- package/dist/resources/audit.js.map +1 -0
- package/dist/resources/base.js +12 -44
- package/dist/resources/base.js.map +1 -1
- package/dist/resources/billing.js +35 -7
- package/dist/resources/billing.js.map +1 -1
- package/dist/resources/calls.js +25 -9
- package/dist/resources/calls.js.map +1 -1
- package/dist/resources/compliance.js +19 -0
- package/dist/resources/compliance.js.map +1 -0
- package/dist/resources/context-graphs.js +46 -18
- package/dist/resources/context-graphs.js.map +1 -1
- package/dist/resources/data-sources.js +30 -12
- package/dist/resources/data-sources.js.map +1 -1
- package/dist/resources/functions.js +42 -0
- package/dist/resources/functions.js.map +1 -0
- package/dist/resources/integrations.js +32 -15
- package/dist/resources/integrations.js.map +1 -1
- package/dist/resources/memory.js +13 -4
- package/dist/resources/memory.js.map +1 -1
- package/dist/resources/operators.js +102 -0
- package/dist/resources/operators.js.map +1 -0
- package/dist/resources/personas.js +31 -0
- package/dist/resources/personas.js.map +1 -0
- package/dist/resources/phone-numbers.js +31 -16
- package/dist/resources/phone-numbers.js.map +1 -1
- package/dist/resources/recordings.js +19 -0
- package/dist/resources/recordings.js.map +1 -0
- package/dist/resources/review-queue.js +94 -0
- package/dist/resources/review-queue.js.map +1 -0
- package/dist/resources/safety.js +31 -0
- package/dist/resources/safety.js.map +1 -0
- package/dist/resources/services.js +18 -12
- package/dist/resources/services.js.map +1 -1
- package/dist/resources/settings.js +50 -24
- package/dist/resources/settings.js.map +1 -1
- package/dist/resources/simulations.js +23 -17
- package/dist/resources/simulations.js.map +1 -1
- package/dist/resources/skills.js +22 -16
- package/dist/resources/skills.js.map +1 -1
- package/dist/resources/triggers.js +51 -0
- package/dist/resources/triggers.js.map +1 -0
- package/dist/resources/webhook-destinations.js +44 -0
- package/dist/resources/webhook-destinations.js.map +1 -0
- package/dist/resources/workspaces.js +24 -38
- package/dist/resources/workspaces.js.map +1 -1
- package/dist/resources/world.js +58 -60
- package/dist/resources/world.js.map +1 -1
- package/dist/types/core/branded-types.d.ts +3 -0
- package/dist/types/core/branded-types.d.ts.map +1 -1
- package/dist/types/core/errors.d.ts +3 -0
- package/dist/types/core/errors.d.ts.map +1 -1
- package/dist/types/core/openapi-client.d.ts +13 -5
- package/dist/types/core/openapi-client.d.ts.map +1 -1
- package/dist/types/core/rate-limit.d.ts +8 -0
- package/dist/types/core/rate-limit.d.ts.map +1 -0
- package/dist/types/core/webhooks.d.ts +9 -0
- package/dist/types/core/webhooks.d.ts.map +1 -0
- package/dist/types/generated/api.d.ts +35120 -0
- package/dist/types/generated/api.d.ts.map +1 -0
- package/dist/types/index.d.ts +45 -43
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +158 -0
- package/dist/types/resources/actions.d.ts.map +1 -0
- package/dist/types/resources/agents.d.ts +70 -22
- package/dist/types/resources/agents.d.ts.map +1 -1
- package/dist/types/resources/analytics.d.ts +100 -118
- package/dist/types/resources/analytics.d.ts.map +1 -1
- package/dist/types/resources/api-keys.d.ts +36 -7
- package/dist/types/resources/api-keys.d.ts.map +1 -1
- package/dist/types/resources/audit.d.ts +70 -0
- package/dist/types/resources/audit.d.ts.map +1 -0
- package/dist/types/resources/base.d.ts +13 -13
- package/dist/types/resources/base.d.ts.map +1 -1
- package/dist/types/resources/billing.d.ts +52 -12
- package/dist/types/resources/billing.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +89 -35
- package/dist/types/resources/calls.d.ts.map +1 -1
- package/dist/types/resources/compliance.d.ts +45 -0
- package/dist/types/resources/compliance.d.ts.map +1 -0
- package/dist/types/resources/context-graphs.d.ts +77 -14
- package/dist/types/resources/context-graphs.d.ts.map +1 -1
- package/dist/types/resources/data-sources.d.ts +105 -9
- package/dist/types/resources/data-sources.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts +46 -0
- package/dist/types/resources/functions.d.ts.map +1 -0
- package/dist/types/resources/integrations.d.ts +83 -12
- package/dist/types/resources/integrations.d.ts.map +1 -1
- package/dist/types/resources/memory.d.ts +26 -73
- package/dist/types/resources/memory.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts +157 -0
- package/dist/types/resources/operators.d.ts.map +1 -0
- package/dist/types/resources/personas.d.ts +60 -0
- package/dist/types/resources/personas.d.ts.map +1 -0
- package/dist/types/resources/phone-numbers.d.ts +70 -10
- package/dist/types/resources/phone-numbers.d.ts.map +1 -1
- package/dist/types/resources/recordings.d.ts +29 -0
- package/dist/types/resources/recordings.d.ts.map +1 -0
- package/dist/types/resources/review-queue.d.ts +184 -0
- package/dist/types/resources/review-queue.d.ts.map +1 -0
- package/dist/types/resources/safety.d.ts +57 -0
- package/dist/types/resources/safety.d.ts.map +1 -0
- package/dist/types/resources/services.d.ts +85 -5
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +79 -78
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/simulations.d.ts +41 -12
- package/dist/types/resources/simulations.d.ts.map +1 -1
- package/dist/types/resources/skills.d.ts +131 -6
- package/dist/types/resources/skills.d.ts.map +1 -1
- package/dist/types/resources/triggers.d.ts +129 -0
- package/dist/types/resources/triggers.d.ts.map +1 -0
- package/dist/types/resources/webhook-destinations.d.ts +75 -0
- package/dist/types/resources/webhook-destinations.d.ts.map +1 -0
- package/dist/types/resources/workspaces.d.ts +60 -15
- package/dist/types/resources/workspaces.d.ts.map +1 -1
- package/dist/types/resources/world.d.ts +152 -143
- package/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +6 -3
- package/dist/types/api.js +0 -12
- package/dist/types/types/api.d.ts +0 -739
- package/dist/types/types/api.d.ts.map +0 -1
|
@@ -1,33 +1,15 @@
|
|
|
1
|
-
import type { Call, ListCallsParams, PaginatedResponse } from '../types/api.js';
|
|
2
1
|
import { WorkspaceScopedResource } from './base.js';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
export interface CallTranscriptSegment {
|
|
15
|
-
speaker: 'agent' | 'customer';
|
|
16
|
-
text: string;
|
|
17
|
-
start_seconds: number;
|
|
18
|
-
end_seconds: number;
|
|
19
|
-
}
|
|
20
|
-
export interface CallDetail extends Call {
|
|
21
|
-
intelligence: CallIntelligence | null;
|
|
22
|
-
transcript: CallTranscriptSegment[];
|
|
23
|
-
}
|
|
24
|
-
export interface CallBenchmarks {
|
|
25
|
-
workspace_id: string;
|
|
26
|
-
period_start: string;
|
|
27
|
-
period_end: string;
|
|
28
|
-
avg_duration_seconds: number;
|
|
29
|
-
answer_rate: number | null;
|
|
30
|
-
completion_rate: number | null;
|
|
2
|
+
import type { ListParams } from '../core/utils.js';
|
|
3
|
+
export interface ListCallsParams extends ListParams {
|
|
4
|
+
status?: string;
|
|
5
|
+
agent_id?: string;
|
|
6
|
+
start_date?: string;
|
|
7
|
+
end_date?: string;
|
|
8
|
+
phone_number?: string;
|
|
9
|
+
direction?: string;
|
|
10
|
+
min_duration?: number;
|
|
11
|
+
max_duration?: number;
|
|
12
|
+
search?: string;
|
|
31
13
|
}
|
|
32
14
|
/**
|
|
33
15
|
* Access call records and intelligence.
|
|
@@ -35,16 +17,88 @@ export interface CallBenchmarks {
|
|
|
35
17
|
*/
|
|
36
18
|
export declare class CallsResource extends WorkspaceScopedResource {
|
|
37
19
|
/** List calls with optional filtering */
|
|
38
|
-
list(params?: ListCallsParams): Promise<
|
|
39
|
-
|
|
40
|
-
|
|
20
|
+
list(params?: ListCallsParams): Promise<{
|
|
21
|
+
items: import("../index.js").components["schemas"]["CallSummary"][];
|
|
22
|
+
total: number;
|
|
23
|
+
has_more: boolean;
|
|
24
|
+
continuation_token?: number | null;
|
|
25
|
+
}>;
|
|
26
|
+
/** Get full call detail including turns, escalation, safety, and recording info */
|
|
27
|
+
get(callId: string): Promise<{
|
|
28
|
+
[key: string]: unknown;
|
|
29
|
+
}>;
|
|
41
30
|
/** Get AI intelligence for a call */
|
|
42
|
-
getIntelligence(
|
|
31
|
+
getIntelligence(callId: string): Promise<{
|
|
32
|
+
call_id: string;
|
|
33
|
+
call_sid?: string | null;
|
|
34
|
+
direction?: string;
|
|
35
|
+
duration_seconds?: number;
|
|
36
|
+
quality_score?: number | null;
|
|
37
|
+
quality_breakdown?: import("../index.js").components["schemas"]["QualityBreakdown"] | null;
|
|
38
|
+
key_moments?: import("../index.js").components["schemas"]["KeyMoment"][];
|
|
39
|
+
emotion_summary?: {
|
|
40
|
+
[key: string]: unknown;
|
|
41
|
+
} | null;
|
|
42
|
+
risk_summary?: {
|
|
43
|
+
[key: string]: unknown;
|
|
44
|
+
} | null;
|
|
45
|
+
latency_summary?: {
|
|
46
|
+
[key: string]: unknown;
|
|
47
|
+
} | null;
|
|
48
|
+
conversation_summary?: {
|
|
49
|
+
[key: string]: unknown;
|
|
50
|
+
} | null;
|
|
51
|
+
tool_summary?: {
|
|
52
|
+
[key: string]: unknown;
|
|
53
|
+
} | null;
|
|
54
|
+
safety_summary?: {
|
|
55
|
+
[key: string]: unknown;
|
|
56
|
+
} | null;
|
|
57
|
+
operator_summary?: {
|
|
58
|
+
[key: string]: unknown;
|
|
59
|
+
} | null;
|
|
60
|
+
completion_reason?: string | null;
|
|
61
|
+
final_state?: string | null;
|
|
62
|
+
created_at?: string | null;
|
|
63
|
+
}>;
|
|
43
64
|
/** Get active intelligence across all in-progress calls */
|
|
44
|
-
getActiveIntelligence(): Promise<
|
|
65
|
+
getActiveIntelligence(): Promise<{
|
|
66
|
+
[key: string]: unknown;
|
|
67
|
+
}[]>;
|
|
45
68
|
/** Get performance benchmarks for a time period */
|
|
46
69
|
getBenchmarks(params?: {
|
|
47
70
|
days?: number;
|
|
48
|
-
}): Promise<
|
|
71
|
+
}): Promise<{
|
|
72
|
+
avg_quality_score?: number | null;
|
|
73
|
+
p50_quality_score?: number | null;
|
|
74
|
+
p25_quality_score?: number | null;
|
|
75
|
+
p75_quality_score?: number | null;
|
|
76
|
+
total_calls?: number;
|
|
77
|
+
avg_duration_seconds?: number | null;
|
|
78
|
+
escalation_rate?: number;
|
|
79
|
+
quality_distribution?: {
|
|
80
|
+
[key: string]: number;
|
|
81
|
+
};
|
|
82
|
+
}>;
|
|
83
|
+
/** Get deep call trace analysis */
|
|
84
|
+
getTraceAnalysis(callId: string): Promise<{
|
|
85
|
+
call_sid: string;
|
|
86
|
+
status?: "ready" | "pending" | "unavailable";
|
|
87
|
+
summary?: string | null;
|
|
88
|
+
outcome?: ("succeeded" | "partially" | "failed" | "abandoned") | null;
|
|
89
|
+
key_moment_count?: number;
|
|
90
|
+
key_moments?: import("../index.js").components["schemas"]["TraceKeyMoment"][];
|
|
91
|
+
emotional_arc?: string | null;
|
|
92
|
+
emotional_shifts?: import("../index.js").components["schemas"]["EmotionalShift"][];
|
|
93
|
+
interaction_dynamics?: import("../index.js").components["schemas"]["InteractionDynamics"] | null;
|
|
94
|
+
coaching?: import("../index.js").components["schemas"]["CoachingItem"][];
|
|
95
|
+
counterfactuals?: import("../index.js").components["schemas"]["Counterfactual"][];
|
|
96
|
+
deep_understanding?: string | null;
|
|
97
|
+
signal_response_alignment?: import("../index.js").components["schemas"]["SignalResponseAlignment"][];
|
|
98
|
+
missed_opportunities?: string[];
|
|
99
|
+
emergent_patterns?: string[];
|
|
100
|
+
call_entity_id?: string | null;
|
|
101
|
+
computed_at?: string | null;
|
|
102
|
+
}>;
|
|
49
103
|
}
|
|
50
104
|
//# sourceMappingURL=calls.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calls.d.ts","sourceRoot":"","sources":["../../../src/resources/calls.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"calls.d.ts","sourceRoot":"","sources":["../../../src/resources/calls.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,eAAgB,SAAQ,UAAU;IACjD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED;;;GAGG;AACH,qBAAa,aAAc,SAAQ,uBAAuB;IACxD,yCAAyC;IACnC,IAAI,CAAC,MAAM,CAAC,EAAE,eAAe;eAqD49iP,2CAAsB;;;;;IA7CrhjP,mFAAmF;IAC7E,GAAG,CAAC,MAAM,EAAE,MAAM;;;IAQxB,qCAAqC;IAC/B,eAAe,CAAC,MAAM,EAAE,MAAM;;;;;;4BAmCyjgP,2CAAsB;sBAA4I,2CAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;IA3BrxgP,2DAA2D;IACrD,qBAAqB;;;IAQ3B,mDAAmD;IAC7C,aAAa,CAAC,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;IAQ9C,mCAAmC;IAC7B,gBAAgB,CAAC,MAAM,EAAE,MAAM;;;;;;sBAQu8ngB,2CAAsB;;2BAA8b,2CAAsB;+BAAgI,2CAAsB;mBAAqN,2CAAsB;0BAAiN,2CAAsB;;oCAAwe,2CAAsB;;;;;;CAD7jrgB"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { WorkspaceScopedResource } from './base.js';
|
|
2
|
+
export declare class ComplianceResource extends WorkspaceScopedResource {
|
|
3
|
+
getDashboard(): Promise<{
|
|
4
|
+
hipaa_status: string;
|
|
5
|
+
retention_days: number | null;
|
|
6
|
+
legal_hold: boolean;
|
|
7
|
+
total_credentials: number;
|
|
8
|
+
active_credentials: number;
|
|
9
|
+
last_audit_export: string | null;
|
|
10
|
+
generated_at: string;
|
|
11
|
+
}>;
|
|
12
|
+
getHipaa(params?: {
|
|
13
|
+
report_period_days?: number;
|
|
14
|
+
}): Promise<{
|
|
15
|
+
generated_at: string;
|
|
16
|
+
report_period_days: number;
|
|
17
|
+
workspace_id: string;
|
|
18
|
+
audit_summary: {
|
|
19
|
+
[key: string]: unknown;
|
|
20
|
+
};
|
|
21
|
+
retention_policy: {
|
|
22
|
+
[key: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
encryption: {
|
|
25
|
+
[key: string]: boolean;
|
|
26
|
+
};
|
|
27
|
+
access_controls: {
|
|
28
|
+
[key: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
api_key_summary: {
|
|
31
|
+
[key: string]: number;
|
|
32
|
+
};
|
|
33
|
+
compliance_status: string;
|
|
34
|
+
}>;
|
|
35
|
+
getAccessReview(): Promise<{
|
|
36
|
+
generated_at: string;
|
|
37
|
+
workspace_id: string;
|
|
38
|
+
credentials: {
|
|
39
|
+
[key: string]: unknown;
|
|
40
|
+
}[];
|
|
41
|
+
total_credentials: number;
|
|
42
|
+
jwt_credentials_note: string;
|
|
43
|
+
}>;
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=compliance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compliance.d.ts","sourceRoot":"","sources":["../../../src/resources/compliance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAEhE,qBAAa,kBAAmB,SAAQ,uBAAuB;IACvD,YAAY;;;;;;;;;IAQZ,QAAQ,CAAC,MAAM,CAAC,EAAE;QAAE,kBAAkB,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;IAQjD,eAAe;;;;;;;;;CAOtB"}
|
|
@@ -1,32 +1,95 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { components } from '../generated/api.js';
|
|
2
2
|
import type { ContextGraphId } from '../core/branded-types.js';
|
|
3
3
|
import { WorkspaceScopedResource } from './base.js';
|
|
4
4
|
import type { ListParams } from '../core/utils.js';
|
|
5
5
|
export interface ListContextGraphsParams extends ListParams {
|
|
6
6
|
search?: string;
|
|
7
7
|
}
|
|
8
|
-
export interface ContextGraphVersion {
|
|
9
|
-
context_graph_id: string;
|
|
10
|
-
version: number;
|
|
11
|
-
schema_snapshot: Record<string, unknown>;
|
|
12
|
-
created_at: string;
|
|
13
|
-
}
|
|
14
8
|
/**
|
|
15
9
|
* Manage context graphs — structured conversation flow definitions (HSM).
|
|
16
10
|
* Context graphs define the states, transitions, and conditions that
|
|
17
11
|
* govern how an agent moves through a conversation.
|
|
18
12
|
*/
|
|
19
13
|
export declare class ContextGraphsResource extends WorkspaceScopedResource {
|
|
20
|
-
create(body: CreateContextGraphRequest): Promise<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
create(body: components['schemas']['CreateContextGraphRequest']): Promise<{
|
|
15
|
+
id: string;
|
|
16
|
+
workspace_id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
latest_version?: number | null;
|
|
20
|
+
state_count?: number | null;
|
|
21
|
+
created_at: string;
|
|
22
|
+
updated_at: string;
|
|
23
|
+
}>;
|
|
24
|
+
list(params?: ListContextGraphsParams): Promise<{
|
|
25
|
+
items: components["schemas"]["ContextGraphResponse"][];
|
|
26
|
+
has_more: boolean;
|
|
27
|
+
continuation_token?: number | null;
|
|
28
|
+
total?: number | null;
|
|
29
|
+
}>;
|
|
30
|
+
get(contextGraphId: ContextGraphId | string): Promise<{
|
|
31
|
+
id: string;
|
|
32
|
+
workspace_id: string;
|
|
33
|
+
name: string;
|
|
34
|
+
description: string;
|
|
35
|
+
latest_version?: number | null;
|
|
36
|
+
state_count?: number | null;
|
|
37
|
+
created_at: string;
|
|
38
|
+
updated_at: string;
|
|
39
|
+
}>;
|
|
40
|
+
update(contextGraphId: ContextGraphId | string, body: components['schemas']['UpdateContextGraphRequest']): Promise<{
|
|
41
|
+
id: string;
|
|
42
|
+
workspace_id: string;
|
|
43
|
+
name: string;
|
|
44
|
+
description: string;
|
|
45
|
+
latest_version?: number | null;
|
|
46
|
+
state_count?: number | null;
|
|
47
|
+
created_at: string;
|
|
48
|
+
updated_at: string;
|
|
49
|
+
}>;
|
|
24
50
|
delete(contextGraphId: ContextGraphId | string): Promise<void>;
|
|
25
51
|
/** Create a version snapshot of the current context graph */
|
|
26
|
-
createVersion(contextGraphId: ContextGraphId | string): Promise<
|
|
52
|
+
createVersion(contextGraphId: ContextGraphId | string, body: components['schemas']['CreateContextGraphVersionRequest']): Promise<{
|
|
53
|
+
id: string;
|
|
54
|
+
workspace_id: string;
|
|
55
|
+
context_graph_id: string;
|
|
56
|
+
version: number;
|
|
57
|
+
description: string;
|
|
58
|
+
states: components["schemas"]["ContextGraphState-Output"][];
|
|
59
|
+
new_user_initial_state: string;
|
|
60
|
+
returning_user_initial_state: string;
|
|
61
|
+
terminal_state: string;
|
|
62
|
+
global_intra_state_navigation_guidelines: string[];
|
|
63
|
+
global_action_guidelines: string[];
|
|
64
|
+
global_boundary_constraints: string[];
|
|
65
|
+
topology_description: string | null;
|
|
66
|
+
created_at: string;
|
|
67
|
+
updated_at: string;
|
|
68
|
+
}>;
|
|
27
69
|
/** List all versions of a context graph */
|
|
28
|
-
listVersions(contextGraphId: ContextGraphId | string, params?: ListParams): Promise<
|
|
70
|
+
listVersions(contextGraphId: ContextGraphId | string, params?: ListParams): Promise<{
|
|
71
|
+
items: components["schemas"]["ContextGraphVersionResponse"][];
|
|
72
|
+
has_more: boolean;
|
|
73
|
+
continuation_token?: number | null;
|
|
74
|
+
total?: number | null;
|
|
75
|
+
}>;
|
|
29
76
|
/** Get a specific version */
|
|
30
|
-
getVersion(contextGraphId: ContextGraphId | string, version: number): Promise<
|
|
77
|
+
getVersion(contextGraphId: ContextGraphId | string, version: number): Promise<{
|
|
78
|
+
id: string;
|
|
79
|
+
workspace_id: string;
|
|
80
|
+
context_graph_id: string;
|
|
81
|
+
version: number;
|
|
82
|
+
description: string;
|
|
83
|
+
states: components["schemas"]["ContextGraphState-Output"][];
|
|
84
|
+
new_user_initial_state: string;
|
|
85
|
+
returning_user_initial_state: string;
|
|
86
|
+
terminal_state: string;
|
|
87
|
+
global_intra_state_navigation_guidelines: string[];
|
|
88
|
+
global_action_guidelines: string[];
|
|
89
|
+
global_boundary_constraints: string[];
|
|
90
|
+
topology_description: string | null;
|
|
91
|
+
created_at: string;
|
|
92
|
+
updated_at: string;
|
|
93
|
+
}>;
|
|
31
94
|
}
|
|
32
95
|
//# sourceMappingURL=context-graphs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context-graphs.d.ts","sourceRoot":"","sources":["../../../src/resources/context-graphs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"context-graphs.d.ts","sourceRoot":"","sources":["../../../src/resources/context-graphs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,uBAAwB,SAAQ,UAAU;IACzD,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED;;;;GAIG;AACH,qBAAa,qBAAsB,SAAQ,uBAAuB;IAC1D,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,2BAA2B,CAAC;;;;;;;;;;IAS/D,IAAI,CAAC,MAAM,CAAC,EAAE,uBAAuB;eAqF4p+Z,qBAAsB;;;;;IA7Evt+Z,GAAG,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM;;;;;;;;;;IAU3C,MAAM,CACV,cAAc,EAAE,cAAc,GAAG,MAAM,EACvC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,2BAA2B,CAAC;;;;;;;;;;IAYpD,MAAM,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAQpE,6DAA6D;IACvD,aAAa,CACjB,cAAc,EAAE,cAAc,GAAG,MAAM,EACvC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,kCAAkC,CAAC;;;;;;gBA0Ci7pQ,qBAAsB;;;;;;;;;;;IA9BxgqQ,2CAA2C;IACrC,YAAY,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM,EAAE,MAAM,CAAC,EAAE,UAAU;eA6Bqi/Z,qBAAsB;;;;;IAlB1o/Z,6BAA6B;IACvB,UAAU,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM,EAAE,OAAO,EAAE,MAAM;;;;;;gBAiBy6pQ,qBAAsB;;;;;;;;;;;CADzgqQ"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { components } from '../generated/api.js';
|
|
2
2
|
import type { DataSourceId } from '../core/branded-types.js';
|
|
3
3
|
import { WorkspaceScopedResource } from './base.js';
|
|
4
4
|
import type { ListParams } from '../core/utils.js';
|
|
@@ -6,19 +6,115 @@ export interface ListDataSourcesParams extends ListParams {
|
|
|
6
6
|
type?: string;
|
|
7
7
|
status?: string;
|
|
8
8
|
}
|
|
9
|
-
export interface UpdateDataSourceRequest {
|
|
10
|
-
name?: string;
|
|
11
|
-
connection_config?: Record<string, unknown>;
|
|
12
|
-
}
|
|
13
9
|
/**
|
|
14
10
|
* Manage data sources — connections to external databases, warehouses,
|
|
15
11
|
* or data feeds that the platform can query and sync from.
|
|
16
12
|
*/
|
|
17
13
|
export declare class DataSourcesResource extends WorkspaceScopedResource {
|
|
18
|
-
create(body: CreateDataSourceRequest): Promise<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
14
|
+
create(body: components['schemas']['CreateDataSourceRequest']): Promise<{
|
|
15
|
+
id: string;
|
|
16
|
+
workspace_id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
display_name: string | null;
|
|
19
|
+
source_type: string;
|
|
20
|
+
connection_config: {
|
|
21
|
+
[key: string]: unknown;
|
|
22
|
+
};
|
|
23
|
+
entity_types: string[] | null;
|
|
24
|
+
field_mappings: {
|
|
25
|
+
[key: string]: unknown;
|
|
26
|
+
};
|
|
27
|
+
sync_strategy: string;
|
|
28
|
+
sync_schedule: string | null;
|
|
29
|
+
last_sync_at: string | null;
|
|
30
|
+
last_sync_status: string | null;
|
|
31
|
+
last_sync_event_count: number;
|
|
32
|
+
is_active: boolean;
|
|
33
|
+
is_stale: boolean;
|
|
34
|
+
health_status: string;
|
|
35
|
+
last_health_check: string | null;
|
|
36
|
+
discovered_by: string | null;
|
|
37
|
+
created_at: string;
|
|
38
|
+
updated_at: string;
|
|
39
|
+
}>;
|
|
40
|
+
list(params?: ListDataSourcesParams): Promise<{
|
|
41
|
+
items: components["schemas"]["DataSourceResponse"][];
|
|
42
|
+
has_more: boolean;
|
|
43
|
+
continuation_token?: number | null;
|
|
44
|
+
total?: number | null;
|
|
45
|
+
}>;
|
|
46
|
+
get(dataSourceId: DataSourceId | string): Promise<{
|
|
47
|
+
id: string;
|
|
48
|
+
workspace_id: string;
|
|
49
|
+
name: string;
|
|
50
|
+
display_name: string | null;
|
|
51
|
+
source_type: string;
|
|
52
|
+
connection_config: {
|
|
53
|
+
[key: string]: unknown;
|
|
54
|
+
};
|
|
55
|
+
entity_types: string[] | null;
|
|
56
|
+
field_mappings: {
|
|
57
|
+
[key: string]: unknown;
|
|
58
|
+
};
|
|
59
|
+
sync_strategy: string;
|
|
60
|
+
sync_schedule: string | null;
|
|
61
|
+
last_sync_at: string | null;
|
|
62
|
+
last_sync_status: string | null;
|
|
63
|
+
last_sync_event_count: number;
|
|
64
|
+
is_active: boolean;
|
|
65
|
+
is_stale: boolean;
|
|
66
|
+
health_status: string;
|
|
67
|
+
last_health_check: string | null;
|
|
68
|
+
discovered_by: string | null;
|
|
69
|
+
created_at: string;
|
|
70
|
+
updated_at: string;
|
|
71
|
+
}>;
|
|
72
|
+
update(dataSourceId: DataSourceId | string, body: components['schemas']['UpdateDataSourceRequest']): Promise<{
|
|
73
|
+
id: string;
|
|
74
|
+
workspace_id: string;
|
|
75
|
+
name: string;
|
|
76
|
+
display_name: string | null;
|
|
77
|
+
source_type: string;
|
|
78
|
+
connection_config: {
|
|
79
|
+
[key: string]: unknown;
|
|
80
|
+
};
|
|
81
|
+
entity_types: string[] | null;
|
|
82
|
+
field_mappings: {
|
|
83
|
+
[key: string]: unknown;
|
|
84
|
+
};
|
|
85
|
+
sync_strategy: string;
|
|
86
|
+
sync_schedule: string | null;
|
|
87
|
+
last_sync_at: string | null;
|
|
88
|
+
last_sync_status: string | null;
|
|
89
|
+
last_sync_event_count: number;
|
|
90
|
+
is_active: boolean;
|
|
91
|
+
is_stale: boolean;
|
|
92
|
+
health_status: string;
|
|
93
|
+
last_health_check: string | null;
|
|
94
|
+
discovered_by: string | null;
|
|
95
|
+
created_at: string;
|
|
96
|
+
updated_at: string;
|
|
97
|
+
}>;
|
|
22
98
|
delete(dataSourceId: DataSourceId | string): Promise<void>;
|
|
99
|
+
/** Get event counts, sync status, and health for a data source */
|
|
100
|
+
getStatus(dataSourceId: DataSourceId | string): Promise<{
|
|
101
|
+
data_source_id: string;
|
|
102
|
+
name: string;
|
|
103
|
+
is_active: boolean;
|
|
104
|
+
health_status: string;
|
|
105
|
+
last_sync_at: string | null;
|
|
106
|
+
last_sync_status: string | null;
|
|
107
|
+
last_sync_event_count: number;
|
|
108
|
+
event_count: number;
|
|
109
|
+
synced_count: number;
|
|
110
|
+
failed_count: number;
|
|
111
|
+
}>;
|
|
112
|
+
/** Get daily event timeline + recent sync failures for a data source */
|
|
113
|
+
getSyncHistory(dataSourceId: DataSourceId | string): Promise<{
|
|
114
|
+
data_source_id: string;
|
|
115
|
+
name: string;
|
|
116
|
+
timeline: components["schemas"]["SyncHistoryEntry"][];
|
|
117
|
+
recent_failures: components["schemas"]["SyncFailureEntry"][];
|
|
118
|
+
}>;
|
|
23
119
|
}
|
|
24
120
|
//# sourceMappingURL=data-sources.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-sources.d.ts","sourceRoot":"","sources":["../../../src/resources/data-sources.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"data-sources.d.ts","sourceRoot":"","sources":["../../../src/resources/data-sources.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAC5D,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,qBAAsB,SAAQ,UAAU;IACvD,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED;;;GAGG;AACH,qBAAa,mBAAoB,SAAQ,uBAAuB;IACxD,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,yBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;IAS7D,IAAI,CAAC,MAAM,CAAC,EAAE,qBAAqB;eAoD6oia,qBAAsB;;;;;IA5Ctsia,GAAG,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;IAQvC,MAAM,CACV,YAAY,EAAE,YAAY,GAAG,MAAM,EACnC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,yBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;IAUlD,MAAM,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAMhE,kEAAkE;IAC5D,SAAS,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM;;;;;;;;;;;;IAQnD,wEAAwE;IAClE,cAAc,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM;;;kBAQ48hT,qBAAsB;yBAAuF,qBAAsB;;CADxoiT"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { components } from '../generated/api.js';
|
|
2
|
+
import { WorkspaceScopedResource } from './base.js';
|
|
3
|
+
export declare class FunctionsResource extends WorkspaceScopedResource {
|
|
4
|
+
list(): Promise<{
|
|
5
|
+
items: components["schemas"]["FunctionDef"][];
|
|
6
|
+
count: number;
|
|
7
|
+
}>;
|
|
8
|
+
create(body: components['schemas']['FunctionCreateRequest']): Promise<{
|
|
9
|
+
name: components["schemas"]["NameString"];
|
|
10
|
+
catalog?: string;
|
|
11
|
+
schema?: string;
|
|
12
|
+
description?: components["schemas"]["DescriptionString"];
|
|
13
|
+
input_schema?: {
|
|
14
|
+
[key: string]: unknown;
|
|
15
|
+
};
|
|
16
|
+
returns_table?: boolean;
|
|
17
|
+
enabled?: boolean;
|
|
18
|
+
function_type?: string;
|
|
19
|
+
}>;
|
|
20
|
+
delete(functionName: string): Promise<void>;
|
|
21
|
+
test(functionName: string, body: components['schemas']['FunctionTestRequest']): Promise<{
|
|
22
|
+
result?: unknown;
|
|
23
|
+
duration_ms?: number;
|
|
24
|
+
error?: string | null;
|
|
25
|
+
function_name?: string;
|
|
26
|
+
}>;
|
|
27
|
+
getCatalog(): Promise<{
|
|
28
|
+
functions: components["schemas"]["CatalogFunctionDef"][];
|
|
29
|
+
count?: number;
|
|
30
|
+
catalog?: string;
|
|
31
|
+
schema?: string;
|
|
32
|
+
}>;
|
|
33
|
+
query(body: components['schemas']['QueryRequest']): Promise<{
|
|
34
|
+
results?: {
|
|
35
|
+
[key: string]: unknown;
|
|
36
|
+
}[];
|
|
37
|
+
count?: number;
|
|
38
|
+
duration_ms?: number;
|
|
39
|
+
error?: string | null;
|
|
40
|
+
}>;
|
|
41
|
+
sync(): Promise<{
|
|
42
|
+
items: components["schemas"]["FunctionDef"][];
|
|
43
|
+
count: number;
|
|
44
|
+
}>;
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=functions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.d.ts","sourceRoot":"","sources":["../../../src/resources/functions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAEhE,qBAAa,iBAAkB,SAAQ,uBAAuB;IACtD,IAAI;eAyDos6W,qBAAsB;;;IAjD9t6W,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,uBAAuB,CAAC;cAiD0o4W,qBAAsB;;;sBAA8S,qBAAsB;;;;;;;;IAxC/h5W,MAAM,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAM3C,IAAI,CAAC,YAAY,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,qBAAqB,CAAC;;;;;;IAS7E,UAAU;mBAyB47qP,qBAAsB;;;;;IAjB59qP,KAAK,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC;;;;;;;;IASjD,IAAI;eAQos6W,qBAAsB;;;CADru6W"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { components } from '../generated/api.js';
|
|
2
2
|
import type { IntegrationId } from '../core/branded-types.js';
|
|
3
3
|
import { WorkspaceScopedResource } from './base.js';
|
|
4
4
|
import type { ListParams } from '../core/utils.js';
|
|
@@ -7,32 +7,103 @@ export interface ListIntegrationsParams extends ListParams {
|
|
|
7
7
|
enabled?: boolean;
|
|
8
8
|
search?: string;
|
|
9
9
|
}
|
|
10
|
-
export interface IntegrationTestResult {
|
|
11
|
-
success: boolean;
|
|
12
|
-
message: string;
|
|
13
|
-
latency_ms: number;
|
|
14
|
-
}
|
|
15
10
|
/**
|
|
16
11
|
* Manage integrations — connections to external systems (EHRs, CRMs, etc.).
|
|
17
12
|
* Integrations power connector data acquisition and skill tool calls.
|
|
18
13
|
*/
|
|
19
14
|
export declare class IntegrationsResource extends WorkspaceScopedResource {
|
|
20
15
|
/** Create a new integration */
|
|
21
|
-
create(body: CreateIntegrationRequest): Promise<
|
|
16
|
+
create(body: components['schemas']['CreateIntegrationRequest']): Promise<{
|
|
17
|
+
id: string;
|
|
18
|
+
workspace_id: string;
|
|
19
|
+
name: string;
|
|
20
|
+
display_name: string;
|
|
21
|
+
protocol: string;
|
|
22
|
+
base_url?: string;
|
|
23
|
+
auth?: components["schemas"]["AuthConfig"] | null;
|
|
24
|
+
endpoints?: components["schemas"]["EndpointConfig"][];
|
|
25
|
+
enabled: boolean;
|
|
26
|
+
builtin?: boolean;
|
|
27
|
+
created_at: string;
|
|
28
|
+
updated_at: string;
|
|
29
|
+
mcp_transport?: string | null;
|
|
30
|
+
mcp_command?: string | null;
|
|
31
|
+
mcp_args?: string[] | null;
|
|
32
|
+
mcp_url?: string | null;
|
|
33
|
+
mcp_headers?: {
|
|
34
|
+
[key: string]: string;
|
|
35
|
+
} | null;
|
|
36
|
+
}>;
|
|
22
37
|
/** List integrations */
|
|
23
|
-
list(params?: ListIntegrationsParams): Promise<
|
|
38
|
+
list(params?: ListIntegrationsParams): Promise<{
|
|
39
|
+
items: components["schemas"]["IntegrationResponse"][];
|
|
40
|
+
has_more: boolean;
|
|
41
|
+
continuation_token?: number | null;
|
|
42
|
+
total?: number | null;
|
|
43
|
+
}>;
|
|
24
44
|
/** Get a single integration */
|
|
25
|
-
get(integrationId: IntegrationId | string): Promise<
|
|
45
|
+
get(integrationId: IntegrationId | string): Promise<{
|
|
46
|
+
id: string;
|
|
47
|
+
workspace_id: string;
|
|
48
|
+
name: string;
|
|
49
|
+
display_name: string;
|
|
50
|
+
protocol: string;
|
|
51
|
+
base_url?: string;
|
|
52
|
+
auth?: components["schemas"]["AuthConfig"] | null;
|
|
53
|
+
endpoints?: components["schemas"]["EndpointConfig"][];
|
|
54
|
+
enabled: boolean;
|
|
55
|
+
builtin?: boolean;
|
|
56
|
+
created_at: string;
|
|
57
|
+
updated_at: string;
|
|
58
|
+
mcp_transport?: string | null;
|
|
59
|
+
mcp_command?: string | null;
|
|
60
|
+
mcp_args?: string[] | null;
|
|
61
|
+
mcp_url?: string | null;
|
|
62
|
+
mcp_headers?: {
|
|
63
|
+
[key: string]: string;
|
|
64
|
+
} | null;
|
|
65
|
+
}>;
|
|
26
66
|
/** Update integration configuration */
|
|
27
|
-
update(integrationId: IntegrationId | string, body: UpdateIntegrationRequest): Promise<
|
|
67
|
+
update(integrationId: IntegrationId | string, body: components['schemas']['UpdateIntegrationRequest']): Promise<{
|
|
68
|
+
id: string;
|
|
69
|
+
workspace_id: string;
|
|
70
|
+
name: string;
|
|
71
|
+
display_name: string;
|
|
72
|
+
protocol: string;
|
|
73
|
+
base_url?: string;
|
|
74
|
+
auth?: components["schemas"]["AuthConfig"] | null;
|
|
75
|
+
endpoints?: components["schemas"]["EndpointConfig"][];
|
|
76
|
+
enabled: boolean;
|
|
77
|
+
builtin?: boolean;
|
|
78
|
+
created_at: string;
|
|
79
|
+
updated_at: string;
|
|
80
|
+
mcp_transport?: string | null;
|
|
81
|
+
mcp_command?: string | null;
|
|
82
|
+
mcp_args?: string[] | null;
|
|
83
|
+
mcp_url?: string | null;
|
|
84
|
+
mcp_headers?: {
|
|
85
|
+
[key: string]: string;
|
|
86
|
+
} | null;
|
|
87
|
+
}>;
|
|
28
88
|
/** Delete an integration */
|
|
29
89
|
delete(integrationId: IntegrationId | string): Promise<void>;
|
|
30
90
|
/**
|
|
31
91
|
* Test a specific endpoint on an integration with given params.
|
|
32
92
|
* Used in the developer console to validate integration config.
|
|
33
93
|
*/
|
|
34
|
-
testEndpoint(integrationId: IntegrationId | string, endpointName: string,
|
|
94
|
+
testEndpoint(integrationId: IntegrationId | string, endpointName: string, body: components['schemas']['TestEndpointRequest']): Promise<{
|
|
95
|
+
status_code?: number | null;
|
|
96
|
+
duration_ms?: number;
|
|
97
|
+
retries?: number;
|
|
98
|
+
raw_response?: unknown;
|
|
99
|
+
after_filter?: unknown;
|
|
100
|
+
after_mapping?: unknown;
|
|
101
|
+
final_result?: string | null;
|
|
102
|
+
error?: string | null;
|
|
103
|
+
}>;
|
|
35
104
|
/** Check health of all integrations in the workspace */
|
|
36
|
-
getHealthCheck(): Promise<
|
|
105
|
+
getHealthCheck(): Promise<{
|
|
106
|
+
[key: string]: unknown;
|
|
107
|
+
}>;
|
|
37
108
|
}
|
|
38
109
|
//# sourceMappingURL=integrations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integrations.d.ts","sourceRoot":"","sources":["../../../src/resources/integrations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"integrations.d.ts","sourceRoot":"","sources":["../../../src/resources/integrations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AAC7D,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,sBAAuB,SAAQ,UAAU;IACxD,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED;;;GAGG;AACH,qBAAa,oBAAqB,SAAQ,uBAAuB;IAC/D,+BAA+B;IACzB,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,0BAA0B,CAAC;;;;;;;eAkFklvX,qBAAsB;oBAAkI,qBAAsB;;;;;;;;;;;;;IAzEp0vX,wBAAwB;IAClB,IAAI,CAAC,MAAM,CAAC,EAAE,sBAAsB;eAwEw4ja,qBAAsB;;;;;IAhEx8ja,+BAA+B;IACzB,GAAG,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM;;;;;;;eA+DumvX,qBAAsB;oBAAkI,qBAAsB;;;;;;;;;;;;;IAvDp0vX,uCAAuC;IACjC,MAAM,CACV,aAAa,EAAE,aAAa,GAAG,MAAM,EACrC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,0BAA0B,CAAC;;;;;;;eAoD6lvX,qBAAsB;oBAAkI,qBAAsB;;;;;;;;;;;;;IA1Cp0vX,4BAA4B;IACtB,MAAM,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAMlE;;;OAGG;IACG,YAAY,CAChB,aAAa,EAAE,aAAa,GAAG,MAAM,EACrC,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,qBAAqB,CAAC;;;;;;;;;;IAmBpD,wDAAwD;IAClD,cAAc;;;CAOrB"}
|