openpond-sdk 0.0.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/LICENSE +21 -0
- package/README.md +127 -0
- package/dist/index.js +2635 -0
- package/dist/index.js.map +7 -0
- package/dist/types/packages/cloud/src/api/core.d.ts +23 -0
- package/dist/types/packages/cloud/src/api/core.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/api/vercel-protection.d.ts +2 -0
- package/dist/types/packages/cloud/src/api/vercel-protection.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/hosted-chat.d.ts +163 -0
- package/dist/types/packages/cloud/src/hosted-chat.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/async-request-options.d.ts +3 -0
- package/dist/types/packages/cloud/src/sandbox/async-request-options.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/client-handles.d.ts +101 -0
- package/dist/types/packages/cloud/src/sandbox/client-handles.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/client.d.ts +327 -0
- package/dist/types/packages/cloud/src/sandbox/client.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/runtime-handle.d.ts +37 -0
- package/dist/types/packages/cloud/src/sandbox/runtime-handle.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/sandbox-instance-client.d.ts +73 -0
- package/dist/types/packages/cloud/src/sandbox/sandbox-instance-client.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/smoke.d.ts +4 -0
- package/dist/types/packages/cloud/src/sandbox/smoke.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/stream.d.ts +8 -0
- package/dist/types/packages/cloud/src/sandbox/stream.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/billing.d.ts +177 -0
- package/dist/types/packages/cloud/src/sandbox/types/billing.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/client.d.ts +104 -0
- package/dist/types/packages/cloud/src/sandbox/types/client.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/core.d.ts +141 -0
- package/dist/types/packages/cloud/src/sandbox/types/core.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/index.d.ts +15 -0
- package/dist/types/packages/cloud/src/sandbox/types/index.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/io.d.ts +241 -0
- package/dist/types/packages/cloud/src/sandbox/types/io.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/microsoft-teams-bot.d.ts +52 -0
- package/dist/types/packages/cloud/src/sandbox/types/microsoft-teams-bot.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/org-project-agent.d.ts +524 -0
- package/dist/types/packages/cloud/src/sandbox/types/org-project-agent.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/record.d.ts +54 -0
- package/dist/types/packages/cloud/src/sandbox/types/record.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/responses.d.ts +296 -0
- package/dist/types/packages/cloud/src/sandbox/types/responses.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/runtime-environments.d.ts +3 -0
- package/dist/types/packages/cloud/src/sandbox/types/runtime-environments.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/runtime-profiles.d.ts +16 -0
- package/dist/types/packages/cloud/src/sandbox/types/runtime-profiles.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/runtime.d.ts +153 -0
- package/dist/types/packages/cloud/src/sandbox/types/runtime.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/schedules.d.ts +142 -0
- package/dist/types/packages/cloud/src/sandbox/types/schedules.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/snapshots.d.ts +206 -0
- package/dist/types/packages/cloud/src/sandbox/types/snapshots.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/workflow-modes.d.ts +2 -0
- package/dist/types/packages/cloud/src/sandbox/types/workflow-modes.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/types/workload-sources.d.ts +21 -0
- package/dist/types/packages/cloud/src/sandbox/types/workload-sources.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/sandbox/url.d.ts +3 -0
- package/dist/types/packages/cloud/src/sandbox/url.d.ts.map +1 -0
- package/dist/types/packages/cloud/src/urls.d.ts +5 -0
- package/dist/types/packages/cloud/src/urls.d.ts.map +1 -0
- package/dist/types/packages/sdk/src/index.d.ts +17 -0
- package/dist/types/packages/sdk/src/index.d.ts.map +1 -0
- package/dist/types/packages/sdk/src/types.d.ts +11 -0
- package/dist/types/packages/sdk/src/types.d.ts.map +1 -0
- package/dist/types/packages/sdk/src/work.d.ts +71 -0
- package/dist/types/packages/sdk/src/work.d.ts.map +1 -0
- package/package.json +50 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
export type HostedChatRole = "system" | "user" | "assistant" | "tool";
|
|
2
|
+
export type HostedChatToolCall = {
|
|
3
|
+
id?: string;
|
|
4
|
+
type: "function" | string;
|
|
5
|
+
function?: {
|
|
6
|
+
name?: string;
|
|
7
|
+
arguments?: string;
|
|
8
|
+
[key: string]: unknown;
|
|
9
|
+
};
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
};
|
|
12
|
+
export type HostedChatTool = {
|
|
13
|
+
type: "function" | string;
|
|
14
|
+
function?: {
|
|
15
|
+
name: string;
|
|
16
|
+
description?: string;
|
|
17
|
+
parameters?: Record<string, unknown>;
|
|
18
|
+
[key: string]: unknown;
|
|
19
|
+
};
|
|
20
|
+
[key: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
export type HostedChatToolChoice = "none" | "auto" | "required" | {
|
|
23
|
+
type: "function";
|
|
24
|
+
function: {
|
|
25
|
+
name: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export type HostedChatContinuation = {
|
|
29
|
+
kind: "chat_completions_reasoning";
|
|
30
|
+
reasoningContent: string;
|
|
31
|
+
} | {
|
|
32
|
+
kind: "responses_reasoning_items";
|
|
33
|
+
items: Array<Record<string, unknown>>;
|
|
34
|
+
};
|
|
35
|
+
export type HostedChatMessage = {
|
|
36
|
+
role: HostedChatRole;
|
|
37
|
+
content?: string | null;
|
|
38
|
+
continuation?: HostedChatContinuation;
|
|
39
|
+
name?: string;
|
|
40
|
+
tool_call_id?: string;
|
|
41
|
+
tool_calls?: HostedChatToolCall[];
|
|
42
|
+
};
|
|
43
|
+
export type HostedModel = {
|
|
44
|
+
id: string;
|
|
45
|
+
object?: string;
|
|
46
|
+
created?: number;
|
|
47
|
+
owned_by?: string;
|
|
48
|
+
[key: string]: unknown;
|
|
49
|
+
};
|
|
50
|
+
export type HostedProvider = {
|
|
51
|
+
id: string;
|
|
52
|
+
object?: string;
|
|
53
|
+
display_name?: string;
|
|
54
|
+
owned_by?: string;
|
|
55
|
+
lifecycle_status?: string;
|
|
56
|
+
credential_modes?: string[];
|
|
57
|
+
routing?: Record<string, unknown>;
|
|
58
|
+
default_model?: string | null;
|
|
59
|
+
model_ids?: string[];
|
|
60
|
+
capabilities?: Record<string, unknown>;
|
|
61
|
+
metadata?: Record<string, unknown>;
|
|
62
|
+
[key: string]: unknown;
|
|
63
|
+
};
|
|
64
|
+
export type HostedModelsResponse = {
|
|
65
|
+
object: "list" | string;
|
|
66
|
+
data: HostedModel[];
|
|
67
|
+
};
|
|
68
|
+
export type HostedProvidersResponse = {
|
|
69
|
+
object: "list" | string;
|
|
70
|
+
data: HostedProvider[];
|
|
71
|
+
};
|
|
72
|
+
export type HostedChatUsage = {
|
|
73
|
+
prompt_tokens?: number;
|
|
74
|
+
completion_tokens?: number;
|
|
75
|
+
total_tokens?: number;
|
|
76
|
+
input_tokens?: number;
|
|
77
|
+
output_tokens?: number;
|
|
78
|
+
};
|
|
79
|
+
export type HostedChatCompletion = {
|
|
80
|
+
id?: string;
|
|
81
|
+
object?: string;
|
|
82
|
+
created?: number;
|
|
83
|
+
model?: string;
|
|
84
|
+
choices?: Array<{
|
|
85
|
+
index?: number;
|
|
86
|
+
message?: {
|
|
87
|
+
role?: string;
|
|
88
|
+
content?: string | null;
|
|
89
|
+
tool_calls?: HostedChatToolCall[];
|
|
90
|
+
};
|
|
91
|
+
finish_reason?: string | null;
|
|
92
|
+
}>;
|
|
93
|
+
usage?: HostedChatUsage;
|
|
94
|
+
[key: string]: unknown;
|
|
95
|
+
};
|
|
96
|
+
export type HostedChatStreamDelta = {
|
|
97
|
+
type: "text_delta";
|
|
98
|
+
text: string;
|
|
99
|
+
raw: unknown;
|
|
100
|
+
} | {
|
|
101
|
+
type: "reasoning_delta";
|
|
102
|
+
text: string;
|
|
103
|
+
raw: unknown;
|
|
104
|
+
} | {
|
|
105
|
+
type: "continuation";
|
|
106
|
+
continuation: HostedChatContinuation;
|
|
107
|
+
raw: unknown;
|
|
108
|
+
} | {
|
|
109
|
+
type: "tool_call_delta";
|
|
110
|
+
toolCalls: HostedChatToolCall[];
|
|
111
|
+
raw: unknown;
|
|
112
|
+
} | {
|
|
113
|
+
type: "usage";
|
|
114
|
+
usage: HostedChatUsage;
|
|
115
|
+
raw: unknown;
|
|
116
|
+
} | {
|
|
117
|
+
type: "finish";
|
|
118
|
+
finishReason: string | null;
|
|
119
|
+
raw: unknown;
|
|
120
|
+
};
|
|
121
|
+
export type HostedChatRequestOptions = {
|
|
122
|
+
apiBaseUrl: string;
|
|
123
|
+
token: string;
|
|
124
|
+
model: string;
|
|
125
|
+
messages: HostedChatMessage[];
|
|
126
|
+
requestId?: string;
|
|
127
|
+
signal?: AbortSignal;
|
|
128
|
+
temperature?: number;
|
|
129
|
+
maxTokens?: number;
|
|
130
|
+
tools?: HostedChatTool[];
|
|
131
|
+
toolChoice?: HostedChatToolChoice;
|
|
132
|
+
tool_choice?: HostedChatToolChoice;
|
|
133
|
+
metadata?: Record<string, unknown>;
|
|
134
|
+
};
|
|
135
|
+
export type HostedModelsRequestOptions = {
|
|
136
|
+
apiBaseUrl: string;
|
|
137
|
+
token: string;
|
|
138
|
+
signal?: AbortSignal;
|
|
139
|
+
};
|
|
140
|
+
export type HostedModelRequestOptions = HostedModelsRequestOptions & {
|
|
141
|
+
model: string;
|
|
142
|
+
};
|
|
143
|
+
export type HostedProvidersRequestOptions = HostedModelsRequestOptions;
|
|
144
|
+
export type HostedProviderRequestOptions = HostedModelsRequestOptions & {
|
|
145
|
+
provider: string;
|
|
146
|
+
};
|
|
147
|
+
export type HostedChatApiBaseUrlOptions = {
|
|
148
|
+
apiBaseUrl?: string | null;
|
|
149
|
+
chatApiBaseUrl?: string | null;
|
|
150
|
+
opChatApiBaseUrl?: string | null;
|
|
151
|
+
env?: Record<string, string | undefined>;
|
|
152
|
+
};
|
|
153
|
+
export declare function resolveOpChatApiBaseUrl(options?: HostedChatApiBaseUrlOptions): string;
|
|
154
|
+
export declare function resolveHostedChatApiBaseUrl(options?: HostedChatApiBaseUrlOptions): string;
|
|
155
|
+
export declare function listOpChatModels(options: HostedModelsRequestOptions): Promise<HostedModelsResponse>;
|
|
156
|
+
export declare function getOpChatModel(options: HostedModelRequestOptions): Promise<HostedModel>;
|
|
157
|
+
export declare const listHostedModels: typeof listOpChatModels;
|
|
158
|
+
export declare function listOpChatProviders(options: HostedProvidersRequestOptions): Promise<HostedProvidersResponse>;
|
|
159
|
+
export declare function getOpChatProvider(options: HostedProviderRequestOptions): Promise<HostedProvider>;
|
|
160
|
+
export declare const listHostedProviders: typeof listOpChatProviders;
|
|
161
|
+
export declare function sendHostedChatTurn(options: HostedChatRequestOptions): Promise<HostedChatCompletion>;
|
|
162
|
+
export declare function streamHostedChatTurn(options: HostedChatRequestOptions): AsyncGenerator<HostedChatStreamDelta, void, unknown>;
|
|
163
|
+
//# sourceMappingURL=hosted-chat.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hosted-chat.d.ts","sourceRoot":"","sources":["../../../../../../cloud/src/hosted-chat.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"async-request-options.d.ts","sourceRoot":"","sources":["../../../../../../../cloud/src/sandbox/async-request-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAEnE,wBAAgB,mBAAmB,CACjC,OAAO,GAAE,0BAA+B,GACvC,WAAW,GAAG,SAAS,CAIzB"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import type { OpenPondSandboxClient } from "./client.js";
|
|
2
|
+
import type { SandboxAgentRunInput, SandboxAgentSourceChecksRequestInput, SandboxAgentSourcePublishInput, SandboxAgentUpdateInput, SandboxAgentUpsertInput, SandboxCreateInput, SandboxAsyncRequestOptions, SandboxProjectUpdateInput, SandboxProjectUpsertInput, SandboxProjectSourceUploadInput, SandboxRuntime, SandboxRuntimeCheckpointInput, SandboxRuntimeCreateInput, SandboxRuntimeEventInput, SandboxRuntimePromoteInput, SandboxRuntimeSourcePreserveInput, SandboxRuntimeSandboxCreateInput, SandboxRuntimeTransitionInput, OpenPondHostedProfilePushInput, OpenPondHostedProfilePushResponse, OpenPondHostedProfileSummary } from "./types/index.js";
|
|
3
|
+
export declare function createSandboxRuntimeNamespace(client: OpenPondSandboxClient): {
|
|
4
|
+
list: (input?: {
|
|
5
|
+
teamId?: string;
|
|
6
|
+
projectId?: string;
|
|
7
|
+
agentId?: string;
|
|
8
|
+
}) => Promise<SandboxRuntime[]>;
|
|
9
|
+
create: (input: SandboxRuntimeCreateInput) => Promise<SandboxRuntime>;
|
|
10
|
+
handle: (runtimeId: string, initial?: SandboxRuntime | null) => import("./types/client.js").OpenPondSandboxRuntimeHandle;
|
|
11
|
+
get: (runtimeId: string) => Promise<SandboxRuntime>;
|
|
12
|
+
createSandbox: (runtimeId: string, input?: SandboxRuntimeSandboxCreateInput, options?: SandboxAsyncRequestOptions) => Promise<import("./types/runtime.js").SandboxRuntimeSandboxResponse>;
|
|
13
|
+
updateStatus: (runtimeId: string, input: SandboxRuntimeTransitionInput) => Promise<SandboxRuntime>;
|
|
14
|
+
events: (runtimeId: string) => Promise<import("./types/runtime.js").SandboxRuntimeEventsResponse>;
|
|
15
|
+
event: (runtimeId: string, input: SandboxRuntimeEventInput) => Promise<import("./types/runtime.js").SandboxRuntimeEventResponse>;
|
|
16
|
+
checkpoint: (runtimeId: string, input?: SandboxRuntimeCheckpointInput) => Promise<SandboxRuntime>;
|
|
17
|
+
promote: (runtimeId: string, input: SandboxRuntimePromoteInput, options?: {
|
|
18
|
+
teamId?: string;
|
|
19
|
+
}) => Promise<import("./types/runtime.js").SandboxRuntimePromoteResponse>;
|
|
20
|
+
preserveSource: (runtimeId: string, input?: SandboxRuntimeSourcePreserveInput, options?: {
|
|
21
|
+
teamId?: string;
|
|
22
|
+
}) => Promise<import("./types/runtime.js").SandboxRuntimeSourcePreserveResponse>;
|
|
23
|
+
};
|
|
24
|
+
export declare function createSandboxNamespace(client: OpenPondSandboxClient): {
|
|
25
|
+
list: (input?: {
|
|
26
|
+
teamId?: string;
|
|
27
|
+
projectId?: string;
|
|
28
|
+
agentId?: string;
|
|
29
|
+
}) => Promise<import("./types/record.js").SandboxRecord[]>;
|
|
30
|
+
create: (input: SandboxCreateInput) => Promise<import("./types/record.js").SandboxRecord>;
|
|
31
|
+
get: (sandboxId: string) => Promise<import("./types/record.js").SandboxRecord>;
|
|
32
|
+
pricing: () => Promise<import("./types/responses.js").SandboxPricingResponse>;
|
|
33
|
+
costs: (input?: {
|
|
34
|
+
teamId?: string;
|
|
35
|
+
projectId?: string;
|
|
36
|
+
agentId?: string;
|
|
37
|
+
}) => Promise<import("./types/responses.js").SandboxCostSummaryResponse>;
|
|
38
|
+
};
|
|
39
|
+
export declare function createSandboxProjectNamespace(client: OpenPondSandboxClient): {
|
|
40
|
+
list: (input: {
|
|
41
|
+
teamId: string;
|
|
42
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProject[]>;
|
|
43
|
+
upsert: (input: SandboxProjectUpsertInput) => Promise<import("./types/org-project-agent.js").SandboxProject>;
|
|
44
|
+
upsertGitRemote: (input: SandboxProjectUpsertInput) => Promise<import("./types/org-project-agent.js").SandboxProjectGitRemoteResponse>;
|
|
45
|
+
get: (projectId: string, input: {
|
|
46
|
+
teamId: string;
|
|
47
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProject>;
|
|
48
|
+
update: (projectId: string, input: SandboxProjectUpdateInput) => Promise<import("./types/org-project-agent.js").SandboxProject>;
|
|
49
|
+
sync: (projectId: string, input: {
|
|
50
|
+
teamId: string;
|
|
51
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProject>;
|
|
52
|
+
ensureGitRemote: (projectId: string, input: {
|
|
53
|
+
teamId: string;
|
|
54
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProjectGitRemoteResponse>;
|
|
55
|
+
getGitRemote: (projectId: string, input: {
|
|
56
|
+
teamId: string;
|
|
57
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProjectGitRemoteResponse>;
|
|
58
|
+
git: (projectId: string, input: {
|
|
59
|
+
teamId: string;
|
|
60
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProjectGitRemoteResponse>;
|
|
61
|
+
uploadSource: (projectId: string, input: SandboxProjectSourceUploadInput) => Promise<import("./types/org-project-agent.js").SandboxProject>;
|
|
62
|
+
archive: (projectId: string, input: {
|
|
63
|
+
teamId: string;
|
|
64
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxProject>;
|
|
65
|
+
};
|
|
66
|
+
export declare function createSandboxProfileNamespace(client: OpenPondSandboxClient): {
|
|
67
|
+
get(input: {
|
|
68
|
+
teamId: string;
|
|
69
|
+
}): Promise<OpenPondHostedProfileSummary | null>;
|
|
70
|
+
status(input: {
|
|
71
|
+
teamId: string;
|
|
72
|
+
}): Promise<OpenPondHostedProfileSummary | null>;
|
|
73
|
+
ensureHosted(input: {
|
|
74
|
+
teamId: string;
|
|
75
|
+
}): Promise<OpenPondHostedProfileSummary>;
|
|
76
|
+
push(input: OpenPondHostedProfilePushInput): Promise<OpenPondHostedProfilePushResponse>;
|
|
77
|
+
};
|
|
78
|
+
export declare function createSandboxAgentNamespace(client: OpenPondSandboxClient): {
|
|
79
|
+
list: (input: {
|
|
80
|
+
teamId: string;
|
|
81
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxAgent[]>;
|
|
82
|
+
upsert: (input: SandboxAgentUpsertInput) => Promise<import("./types/org-project-agent.js").SandboxAgent>;
|
|
83
|
+
get: (agentId: string, input: {
|
|
84
|
+
teamId: string;
|
|
85
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxAgent>;
|
|
86
|
+
update: (agentId: string, input: SandboxAgentUpdateInput) => Promise<import("./types/org-project-agent.js").SandboxAgent>;
|
|
87
|
+
archive: (agentId: string, input: {
|
|
88
|
+
teamId: string;
|
|
89
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxAgent>;
|
|
90
|
+
run: (agentId: string, input: SandboxAgentRunInput) => Promise<import("./types/org-project-agent.js").SandboxAgentRunResponse>;
|
|
91
|
+
sourceDeployPlan: (agentId: string, input: {
|
|
92
|
+
teamId: string;
|
|
93
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxAgentSourceDeployPlan>;
|
|
94
|
+
manifestSnapshots: (agentId: string, input: {
|
|
95
|
+
teamId: string;
|
|
96
|
+
limit?: number;
|
|
97
|
+
}) => Promise<import("./types/org-project-agent.js").SandboxAgentManifestSnapshot[]>;
|
|
98
|
+
requestSourceChecks: (agentId: string, input: SandboxAgentSourceChecksRequestInput) => Promise<import("./types/org-project-agent.js").SandboxAgentSourceChecksRequestResult>;
|
|
99
|
+
publishSource: (agentId: string, input: SandboxAgentSourcePublishInput) => Promise<import("./types/org-project-agent.js").SandboxAgentSourcePublishResult>;
|
|
100
|
+
};
|
|
101
|
+
//# sourceMappingURL=client-handles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-handles.d.ts","sourceRoot":"","sources":["../../../../../../../cloud/src/sandbox/client-handles.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import { OpenPondSandboxInstanceClient } from "./sandbox-instance-client.js";
|
|
2
|
+
import type { SandboxIntegrationConnectionStatusFilter, SandboxAsyncRequestOptions, SandboxScheduleCreateInput, SandboxScheduleUpdateInput, SandboxForkInput, SandboxForkOptions, SandboxTemplateLaunchInput, SandboxPublishedSnapshotBuildCreateInput, SandboxPublishedSnapshotBuildRecord, SandboxSecretMetadata, SandboxSecretCreateInput, SandboxSecretRotateInput, SandboxSecretAttachInput, SandboxSnapshotTemplateVisibility, SandboxTemplateBuildCreateInput, SandboxTemplateBuildRecord, OpenPondOrganization, OpenPondOrganizationCreateInput, OpenPondOrganizationUpdateInput, OpenPondOrganizationMember, OpenPondOrganizationMemberUpsertInput, OpenPondOrganizationMcpServer, OpenPondOrganizationMcpGenerateInput, SandboxProject, OpenPondHostedProfilePushInput, OpenPondHostedProfilePushResponse, OpenPondHostedProfileSummary, SandboxAgent, SandboxProjectUpsertInput, SandboxProjectUpdateInput, SandboxProjectSourceUploadInput, SandboxProjectGitRemoteResponse, SandboxAgentUpsertInput, SandboxAgentUpdateInput, SandboxAgentRunInput, SandboxAgentSourceChecksRequestInput, SandboxAgentSourceChecksRequestResult, SandboxAgentSourceDeployPlan, SandboxAgentSourcePublishInput, SandboxAgentSourcePublishResult, SandboxAgentManifestSnapshot, SandboxAgentRunResponse, MicrosoftTeamsBotOverview, MicrosoftTeamsBotBindingTargetInput, MicrosoftTeamsBotBindingResponse, MicrosoftTeamsBotDiagnosticRunInput, MicrosoftTeamsBotDiagnosticRunResponse, SandboxRecord, SandboxSnapshotCatalogResponse, SandboxPublishedSnapshotCatalogResponse, SandboxTemplateCatalogResponse, SandboxRuntime, SandboxRuntimeCreateInput, SandboxRuntimeSandboxCreateInput, SandboxRuntimeEventInput, SandboxRuntimeCheckpointInput, SandboxRuntimePromoteInput, SandboxRuntimeSourcePreserveInput, SandboxRuntimeTransitionInput, SandboxRuntimeSandboxResponse, SandboxRuntimeEventResponse, SandboxRuntimeEventsResponse, SandboxRuntimePromoteResponse, SandboxRuntimeSourcePreserveResponse, SandboxIntegrationConnectionsResponse, SandboxForkResponse, SandboxPublishedSnapshotLaunchResponse, SandboxTemplateLaunchResponse, SandboxScheduleListResponse, SandboxScheduleResponse, SandboxScheduleRunListResponse, SandboxScheduleRunResponse, SandboxReplayInput, SandboxReplayResponse, SandboxReplayListResponse, SandboxReplayLogsResponse, SandboxReplayArtifactsResponse, SandboxPublishedSnapshotBuildLogsResponse, SandboxTemplateBuildLogsResponse, SandboxSmokeOptions, SandboxSmokeSummary, OpenPondSandboxClientOptions, OpenPondSandboxMcpServerConfig, OpenPondSandboxRuntimeHandle } from "./types/index.js";
|
|
3
|
+
export declare class OpenPondSandboxClient extends OpenPondSandboxInstanceClient {
|
|
4
|
+
readonly runtimes: {
|
|
5
|
+
list: (input?: {
|
|
6
|
+
teamId?: string;
|
|
7
|
+
projectId?: string;
|
|
8
|
+
agentId?: string;
|
|
9
|
+
}) => Promise<SandboxRuntime[]>;
|
|
10
|
+
create: (input: SandboxRuntimeCreateInput) => Promise<SandboxRuntime>;
|
|
11
|
+
handle: (runtimeId: string, initial?: SandboxRuntime | null) => OpenPondSandboxRuntimeHandle;
|
|
12
|
+
get: (runtimeId: string) => Promise<SandboxRuntime>;
|
|
13
|
+
createSandbox: (runtimeId: string, input?: SandboxRuntimeSandboxCreateInput, options?: SandboxAsyncRequestOptions) => Promise<SandboxRuntimeSandboxResponse>;
|
|
14
|
+
updateStatus: (runtimeId: string, input: SandboxRuntimeTransitionInput) => Promise<SandboxRuntime>;
|
|
15
|
+
events: (runtimeId: string) => Promise<SandboxRuntimeEventsResponse>;
|
|
16
|
+
event: (runtimeId: string, input: SandboxRuntimeEventInput) => Promise<SandboxRuntimeEventResponse>;
|
|
17
|
+
checkpoint: (runtimeId: string, input?: SandboxRuntimeCheckpointInput) => Promise<SandboxRuntime>;
|
|
18
|
+
promote: (runtimeId: string, input: SandboxRuntimePromoteInput, options?: {
|
|
19
|
+
teamId?: string;
|
|
20
|
+
}) => Promise<SandboxRuntimePromoteResponse>;
|
|
21
|
+
preserveSource: (runtimeId: string, input?: SandboxRuntimeSourcePreserveInput, options?: {
|
|
22
|
+
teamId?: string;
|
|
23
|
+
}) => Promise<SandboxRuntimeSourcePreserveResponse>;
|
|
24
|
+
};
|
|
25
|
+
readonly sandboxes: {
|
|
26
|
+
list: (input?: {
|
|
27
|
+
teamId?: string;
|
|
28
|
+
projectId?: string;
|
|
29
|
+
agentId?: string;
|
|
30
|
+
}) => Promise<SandboxRecord[]>;
|
|
31
|
+
create: (input: import("./types/core.js").SandboxCreateInput) => Promise<SandboxRecord>;
|
|
32
|
+
get: (sandboxId: string) => Promise<SandboxRecord>;
|
|
33
|
+
pricing: () => Promise<import("./types/responses.js").SandboxPricingResponse>;
|
|
34
|
+
costs: (input?: {
|
|
35
|
+
teamId?: string;
|
|
36
|
+
projectId?: string;
|
|
37
|
+
agentId?: string;
|
|
38
|
+
}) => Promise<import("./types/responses.js").SandboxCostSummaryResponse>;
|
|
39
|
+
};
|
|
40
|
+
readonly profile: {
|
|
41
|
+
get(input: {
|
|
42
|
+
teamId: string;
|
|
43
|
+
}): Promise<OpenPondHostedProfileSummary | null>;
|
|
44
|
+
status(input: {
|
|
45
|
+
teamId: string;
|
|
46
|
+
}): Promise<OpenPondHostedProfileSummary | null>;
|
|
47
|
+
ensureHosted(input: {
|
|
48
|
+
teamId: string;
|
|
49
|
+
}): Promise<OpenPondHostedProfileSummary>;
|
|
50
|
+
push(input: OpenPondHostedProfilePushInput): Promise<OpenPondHostedProfilePushResponse>;
|
|
51
|
+
};
|
|
52
|
+
readonly projects: {
|
|
53
|
+
list: (input: {
|
|
54
|
+
teamId: string;
|
|
55
|
+
}) => Promise<SandboxProject[]>;
|
|
56
|
+
upsert: (input: SandboxProjectUpsertInput) => Promise<SandboxProject>;
|
|
57
|
+
upsertGitRemote: (input: SandboxProjectUpsertInput) => Promise<SandboxProjectGitRemoteResponse>;
|
|
58
|
+
get: (projectId: string, input: {
|
|
59
|
+
teamId: string;
|
|
60
|
+
}) => Promise<SandboxProject>;
|
|
61
|
+
update: (projectId: string, input: SandboxProjectUpdateInput) => Promise<SandboxProject>;
|
|
62
|
+
sync: (projectId: string, input: {
|
|
63
|
+
teamId: string;
|
|
64
|
+
}) => Promise<SandboxProject>;
|
|
65
|
+
ensureGitRemote: (projectId: string, input: {
|
|
66
|
+
teamId: string;
|
|
67
|
+
}) => Promise<SandboxProjectGitRemoteResponse>;
|
|
68
|
+
getGitRemote: (projectId: string, input: {
|
|
69
|
+
teamId: string;
|
|
70
|
+
}) => Promise<SandboxProjectGitRemoteResponse>;
|
|
71
|
+
git: (projectId: string, input: {
|
|
72
|
+
teamId: string;
|
|
73
|
+
}) => Promise<SandboxProjectGitRemoteResponse>;
|
|
74
|
+
uploadSource: (projectId: string, input: SandboxProjectSourceUploadInput) => Promise<SandboxProject>;
|
|
75
|
+
archive: (projectId: string, input: {
|
|
76
|
+
teamId: string;
|
|
77
|
+
}) => Promise<SandboxProject>;
|
|
78
|
+
};
|
|
79
|
+
readonly agents: {
|
|
80
|
+
list: (input: {
|
|
81
|
+
teamId: string;
|
|
82
|
+
}) => Promise<SandboxAgent[]>;
|
|
83
|
+
upsert: (input: SandboxAgentUpsertInput) => Promise<SandboxAgent>;
|
|
84
|
+
get: (agentId: string, input: {
|
|
85
|
+
teamId: string;
|
|
86
|
+
}) => Promise<SandboxAgent>;
|
|
87
|
+
update: (agentId: string, input: SandboxAgentUpdateInput) => Promise<SandboxAgent>;
|
|
88
|
+
archive: (agentId: string, input: {
|
|
89
|
+
teamId: string;
|
|
90
|
+
}) => Promise<SandboxAgent>;
|
|
91
|
+
run: (agentId: string, input: SandboxAgentRunInput) => Promise<SandboxAgentRunResponse>;
|
|
92
|
+
sourceDeployPlan: (agentId: string, input: {
|
|
93
|
+
teamId: string;
|
|
94
|
+
}) => Promise<SandboxAgentSourceDeployPlan>;
|
|
95
|
+
manifestSnapshots: (agentId: string, input: {
|
|
96
|
+
teamId: string;
|
|
97
|
+
limit?: number;
|
|
98
|
+
}) => Promise<SandboxAgentManifestSnapshot[]>;
|
|
99
|
+
requestSourceChecks: (agentId: string, input: SandboxAgentSourceChecksRequestInput) => Promise<SandboxAgentSourceChecksRequestResult>;
|
|
100
|
+
publishSource: (agentId: string, input: SandboxAgentSourcePublishInput) => Promise<SandboxAgentSourcePublishResult>;
|
|
101
|
+
};
|
|
102
|
+
list(input?: {
|
|
103
|
+
teamId?: string;
|
|
104
|
+
projectId?: string;
|
|
105
|
+
agentId?: string;
|
|
106
|
+
}): Promise<SandboxRecord[]>;
|
|
107
|
+
listSecrets(input?: {
|
|
108
|
+
teamId?: string;
|
|
109
|
+
}): Promise<SandboxSecretMetadata[]>;
|
|
110
|
+
getSecret(secretId: string, input?: {
|
|
111
|
+
teamId?: string;
|
|
112
|
+
}): Promise<SandboxSecretMetadata>;
|
|
113
|
+
createSecret(input: SandboxSecretCreateInput): Promise<SandboxSecretMetadata>;
|
|
114
|
+
rotateSecret(secretId: string, input: SandboxSecretRotateInput): Promise<SandboxSecretMetadata>;
|
|
115
|
+
attachSecret(secretId: string, input: SandboxSecretAttachInput): Promise<SandboxSecretMetadata>;
|
|
116
|
+
revokeSecret(secretId: string, input?: {
|
|
117
|
+
teamId?: string;
|
|
118
|
+
}): Promise<SandboxSecretMetadata>;
|
|
119
|
+
deleteSecret(secretId: string, input?: {
|
|
120
|
+
teamId?: string;
|
|
121
|
+
}): Promise<SandboxSecretMetadata>;
|
|
122
|
+
snapshotCatalog(input?: {
|
|
123
|
+
teamId?: string;
|
|
124
|
+
projectId?: string;
|
|
125
|
+
agentId?: string;
|
|
126
|
+
q?: string;
|
|
127
|
+
kind?: "snapshot" | "archive";
|
|
128
|
+
replayState?: "draft" | "validated" | "published";
|
|
129
|
+
visibility?: SandboxSnapshotTemplateVisibility;
|
|
130
|
+
tag?: string;
|
|
131
|
+
useCase?: string;
|
|
132
|
+
limit?: number;
|
|
133
|
+
}): Promise<SandboxSnapshotCatalogResponse>;
|
|
134
|
+
listSandboxRuntimes(input?: {
|
|
135
|
+
teamId?: string;
|
|
136
|
+
projectId?: string;
|
|
137
|
+
agentId?: string;
|
|
138
|
+
}): Promise<SandboxRuntime[]>;
|
|
139
|
+
listProjects(input: {
|
|
140
|
+
teamId: string;
|
|
141
|
+
}): Promise<SandboxProject[]>;
|
|
142
|
+
upsertProject(input: SandboxProjectUpsertInput): Promise<SandboxProject>;
|
|
143
|
+
getHostedProfile(input: {
|
|
144
|
+
teamId: string;
|
|
145
|
+
}): Promise<OpenPondHostedProfileSummary | null>;
|
|
146
|
+
ensureHostedProfile(input: {
|
|
147
|
+
teamId: string;
|
|
148
|
+
}): Promise<OpenPondHostedProfileSummary>;
|
|
149
|
+
pushHostedProfile(input: OpenPondHostedProfilePushInput): Promise<OpenPondHostedProfilePushResponse>;
|
|
150
|
+
upsertProjectGitRemote(input: SandboxProjectUpsertInput): Promise<SandboxProjectGitRemoteResponse>;
|
|
151
|
+
getProject(projectId: string, input: {
|
|
152
|
+
teamId: string;
|
|
153
|
+
}): Promise<SandboxProject>;
|
|
154
|
+
syncProject(projectId: string, input: {
|
|
155
|
+
teamId: string;
|
|
156
|
+
}): Promise<SandboxProject>;
|
|
157
|
+
ensureProjectGitRemote(projectId: string, input: {
|
|
158
|
+
teamId: string;
|
|
159
|
+
}): Promise<SandboxProjectGitRemoteResponse>;
|
|
160
|
+
uploadProjectSource(projectId: string, input: SandboxProjectSourceUploadInput): Promise<SandboxProject>;
|
|
161
|
+
updateProject(projectId: string, input: SandboxProjectUpdateInput): Promise<SandboxProject>;
|
|
162
|
+
archiveProject(projectId: string, input: {
|
|
163
|
+
teamId: string;
|
|
164
|
+
}): Promise<SandboxProject>;
|
|
165
|
+
listAgents(input: {
|
|
166
|
+
teamId: string;
|
|
167
|
+
}): Promise<SandboxAgent[]>;
|
|
168
|
+
upsertAgent(input: SandboxAgentUpsertInput): Promise<SandboxAgent>;
|
|
169
|
+
getAgent(agentId: string, input: {
|
|
170
|
+
teamId: string;
|
|
171
|
+
}): Promise<SandboxAgent>;
|
|
172
|
+
archiveAgent(agentId: string, input: {
|
|
173
|
+
teamId: string;
|
|
174
|
+
}): Promise<SandboxAgent>;
|
|
175
|
+
updateAgent(agentId: string, input: SandboxAgentUpdateInput): Promise<SandboxAgent>;
|
|
176
|
+
runAgent(agentId: string, input: SandboxAgentRunInput): Promise<SandboxAgentRunResponse>;
|
|
177
|
+
getAgentSourceDeployPlan(agentId: string, input: {
|
|
178
|
+
teamId: string;
|
|
179
|
+
}): Promise<SandboxAgentSourceDeployPlan>;
|
|
180
|
+
listAgentManifestSnapshots(agentId: string, input: {
|
|
181
|
+
teamId: string;
|
|
182
|
+
limit?: number;
|
|
183
|
+
}): Promise<SandboxAgentManifestSnapshot[]>;
|
|
184
|
+
requestAgentSourceChecks(agentId: string, input: SandboxAgentSourceChecksRequestInput): Promise<SandboxAgentSourceChecksRequestResult>;
|
|
185
|
+
publishAgentSource(agentId: string, input: SandboxAgentSourcePublishInput): Promise<SandboxAgentSourcePublishResult>;
|
|
186
|
+
getMicrosoftTeamsBotOverview(input: {
|
|
187
|
+
teamId: string;
|
|
188
|
+
}): Promise<MicrosoftTeamsBotOverview>;
|
|
189
|
+
bindMicrosoftTeamsBotConversation(input: MicrosoftTeamsBotBindingTargetInput & {
|
|
190
|
+
token: string;
|
|
191
|
+
}): Promise<MicrosoftTeamsBotBindingResponse>;
|
|
192
|
+
rebindMicrosoftTeamsBotConversation(bindingId: string, input: MicrosoftTeamsBotBindingTargetInput): Promise<MicrosoftTeamsBotBindingResponse>;
|
|
193
|
+
unlinkMicrosoftTeamsBotConversation(input: {
|
|
194
|
+
teamId: string;
|
|
195
|
+
bindingId: string;
|
|
196
|
+
}): Promise<MicrosoftTeamsBotBindingResponse>;
|
|
197
|
+
sendMicrosoftTeamsBotDiagnostic(input: {
|
|
198
|
+
teamId: string;
|
|
199
|
+
bindingId: string;
|
|
200
|
+
}): Promise<MicrosoftTeamsBotBindingResponse & {
|
|
201
|
+
diagnosticStatus: string;
|
|
202
|
+
}>;
|
|
203
|
+
sendMicrosoftTeamsBotDiagnosticRun(input: MicrosoftTeamsBotDiagnosticRunInput): Promise<MicrosoftTeamsBotDiagnosticRunResponse>;
|
|
204
|
+
createSandboxRuntime(input: SandboxRuntimeCreateInput): Promise<SandboxRuntime>;
|
|
205
|
+
sandboxRuntime(runtimeId: string, initial?: SandboxRuntime | null): OpenPondSandboxRuntimeHandle;
|
|
206
|
+
getSandboxRuntime(runtimeId: string): Promise<SandboxRuntime>;
|
|
207
|
+
createSandboxRuntimeSandbox(runtimeId: string, input?: SandboxRuntimeSandboxCreateInput, options?: SandboxAsyncRequestOptions): Promise<SandboxRuntimeSandboxResponse>;
|
|
208
|
+
updateSandboxRuntimeStatus(runtimeId: string, input: SandboxRuntimeTransitionInput): Promise<SandboxRuntime>;
|
|
209
|
+
listSandboxRuntimeEvents(runtimeId: string): Promise<SandboxRuntimeEventsResponse>;
|
|
210
|
+
emitSandboxRuntimeEvent(runtimeId: string, input: SandboxRuntimeEventInput): Promise<SandboxRuntimeEventResponse>;
|
|
211
|
+
checkpointSandboxRuntime(runtimeId: string, input: SandboxRuntimeCheckpointInput): Promise<SandboxRuntime>;
|
|
212
|
+
promoteSandboxRuntime(runtimeId: string, input: SandboxRuntimePromoteInput, options?: {
|
|
213
|
+
teamId?: string;
|
|
214
|
+
}): Promise<SandboxRuntimePromoteResponse>;
|
|
215
|
+
preserveSandboxRuntimeSource(runtimeId: string, input?: SandboxRuntimeSourcePreserveInput, options?: {
|
|
216
|
+
teamId?: string;
|
|
217
|
+
}): Promise<SandboxRuntimeSourcePreserveResponse>;
|
|
218
|
+
forkSnapshot(snapshotId: string, input?: SandboxForkInput & {
|
|
219
|
+
teamId?: string;
|
|
220
|
+
projectId?: string;
|
|
221
|
+
}, options?: SandboxForkOptions): Promise<SandboxForkResponse>;
|
|
222
|
+
templates(input?: {
|
|
223
|
+
teamId?: string;
|
|
224
|
+
projectId?: string;
|
|
225
|
+
q?: string;
|
|
226
|
+
name?: string;
|
|
227
|
+
version?: string;
|
|
228
|
+
visibility?: SandboxSnapshotTemplateVisibility;
|
|
229
|
+
tag?: string;
|
|
230
|
+
useCase?: string;
|
|
231
|
+
limit?: number;
|
|
232
|
+
}): Promise<SandboxTemplateCatalogResponse>;
|
|
233
|
+
publishedSnapshots(input?: {
|
|
234
|
+
teamId?: string;
|
|
235
|
+
projectId?: string;
|
|
236
|
+
q?: string;
|
|
237
|
+
name?: string;
|
|
238
|
+
version?: string;
|
|
239
|
+
visibility?: SandboxSnapshotTemplateVisibility;
|
|
240
|
+
tag?: string;
|
|
241
|
+
useCase?: string;
|
|
242
|
+
limit?: number;
|
|
243
|
+
}): Promise<SandboxPublishedSnapshotCatalogResponse>;
|
|
244
|
+
launchTemplate(input: SandboxTemplateLaunchInput & {
|
|
245
|
+
teamId?: string;
|
|
246
|
+
projectId?: string;
|
|
247
|
+
}): Promise<SandboxTemplateLaunchResponse>;
|
|
248
|
+
runPublishedSnapshot(input: SandboxTemplateLaunchInput & {
|
|
249
|
+
teamId?: string;
|
|
250
|
+
projectId?: string;
|
|
251
|
+
}): Promise<SandboxPublishedSnapshotLaunchResponse>;
|
|
252
|
+
listSchedules(input?: {
|
|
253
|
+
teamId?: string;
|
|
254
|
+
projectId?: string;
|
|
255
|
+
sourceSandboxId?: string;
|
|
256
|
+
}): Promise<SandboxScheduleListResponse>;
|
|
257
|
+
createSchedule(input: SandboxScheduleCreateInput): Promise<SandboxScheduleResponse>;
|
|
258
|
+
getSchedule(scheduleId: string): Promise<SandboxScheduleResponse>;
|
|
259
|
+
updateSchedule(scheduleId: string, input: SandboxScheduleUpdateInput): Promise<SandboxScheduleResponse>;
|
|
260
|
+
deleteSchedule(scheduleId: string): Promise<SandboxScheduleResponse>;
|
|
261
|
+
listScheduleRuns(scheduleId: string, input?: {
|
|
262
|
+
limit?: number;
|
|
263
|
+
}): Promise<SandboxScheduleRunListResponse>;
|
|
264
|
+
runScheduleNow(scheduleId: string, input?: {
|
|
265
|
+
idempotencyKey?: string;
|
|
266
|
+
}): Promise<SandboxScheduleRunResponse>;
|
|
267
|
+
listTemplateBuilds(input: {
|
|
268
|
+
teamId: string;
|
|
269
|
+
}): Promise<SandboxTemplateBuildRecord[]>;
|
|
270
|
+
createTemplateBuild(input: SandboxTemplateBuildCreateInput): Promise<SandboxTemplateBuildRecord>;
|
|
271
|
+
getTemplateBuild(buildId: string): Promise<SandboxTemplateBuildRecord>;
|
|
272
|
+
getTemplateBuildLogs(buildId: string): Promise<SandboxTemplateBuildLogsResponse>;
|
|
273
|
+
cancelTemplateBuild(buildId: string): Promise<SandboxTemplateBuildRecord>;
|
|
274
|
+
listPublishedSnapshotBuilds(input: {
|
|
275
|
+
teamId: string;
|
|
276
|
+
}): Promise<SandboxPublishedSnapshotBuildRecord[]>;
|
|
277
|
+
createPublishedSnapshotBuild(input: SandboxPublishedSnapshotBuildCreateInput): Promise<SandboxPublishedSnapshotBuildRecord>;
|
|
278
|
+
getPublishedSnapshotBuild(buildId: string): Promise<SandboxPublishedSnapshotBuildRecord>;
|
|
279
|
+
getPublishedSnapshotBuildLogs(buildId: string): Promise<SandboxPublishedSnapshotBuildLogsResponse>;
|
|
280
|
+
cancelPublishedSnapshotBuild(buildId: string): Promise<SandboxPublishedSnapshotBuildRecord>;
|
|
281
|
+
listOrganizations(): Promise<OpenPondOrganization[]>;
|
|
282
|
+
createOrganization(input: OpenPondOrganizationCreateInput): Promise<OpenPondOrganization>;
|
|
283
|
+
getOrganization(slug: string): Promise<OpenPondOrganization>;
|
|
284
|
+
updateOrganization(slug: string, input: OpenPondOrganizationUpdateInput): Promise<OpenPondOrganization>;
|
|
285
|
+
listOrganizationMembers(slug: string): Promise<OpenPondOrganizationMember[]>;
|
|
286
|
+
upsertOrganizationMember(slug: string, input: OpenPondOrganizationMemberUpsertInput): Promise<OpenPondOrganizationMember>;
|
|
287
|
+
getOrganizationMcpServer(slug: string): Promise<OpenPondOrganizationMcpServer | null>;
|
|
288
|
+
generateOrganizationMcpServer(slug: string, input?: OpenPondOrganizationMcpGenerateInput): Promise<OpenPondOrganizationMcpServer | null>;
|
|
289
|
+
rotateOrganizationMcpServer(slug: string): Promise<OpenPondOrganizationMcpServer | null>;
|
|
290
|
+
disableOrganizationMcpServer(slug: string): Promise<OpenPondOrganizationMcpServer | null>;
|
|
291
|
+
enableOrganizationMcpServer(slug: string): Promise<OpenPondOrganizationMcpServer | null>;
|
|
292
|
+
startReplay(input: SandboxReplayInput & {
|
|
293
|
+
teamId?: string;
|
|
294
|
+
projectId?: string;
|
|
295
|
+
}): Promise<SandboxReplayResponse>;
|
|
296
|
+
listReplays(input?: {
|
|
297
|
+
teamId?: string;
|
|
298
|
+
projectId?: string;
|
|
299
|
+
}): Promise<SandboxReplayListResponse>;
|
|
300
|
+
getReplay(replayId: string, input?: {
|
|
301
|
+
teamId?: string;
|
|
302
|
+
projectId?: string;
|
|
303
|
+
}): Promise<SandboxReplayResponse>;
|
|
304
|
+
getReplayLogs(replayId: string, input?: {
|
|
305
|
+
teamId?: string;
|
|
306
|
+
projectId?: string;
|
|
307
|
+
}): Promise<SandboxReplayLogsResponse>;
|
|
308
|
+
getReplayArtifacts(replayId: string, input?: {
|
|
309
|
+
teamId?: string;
|
|
310
|
+
projectId?: string;
|
|
311
|
+
}): Promise<SandboxReplayArtifactsResponse>;
|
|
312
|
+
cancelReplay(replayId: string, input?: {
|
|
313
|
+
teamId?: string;
|
|
314
|
+
projectId?: string;
|
|
315
|
+
}): Promise<SandboxReplayResponse>;
|
|
316
|
+
integrationConnections(input?: {
|
|
317
|
+
teamId?: string;
|
|
318
|
+
projectId?: string;
|
|
319
|
+
agentId?: string;
|
|
320
|
+
status?: SandboxIntegrationConnectionStatusFilter;
|
|
321
|
+
}): Promise<SandboxIntegrationConnectionsResponse>;
|
|
322
|
+
mcpServerConfig(): OpenPondSandboxMcpServerConfig;
|
|
323
|
+
smoke(options?: SandboxSmokeOptions): Promise<SandboxSmokeSummary>;
|
|
324
|
+
}
|
|
325
|
+
export declare function createOpenPondSandboxClient(options: OpenPondSandboxClientOptions): OpenPondSandboxClient;
|
|
326
|
+
export { normalizeSandboxApiUrl } from "./url.js";
|
|
327
|
+
//# sourceMappingURL=client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../../../../cloud/src/sandbox/client.ts"],"names":[],"mappings":"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"}
|