@deepnoodle/mobius 0.0.20 → 0.0.22
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 +31 -45
- package/dist/api/index.d.ts +198 -240
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/schema.d.ts +5387 -7233
- package/dist/api/schema.d.ts.map +1 -1
- package/dist/client.d.ts +64 -152
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +164 -358
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +6 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/signing.d.ts +43 -0
- package/dist/signing.d.ts.map +1 -0
- package/dist/signing.js +101 -0
- package/dist/signing.js.map +1 -0
- package/dist/webhook.d.ts +5 -17
- package/dist/webhook.d.ts.map +1 -1
- package/dist/webhook.js +38 -50
- package/dist/webhook.js.map +1 -1
- package/dist/worker.d.ts +40 -138
- package/dist/worker.d.ts.map +1 -1
- package/dist/worker.js +315 -456
- package/dist/worker.js.map +1 -1
- package/package.json +4 -4
package/dist/client.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Automation, AutomationListResponse, AutomationRun, AutomationRunEvent, AutomationRunListResponse, AutomationRunSource, AutomationRunStatus, AutomationStatus, AutomationTrigger, AutomationVersion, AutomationVersionListResponse, TagMap } from "./api/index.js";
|
|
2
2
|
import { RateLimitError } from "./retry.js";
|
|
3
3
|
export { RateLimitError } from "./retry.js";
|
|
4
4
|
export interface ClientOptions {
|
|
@@ -10,155 +10,83 @@ export interface ClientOptions {
|
|
|
10
10
|
namespace?: string;
|
|
11
11
|
/** Fetch timeout in milliseconds. Defaults to 60_000. */
|
|
12
12
|
timeoutMs?: number;
|
|
13
|
-
/**
|
|
14
|
-
* Number of retries for 429/503 responses. Defaults to
|
|
15
|
-
* {@link DEFAULT_MAX_RETRIES}. Set to 0 to disable retries — 429
|
|
16
|
-
* responses then surface as {@link RateLimitError} on the first attempt.
|
|
17
|
-
* See `../../docs/retries.md` for the shared retry policy.
|
|
18
|
-
*/
|
|
13
|
+
/** Number of retries for 429/503 responses. */
|
|
19
14
|
retry?: number;
|
|
20
15
|
}
|
|
21
16
|
export declare const DEFAULT_BASE_URL = "https://api.mobiusops.ai";
|
|
22
17
|
export declare const DEFAULT_PROJECT = "default";
|
|
23
18
|
export declare const DEFAULT_NAMESPACE = "default";
|
|
24
|
-
export declare class LeaseLostError extends Error {
|
|
25
|
-
readonly jobId: string;
|
|
26
|
-
constructor(jobId: string);
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Thrown when the server returns HTTP 401 on a worker-loop request.
|
|
30
|
-
* The credential has been revoked mid-execution; the process needs
|
|
31
|
-
* to restart under a fresh credential. Distinct from
|
|
32
|
-
* {@link LeaseLostError} (409 — lease reclaimed by scheduler) because
|
|
33
|
-
* the remedy is operational, not workflow-level.
|
|
34
|
-
*/
|
|
35
19
|
export declare class AuthRevokedError extends Error {
|
|
36
|
-
|
|
37
|
-
constructor(jobId?: string | undefined);
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Thrown when the server returns HTTP 409 with `worker_instance_conflict`
|
|
41
|
-
* on a claim. Another live process has already registered this
|
|
42
|
-
* `worker_instance_id` in the project under a different session token.
|
|
43
|
-
* Surfaces from {@link Worker.run} as a hard error so the operator
|
|
44
|
-
* notices the misconfiguration instead of the worker silently retrying —
|
|
45
|
-
* fix by configuring a unique instance ID per process or by relying on
|
|
46
|
-
* the SDK's auto-detection.
|
|
47
|
-
*/
|
|
48
|
-
export declare class WorkerInstanceConflictError extends Error {
|
|
49
|
-
readonly workerInstanceId: string | undefined;
|
|
50
|
-
readonly projectHandle: string;
|
|
51
|
-
constructor(workerInstanceId: string | undefined, projectHandle: string, message?: string);
|
|
20
|
+
constructor();
|
|
52
21
|
}
|
|
53
|
-
/**
|
|
54
|
-
* Thrown from {@link Client} construction when the API key or project
|
|
55
|
-
* options are malformed (e.g. a project-pinned key whose handle prefix
|
|
56
|
-
* doesn't match the server's handle regex, or a handle conflict
|
|
57
|
-
* between `WithProjectHandle` and the handle embedded in the key).
|
|
58
|
-
*/
|
|
59
22
|
export declare class ConfigError extends Error {
|
|
60
23
|
constructor(message: string);
|
|
61
24
|
}
|
|
25
|
+
export declare class LeaseLostError extends Error {
|
|
26
|
+
readonly jobId: string;
|
|
27
|
+
constructor(jobId: string);
|
|
28
|
+
}
|
|
62
29
|
export declare class PayloadTooLargeError extends Error {
|
|
63
30
|
readonly jobId: string;
|
|
64
31
|
constructor(jobId: string);
|
|
65
32
|
}
|
|
66
|
-
/**
|
|
67
|
-
* Legacy per-job rate-limit error raised by {@link Client.emitJobEvents}.
|
|
68
|
-
* Subclass of {@link RateLimitError} so callers catching the newer,
|
|
69
|
-
* transport-raised {@link RateLimitError} also catch this. New code
|
|
70
|
-
* should prefer {@link RateLimitError}.
|
|
71
|
-
*/
|
|
72
33
|
export declare class RateLimitedError extends RateLimitError {
|
|
73
34
|
readonly jobId: string;
|
|
74
35
|
constructor(jobId: string, retryAfter?: number);
|
|
75
36
|
}
|
|
76
|
-
export
|
|
77
|
-
|
|
78
|
-
|
|
37
|
+
export declare class WorkerInstanceConflictError extends Error {
|
|
38
|
+
readonly workerInstanceId: string | undefined;
|
|
39
|
+
readonly projectHandle: string;
|
|
40
|
+
constructor(workerInstanceId: string | undefined, projectHandle: string, message?: string);
|
|
79
41
|
}
|
|
80
|
-
export interface
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
42
|
+
export interface AutomationOptions {
|
|
43
|
+
name: string;
|
|
44
|
+
handle: string;
|
|
45
|
+
description?: string;
|
|
46
|
+
default_agent_id?: string;
|
|
47
|
+
default_inputs?: Record<string, unknown>;
|
|
48
|
+
settings?: Record<string, unknown>;
|
|
49
|
+
tags?: TagMap;
|
|
50
|
+
triggers?: AutomationTrigger[];
|
|
51
|
+
}
|
|
52
|
+
export interface UpdateAutomationOptions {
|
|
53
|
+
name?: string;
|
|
54
|
+
description?: string;
|
|
55
|
+
default_agent_id?: string;
|
|
56
|
+
default_inputs?: Record<string, unknown>;
|
|
57
|
+
settings?: Record<string, unknown>;
|
|
58
|
+
status?: AutomationStatus;
|
|
59
|
+
tags?: TagMap;
|
|
60
|
+
triggers?: AutomationTrigger[];
|
|
61
|
+
}
|
|
62
|
+
export interface AutomationVersionOptions {
|
|
63
|
+
compiled_plan?: Record<string, unknown>;
|
|
64
|
+
publish?: boolean;
|
|
65
|
+
}
|
|
66
|
+
export interface ListAutomationsOptions {
|
|
67
|
+
status?: AutomationStatus;
|
|
68
|
+
cursor?: string;
|
|
69
|
+
limit?: number;
|
|
85
70
|
}
|
|
86
|
-
export type WorkflowRunDetail = components["schemas"]["WorkflowRunDetail"];
|
|
87
|
-
export type WorkflowDefinition = components["schemas"]["WorkflowDefinition"];
|
|
88
71
|
export interface StartRunOptions {
|
|
89
|
-
queue?: string;
|
|
90
72
|
inputs?: Record<string, unknown>;
|
|
91
|
-
|
|
92
|
-
tags?: TagMap;
|
|
73
|
+
source?: AutomationRunSource;
|
|
93
74
|
external_id?: string;
|
|
94
|
-
config?: ConfigEntries;
|
|
95
75
|
}
|
|
96
76
|
export interface ListRunsOptions {
|
|
97
|
-
status?:
|
|
98
|
-
|
|
99
|
-
queue?: string;
|
|
100
|
-
parent_run_id?: string;
|
|
101
|
-
source_type?: string;
|
|
102
|
-
source_id?: string;
|
|
103
|
-
external_id?: string;
|
|
104
|
-
forked_from?: string;
|
|
77
|
+
status?: AutomationRunStatus;
|
|
78
|
+
automation_id?: string;
|
|
105
79
|
cursor?: string;
|
|
106
80
|
limit?: number;
|
|
107
81
|
}
|
|
108
|
-
export interface RunEvent {
|
|
109
|
-
type: string;
|
|
110
|
-
run_id: string;
|
|
111
|
-
seq: number;
|
|
112
|
-
timestamp: string;
|
|
113
|
-
data: Record<string, unknown>;
|
|
114
|
-
}
|
|
115
82
|
export interface WatchRunOptions {
|
|
116
83
|
since?: number;
|
|
117
84
|
signal?: AbortSignal;
|
|
118
85
|
}
|
|
119
|
-
export interface WaitRunOptions {
|
|
120
|
-
since?: number;
|
|
121
|
-
signal?: AbortSignal;
|
|
86
|
+
export interface WaitRunOptions extends WatchRunOptions {
|
|
122
87
|
reconnectDelayMs?: number;
|
|
123
88
|
}
|
|
124
|
-
export
|
|
125
|
-
/** Defaults to spec.name when omitted. */
|
|
126
|
-
name?: string;
|
|
127
|
-
/** Stable URL-safe workflow identifier. Server-derived from name when omitted on create. */
|
|
128
|
-
handle?: string;
|
|
129
|
-
description?: string;
|
|
130
|
-
published_as_tool?: boolean;
|
|
131
|
-
tags?: TagMap;
|
|
132
|
-
}
|
|
133
|
-
export interface UpdateWorkflowOptions {
|
|
134
|
-
name?: string;
|
|
135
|
-
description?: string;
|
|
136
|
-
published_as_tool?: boolean;
|
|
137
|
-
spec?: WorkflowSpec;
|
|
138
|
-
tags?: TagMap;
|
|
139
|
-
}
|
|
140
|
-
export interface ListWorkflowsOptions {
|
|
141
|
-
cursor?: string;
|
|
142
|
-
limit?: number;
|
|
143
|
-
tag?: string[];
|
|
144
|
-
}
|
|
145
|
-
export interface WorkflowSyncResult {
|
|
146
|
-
definition: WorkflowDefinition;
|
|
147
|
-
created: boolean;
|
|
148
|
-
updated: boolean;
|
|
149
|
-
}
|
|
150
|
-
export interface WorkflowDefinitionConfig {
|
|
151
|
-
spec: WorkflowSpec;
|
|
152
|
-
options?: WorkflowOptions;
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* Low-level Mobius runtime API client. Prefer {@link Worker} in worker.ts
|
|
156
|
-
* rather than calling these methods directly.
|
|
157
|
-
*
|
|
158
|
-
* Request and response shapes mirror the OpenAPI spec exactly (snake_case).
|
|
159
|
-
* A worker claims individual *jobs* — one action invocation on behalf of
|
|
160
|
-
* a workflow run — and reports each job's result back via this client.
|
|
161
|
-
*/
|
|
89
|
+
export type RunEvent = AutomationRunEvent;
|
|
162
90
|
export declare class Client {
|
|
163
91
|
private readonly baseURL;
|
|
164
92
|
readonly project: string;
|
|
@@ -166,42 +94,26 @@ export declare class Client {
|
|
|
166
94
|
private readonly timeoutMs;
|
|
167
95
|
private readonly fetchFn;
|
|
168
96
|
constructor(opts: ClientOptions);
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
startRun(spec: WorkflowSpec, opts?: StartRunOptions): Promise<WorkflowRun>;
|
|
187
|
-
startWorkflowRun(workflowId: string, opts?: StartRunOptions): Promise<WorkflowRun>;
|
|
188
|
-
listRuns(opts?: ListRunsOptions): Promise<WorkflowRunListResponse>;
|
|
189
|
-
getRun(runId: string): Promise<WorkflowRunDetail>;
|
|
190
|
-
cancelRun(runId: string): Promise<void>;
|
|
191
|
-
resumeRun(runId: string): Promise<void>;
|
|
192
|
-
sendRunSignal(runId: string, req: SendRunSignalRequest): Promise<RunSignal>;
|
|
193
|
-
watchRun(runId: string, opts?: WatchRunOptions): AsyncGenerator<RunEvent>;
|
|
194
|
-
waitRun(runId: string, opts?: WaitRunOptions): Promise<WorkflowRunDetail>;
|
|
195
|
-
listWorkflows(opts?: ListWorkflowsOptions): Promise<WorkflowDefinitionListResponse>;
|
|
196
|
-
getWorkflow(workflowId: string): Promise<WorkflowDefinition>;
|
|
197
|
-
createWorkflow(spec: WorkflowSpec, opts?: WorkflowOptions): Promise<WorkflowDefinition>;
|
|
198
|
-
updateWorkflow(workflowId: string, opts?: UpdateWorkflowOptions): Promise<WorkflowDefinition>;
|
|
199
|
-
ensureWorkflow(spec: WorkflowSpec, opts?: WorkflowOptions): Promise<WorkflowSyncResult>;
|
|
200
|
-
syncWorkflows(defs: WorkflowDefinitionConfig[]): Promise<WorkflowSyncResult[]>;
|
|
97
|
+
workerSocketURL(): string;
|
|
98
|
+
listAutomations(opts?: ListAutomationsOptions): Promise<AutomationListResponse>;
|
|
99
|
+
getAutomation(handle: string): Promise<Automation>;
|
|
100
|
+
createAutomation(opts: AutomationOptions): Promise<Automation>;
|
|
101
|
+
updateAutomation(handle: string, opts: UpdateAutomationOptions): Promise<Automation>;
|
|
102
|
+
deleteAutomation(handle: string): Promise<void>;
|
|
103
|
+
listAutomationVersions(handle: string): Promise<AutomationVersionListResponse>;
|
|
104
|
+
createAutomationVersion(handle: string, spec: Record<string, unknown>, opts?: AutomationVersionOptions): Promise<AutomationVersion>;
|
|
105
|
+
publishAutomationVersion(handle: string, version: number): Promise<Automation>;
|
|
106
|
+
startRun(automationHandle: string, opts?: StartRunOptions): Promise<AutomationRun>;
|
|
107
|
+
startAutomationRun(automationHandle: string, opts?: StartRunOptions): Promise<AutomationRun>;
|
|
108
|
+
listRuns(opts?: ListRunsOptions): Promise<AutomationRunListResponse>;
|
|
109
|
+
getRun(runId: string): Promise<AutomationRun>;
|
|
110
|
+
cancelRun(runId: string, reason?: string): Promise<AutomationRun>;
|
|
111
|
+
signalRun(runId: string, stepKey: string, result?: Record<string, unknown>): Promise<AutomationRun>;
|
|
112
|
+
watchRun(runId: string, opts?: WatchRunOptions): AsyncGenerator<AutomationRunEvent>;
|
|
113
|
+
waitRun(runId: string, opts?: WaitRunOptions): Promise<AutomationRun>;
|
|
201
114
|
private request;
|
|
202
|
-
private
|
|
115
|
+
private url;
|
|
203
116
|
}
|
|
204
|
-
export type {
|
|
205
|
-
export
|
|
206
|
-
export declare function isTerminalRunStatus(status: WorkflowRunStatus): boolean;
|
|
117
|
+
export type { Automation, AutomationListResponse, AutomationRun, AutomationRunEvent, AutomationRunListResponse, AutomationRunStatus, AutomationVersion, AutomationVersionListResponse, };
|
|
118
|
+
export declare function isTerminalRunStatus(status: AutomationRunStatus | string): boolean;
|
|
207
119
|
//# sourceMappingURL=client.d.ts.map
|
package/dist/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|