@oxygen-agent/cli 1.45.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/dist/browser-login.d.ts +8 -0
- package/dist/browser-login.d.ts.map +1 -0
- package/dist/browser-login.js +181 -0
- package/dist/browser-login.js.map +1 -0
- package/dist/credentials.d.ts +28 -0
- package/dist/credentials.d.ts.map +1 -0
- package/dist/credentials.js +470 -0
- package/dist/credentials.js.map +1 -0
- package/dist/http-client.d.ts +12 -0
- package/dist/http-client.d.ts.map +1 -0
- package/dist/http-client.js +218 -0
- package/dist/http-client.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3523 -0
- package/dist/index.js.map +1 -0
- package/dist/local-custom-http-column.d.ts +9 -0
- package/dist/local-custom-http-column.d.ts.map +1 -0
- package/dist/local-custom-http-column.js +571 -0
- package/dist/local-custom-http-column.js.map +1 -0
- package/dist/session.d.ts +57 -0
- package/dist/session.d.ts.map +1 -0
- package/dist/session.js +194 -0
- package/dist/session.js.map +1 -0
- package/node_modules/@oxygen/recipe-sdk/dist/index.d.ts +136 -0
- package/node_modules/@oxygen/recipe-sdk/dist/index.d.ts.map +1 -0
- package/node_modules/@oxygen/recipe-sdk/dist/index.js +43 -0
- package/node_modules/@oxygen/recipe-sdk/dist/index.js.map +1 -0
- package/node_modules/@oxygen/recipe-sdk/package.json +15 -0
- package/node_modules/@oxygen/shared/dist/billing.d.ts +124 -0
- package/node_modules/@oxygen/shared/dist/billing.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/billing.js +296 -0
- package/node_modules/@oxygen/shared/dist/billing.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/column-types.d.ts +55 -0
- package/node_modules/@oxygen/shared/dist/column-types.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/column-types.js +161 -0
- package/node_modules/@oxygen/shared/dist/column-types.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/credit-guidance.d.ts +15 -0
- package/node_modules/@oxygen/shared/dist/credit-guidance.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/credit-guidance.js +60 -0
- package/node_modules/@oxygen/shared/dist/credit-guidance.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/file-import.d.ts +22 -0
- package/node_modules/@oxygen/shared/dist/file-import.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/file-import.js +232 -0
- package/node_modules/@oxygen/shared/dist/file-import.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/index.d.ts +45 -0
- package/node_modules/@oxygen/shared/dist/index.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/index.js +49 -0
- package/node_modules/@oxygen/shared/dist/index.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/log.d.ts +22 -0
- package/node_modules/@oxygen/shared/dist/log.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/log.js +58 -0
- package/node_modules/@oxygen/shared/dist/log.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/redaction.d.ts +4 -0
- package/node_modules/@oxygen/shared/dist/redaction.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/redaction.js +106 -0
- package/node_modules/@oxygen/shared/dist/redaction.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/telemetry.d.ts +9 -0
- package/node_modules/@oxygen/shared/dist/telemetry.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/telemetry.js +98 -0
- package/node_modules/@oxygen/shared/dist/telemetry.js.map +1 -0
- package/node_modules/@oxygen/shared/dist/version.d.ts +2 -0
- package/node_modules/@oxygen/shared/dist/version.d.ts.map +1 -0
- package/node_modules/@oxygen/shared/dist/version.js +2 -0
- package/node_modules/@oxygen/shared/dist/version.js.map +1 -0
- package/node_modules/@oxygen/shared/package.json +21 -0
- package/node_modules/@oxygen/workflows/dist/index.d.ts +680 -0
- package/node_modules/@oxygen/workflows/dist/index.d.ts.map +1 -0
- package/node_modules/@oxygen/workflows/dist/index.js +983 -0
- package/node_modules/@oxygen/workflows/dist/index.js.map +1 -0
- package/node_modules/@oxygen/workflows/package.json +15 -0
- package/package.json +44 -0
|
@@ -0,0 +1,680 @@
|
|
|
1
|
+
export declare const WORKFLOW_MANIFEST_VERSION = 1;
|
|
2
|
+
export declare const WORKFLOW_COMPILER_VERSION = "oxygen-workflows-v1";
|
|
3
|
+
export declare const DURABLE_RECIPE_COMPILER_VERSION = "oxygen-recipes-v2";
|
|
4
|
+
export declare const MAX_RECIPE_BUNDLE_BYTES = 2000000;
|
|
5
|
+
export declare const DEFAULT_WORKFLOW_CRON_TIMEZONE = "UTC";
|
|
6
|
+
export type WorkflowMode = "dry_run" | "live" | "smoke_test";
|
|
7
|
+
export type WorkflowTriggerType = "api" | "webhook" | "cron" | "event";
|
|
8
|
+
export type WorkflowStatus = "active" | "disabled";
|
|
9
|
+
export type WorkflowStepKind = "transform" | "tool";
|
|
10
|
+
export type WorkflowStepEffect = "none" | "external_read" | "external_write";
|
|
11
|
+
export type RecipeRuntime = "durable";
|
|
12
|
+
export type WorkflowEventFilterOp = "eq" | "neq" | "exists" | "not_exists";
|
|
13
|
+
export type WorkflowEventFilter = {
|
|
14
|
+
path: string;
|
|
15
|
+
op: WorkflowEventFilterOp;
|
|
16
|
+
value?: unknown;
|
|
17
|
+
};
|
|
18
|
+
export type JsonSchema = {
|
|
19
|
+
type?: string | string[];
|
|
20
|
+
title?: string;
|
|
21
|
+
description?: string;
|
|
22
|
+
properties?: Record<string, JsonSchema>;
|
|
23
|
+
required?: string[];
|
|
24
|
+
items?: JsonSchema;
|
|
25
|
+
enum?: string[];
|
|
26
|
+
const?: unknown;
|
|
27
|
+
anyOf?: JsonSchema[];
|
|
28
|
+
additionalProperties?: boolean | JsonSchema;
|
|
29
|
+
[key: string]: unknown;
|
|
30
|
+
};
|
|
31
|
+
export type WorkflowTriggerManifest = {
|
|
32
|
+
type: "api";
|
|
33
|
+
status?: WorkflowStatus;
|
|
34
|
+
} | {
|
|
35
|
+
type: "webhook";
|
|
36
|
+
trigger_id: string;
|
|
37
|
+
trigger_name?: string | null;
|
|
38
|
+
secret_required?: boolean;
|
|
39
|
+
idempotency_key_path?: string | null;
|
|
40
|
+
status?: WorkflowStatus;
|
|
41
|
+
} | {
|
|
42
|
+
type: "cron";
|
|
43
|
+
cron: string;
|
|
44
|
+
timezone?: string | null;
|
|
45
|
+
status?: WorkflowStatus;
|
|
46
|
+
} | {
|
|
47
|
+
type: "event";
|
|
48
|
+
source: string;
|
|
49
|
+
event: string;
|
|
50
|
+
filters?: WorkflowEventFilter[];
|
|
51
|
+
idempotency_key_path?: string | null;
|
|
52
|
+
status?: WorkflowStatus;
|
|
53
|
+
};
|
|
54
|
+
export type WorkflowTransformStepManifest = {
|
|
55
|
+
kind: "transform";
|
|
56
|
+
id: string;
|
|
57
|
+
description?: string;
|
|
58
|
+
run_source: string;
|
|
59
|
+
};
|
|
60
|
+
export type WorkflowToolStepManifest = {
|
|
61
|
+
kind: "tool";
|
|
62
|
+
id: string;
|
|
63
|
+
description?: string;
|
|
64
|
+
tool: string;
|
|
65
|
+
effect: WorkflowStepEffect;
|
|
66
|
+
mode?: WorkflowMode;
|
|
67
|
+
payload_source: string;
|
|
68
|
+
};
|
|
69
|
+
export type WorkflowStepManifest = WorkflowTransformStepManifest | WorkflowToolStepManifest;
|
|
70
|
+
export type WorkflowManifest = {
|
|
71
|
+
manifest_version: 1;
|
|
72
|
+
workflow: {
|
|
73
|
+
id: string;
|
|
74
|
+
name: string;
|
|
75
|
+
status?: WorkflowStatus;
|
|
76
|
+
};
|
|
77
|
+
specification?: string;
|
|
78
|
+
trigger?: WorkflowTriggerManifest;
|
|
79
|
+
input_schema?: JsonSchema;
|
|
80
|
+
steps: WorkflowStepManifest[];
|
|
81
|
+
source_hash: string;
|
|
82
|
+
compiler_version: string;
|
|
83
|
+
created_at: string;
|
|
84
|
+
};
|
|
85
|
+
export type RecipeManifest = {
|
|
86
|
+
manifest_version: 1;
|
|
87
|
+
workflow: {
|
|
88
|
+
id: string;
|
|
89
|
+
name: string;
|
|
90
|
+
status?: WorkflowStatus;
|
|
91
|
+
};
|
|
92
|
+
trigger?: WorkflowTriggerManifest;
|
|
93
|
+
input_schema?: JsonSchema;
|
|
94
|
+
runtime: RecipeRuntime;
|
|
95
|
+
bundle: string;
|
|
96
|
+
bundle_format: "esm";
|
|
97
|
+
tools_used: string[];
|
|
98
|
+
source_hash: string;
|
|
99
|
+
compiler_version: typeof DURABLE_RECIPE_COMPILER_VERSION;
|
|
100
|
+
created_at: string;
|
|
101
|
+
};
|
|
102
|
+
export type AnyWorkflowManifest = WorkflowManifest | RecipeManifest;
|
|
103
|
+
export type WorkflowApplyInput = {
|
|
104
|
+
manifest: WorkflowManifest;
|
|
105
|
+
};
|
|
106
|
+
export type WorkflowCallInput = {
|
|
107
|
+
workflow_id?: string;
|
|
108
|
+
workflow_name?: string;
|
|
109
|
+
input?: Record<string, unknown>;
|
|
110
|
+
mode?: WorkflowMode;
|
|
111
|
+
idempotency_key?: string;
|
|
112
|
+
};
|
|
113
|
+
type WorkflowFunction = (context: Record<string, unknown>) => unknown | Promise<unknown>;
|
|
114
|
+
export type WorkflowDefinition = {
|
|
115
|
+
readonly __oxygen_workflow_definition: true;
|
|
116
|
+
id: string;
|
|
117
|
+
name: string;
|
|
118
|
+
status?: WorkflowStatus;
|
|
119
|
+
specification?: string;
|
|
120
|
+
trigger?: WorkflowTriggerDefinition;
|
|
121
|
+
inputSchema?: JsonSchema;
|
|
122
|
+
steps: WorkflowStepDefinition[];
|
|
123
|
+
};
|
|
124
|
+
export type WorkflowTriggerDefinition = WorkflowTriggerManifest;
|
|
125
|
+
export type WorkflowTransformStepDefinition = {
|
|
126
|
+
readonly __oxygen_workflow_step: true;
|
|
127
|
+
kind: "transform";
|
|
128
|
+
id: string;
|
|
129
|
+
description?: string;
|
|
130
|
+
run: WorkflowFunction;
|
|
131
|
+
};
|
|
132
|
+
export type WorkflowToolStepDefinition = {
|
|
133
|
+
readonly __oxygen_workflow_step: true;
|
|
134
|
+
kind: "tool";
|
|
135
|
+
id: string;
|
|
136
|
+
description?: string;
|
|
137
|
+
tool: string;
|
|
138
|
+
effect?: WorkflowStepEffect;
|
|
139
|
+
mode?: WorkflowMode;
|
|
140
|
+
payload: WorkflowFunction;
|
|
141
|
+
};
|
|
142
|
+
export type WorkflowStepDefinition = WorkflowTransformStepDefinition | WorkflowToolStepDefinition;
|
|
143
|
+
export type WorkflowLintIssue = {
|
|
144
|
+
path: string;
|
|
145
|
+
code: string;
|
|
146
|
+
message: string;
|
|
147
|
+
};
|
|
148
|
+
export type WorkflowLintResult = {
|
|
149
|
+
ok: boolean;
|
|
150
|
+
issues: WorkflowLintIssue[];
|
|
151
|
+
};
|
|
152
|
+
export type JsonSchemaValidationIssue = WorkflowLintIssue;
|
|
153
|
+
export type WorkflowManifestValidationOptions = {
|
|
154
|
+
isToolAllowed?: (toolId: string) => boolean;
|
|
155
|
+
};
|
|
156
|
+
export declare function defineWorkflow(input: {
|
|
157
|
+
id: string;
|
|
158
|
+
name: string;
|
|
159
|
+
status?: WorkflowStatus;
|
|
160
|
+
specification?: string;
|
|
161
|
+
trigger?: WorkflowTriggerDefinition;
|
|
162
|
+
inputSchema?: JsonSchema;
|
|
163
|
+
steps: WorkflowStepDefinition[];
|
|
164
|
+
}): WorkflowDefinition;
|
|
165
|
+
export declare function apiTrigger(input?: {
|
|
166
|
+
status?: WorkflowStatus;
|
|
167
|
+
}): WorkflowTriggerDefinition;
|
|
168
|
+
export declare function webhookTrigger(input: {
|
|
169
|
+
id: string;
|
|
170
|
+
name?: string | null;
|
|
171
|
+
secret?: boolean;
|
|
172
|
+
idempotencyKeyPath?: string | null;
|
|
173
|
+
status?: WorkflowStatus;
|
|
174
|
+
}): WorkflowTriggerDefinition;
|
|
175
|
+
export declare function cronTrigger(input: {
|
|
176
|
+
cron: string;
|
|
177
|
+
timezone?: string | null;
|
|
178
|
+
status?: WorkflowStatus;
|
|
179
|
+
}): WorkflowTriggerDefinition;
|
|
180
|
+
export declare function eventTrigger(input: {
|
|
181
|
+
source: string;
|
|
182
|
+
event: string;
|
|
183
|
+
filters?: WorkflowEventFilter[];
|
|
184
|
+
idempotencyKeyPath?: string | null;
|
|
185
|
+
status?: WorkflowStatus;
|
|
186
|
+
}): WorkflowTriggerDefinition;
|
|
187
|
+
export declare function nextCronRunAfter(input: {
|
|
188
|
+
cron: string;
|
|
189
|
+
timezone?: string | null;
|
|
190
|
+
after?: Date;
|
|
191
|
+
}): Date;
|
|
192
|
+
export declare function transformStep(input: {
|
|
193
|
+
id: string;
|
|
194
|
+
description?: string;
|
|
195
|
+
run: WorkflowFunction;
|
|
196
|
+
}): WorkflowTransformStepDefinition;
|
|
197
|
+
export declare function toolStep(input: {
|
|
198
|
+
id: string;
|
|
199
|
+
description?: string;
|
|
200
|
+
tool: string;
|
|
201
|
+
effect?: WorkflowStepEffect;
|
|
202
|
+
mode?: WorkflowMode;
|
|
203
|
+
payload: WorkflowFunction;
|
|
204
|
+
}): WorkflowToolStepDefinition;
|
|
205
|
+
export declare function isWorkflowDefinition(value: unknown): value is WorkflowDefinition;
|
|
206
|
+
export declare function isWorkflowManifest(value: unknown): value is WorkflowManifest;
|
|
207
|
+
export declare function isRecipeManifest(value: unknown): value is RecipeManifest;
|
|
208
|
+
export declare function isDurableRecipeManifest(value: unknown): value is RecipeManifest;
|
|
209
|
+
export declare function isAnyWorkflowManifest(value: unknown): value is AnyWorkflowManifest;
|
|
210
|
+
export declare function compileWorkflowDefinition(definition: WorkflowDefinition, options?: {
|
|
211
|
+
source?: string;
|
|
212
|
+
sourceHash?: string;
|
|
213
|
+
createdAt?: Date;
|
|
214
|
+
}): WorkflowManifest;
|
|
215
|
+
export declare function buildRecipeManifest(input: {
|
|
216
|
+
workflowId: string;
|
|
217
|
+
workflowName: string;
|
|
218
|
+
status?: WorkflowStatus;
|
|
219
|
+
trigger?: WorkflowTriggerManifest;
|
|
220
|
+
inputSchema?: JsonSchema;
|
|
221
|
+
bundle: string;
|
|
222
|
+
toolsUsed: string[];
|
|
223
|
+
sourceHash?: string;
|
|
224
|
+
createdAt?: Date;
|
|
225
|
+
}): RecipeManifest;
|
|
226
|
+
export declare function lintWorkflowManifest(value: unknown, options?: WorkflowManifestValidationOptions): WorkflowLintResult;
|
|
227
|
+
export declare function lintRecipeManifest(value: unknown, options?: WorkflowManifestValidationOptions): WorkflowLintResult;
|
|
228
|
+
export declare function assertRecipeManifest(value: unknown, options?: WorkflowManifestValidationOptions): asserts value is RecipeManifest;
|
|
229
|
+
export declare function assertWorkflowManifest(value: unknown, options?: WorkflowManifestValidationOptions): asserts value is WorkflowManifest;
|
|
230
|
+
export declare function validateJsonSchemaValue(value: unknown, schema: JsonSchema | undefined, path?: string): JsonSchemaValidationIssue[];
|
|
231
|
+
export declare function assertRecipeBundleSafe(bundle: string): void;
|
|
232
|
+
export declare function lintRecipeBundleSafety(bundle: string, path?: string): WorkflowLintIssue[];
|
|
233
|
+
export declare function runPureWorkflowFunction(input: {
|
|
234
|
+
source: string;
|
|
235
|
+
context: Record<string, unknown>;
|
|
236
|
+
timeoutMs?: number;
|
|
237
|
+
maxOutputBytes?: number;
|
|
238
|
+
}): Promise<unknown>;
|
|
239
|
+
export declare function getWorkflowApplySchema(): {
|
|
240
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
241
|
+
readonly title: "OXYGEN Workflow Apply Input";
|
|
242
|
+
readonly type: "object";
|
|
243
|
+
readonly additionalProperties: false;
|
|
244
|
+
readonly properties: {
|
|
245
|
+
readonly manifest: {
|
|
246
|
+
readonly $ref: "#/$defs/manifest";
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
readonly required: readonly ["manifest"];
|
|
250
|
+
readonly $defs: {
|
|
251
|
+
readonly manifest: {
|
|
252
|
+
readonly type: "object";
|
|
253
|
+
readonly additionalProperties: true;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
export declare function getWorkflowSchema(subject?: "apply" | "call" | "event" | "trigger" | "manifest" | "all"): {
|
|
258
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
259
|
+
readonly title: "OXYGEN Workflow Apply Input";
|
|
260
|
+
readonly type: "object";
|
|
261
|
+
readonly additionalProperties: false;
|
|
262
|
+
readonly properties: {
|
|
263
|
+
readonly manifest: {
|
|
264
|
+
readonly $ref: "#/$defs/manifest";
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
readonly required: readonly ["manifest"];
|
|
268
|
+
readonly $defs: {
|
|
269
|
+
readonly manifest: {
|
|
270
|
+
readonly type: "object";
|
|
271
|
+
readonly additionalProperties: true;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
} | {
|
|
275
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
276
|
+
readonly title: "OXYGEN Workflow Call Input";
|
|
277
|
+
readonly type: "object";
|
|
278
|
+
readonly additionalProperties: false;
|
|
279
|
+
readonly properties: {
|
|
280
|
+
readonly workflow_id: {
|
|
281
|
+
readonly type: "string";
|
|
282
|
+
};
|
|
283
|
+
readonly workflow_name: {
|
|
284
|
+
readonly type: "string";
|
|
285
|
+
};
|
|
286
|
+
readonly input: {
|
|
287
|
+
readonly type: "object";
|
|
288
|
+
readonly additionalProperties: true;
|
|
289
|
+
};
|
|
290
|
+
readonly mode: {
|
|
291
|
+
readonly enum: readonly ["dry_run", "live", "smoke_test"];
|
|
292
|
+
};
|
|
293
|
+
readonly idempotency_key: {
|
|
294
|
+
readonly type: "string";
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
} | {
|
|
298
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
299
|
+
readonly title: "OXYGEN Workflow Event Emit Input";
|
|
300
|
+
readonly type: "object";
|
|
301
|
+
readonly additionalProperties: false;
|
|
302
|
+
readonly properties: {
|
|
303
|
+
readonly source: {
|
|
304
|
+
readonly type: "string";
|
|
305
|
+
};
|
|
306
|
+
readonly event: {
|
|
307
|
+
readonly type: "string";
|
|
308
|
+
};
|
|
309
|
+
readonly payload: {
|
|
310
|
+
readonly type: "object";
|
|
311
|
+
readonly additionalProperties: true;
|
|
312
|
+
};
|
|
313
|
+
readonly raw_payload: {
|
|
314
|
+
readonly type: "object";
|
|
315
|
+
readonly additionalProperties: true;
|
|
316
|
+
};
|
|
317
|
+
readonly headers: {
|
|
318
|
+
readonly type: "object";
|
|
319
|
+
readonly additionalProperties: true;
|
|
320
|
+
};
|
|
321
|
+
readonly external_event_id: {
|
|
322
|
+
readonly type: "string";
|
|
323
|
+
};
|
|
324
|
+
readonly idempotency_key: {
|
|
325
|
+
readonly type: "string";
|
|
326
|
+
};
|
|
327
|
+
readonly mode: {
|
|
328
|
+
readonly enum: readonly ["dry_run", "live", "smoke_test"];
|
|
329
|
+
};
|
|
330
|
+
};
|
|
331
|
+
readonly required: readonly ["source", "event", "payload"];
|
|
332
|
+
} | {
|
|
333
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
334
|
+
readonly title: "OXYGEN Workflow Trigger";
|
|
335
|
+
readonly type: "object";
|
|
336
|
+
readonly additionalProperties: false;
|
|
337
|
+
readonly properties: {
|
|
338
|
+
readonly type: {
|
|
339
|
+
readonly enum: readonly ["api", "webhook", "cron"];
|
|
340
|
+
};
|
|
341
|
+
readonly trigger_id: {
|
|
342
|
+
readonly type: "string";
|
|
343
|
+
};
|
|
344
|
+
readonly trigger_name: {
|
|
345
|
+
readonly type: readonly ["string", "null"];
|
|
346
|
+
};
|
|
347
|
+
readonly secret_required: {
|
|
348
|
+
readonly type: "boolean";
|
|
349
|
+
};
|
|
350
|
+
readonly idempotency_key_path: {
|
|
351
|
+
readonly type: readonly ["string", "null"];
|
|
352
|
+
};
|
|
353
|
+
readonly cron: {
|
|
354
|
+
readonly type: "string";
|
|
355
|
+
};
|
|
356
|
+
readonly timezone: {
|
|
357
|
+
readonly type: readonly ["string", "null"];
|
|
358
|
+
};
|
|
359
|
+
readonly source: {
|
|
360
|
+
readonly type: "string";
|
|
361
|
+
};
|
|
362
|
+
readonly event: {
|
|
363
|
+
readonly type: "string";
|
|
364
|
+
};
|
|
365
|
+
readonly filters: {
|
|
366
|
+
readonly type: "array";
|
|
367
|
+
readonly items: {
|
|
368
|
+
readonly type: "object";
|
|
369
|
+
readonly additionalProperties: false;
|
|
370
|
+
readonly properties: {
|
|
371
|
+
readonly path: {
|
|
372
|
+
readonly type: "string";
|
|
373
|
+
};
|
|
374
|
+
readonly op: {
|
|
375
|
+
readonly enum: readonly ["eq", "neq", "exists", "not_exists"];
|
|
376
|
+
};
|
|
377
|
+
readonly value: {};
|
|
378
|
+
};
|
|
379
|
+
readonly required: readonly ["path", "op"];
|
|
380
|
+
};
|
|
381
|
+
};
|
|
382
|
+
readonly status: {
|
|
383
|
+
readonly enum: readonly ["active", "disabled"];
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
readonly required: readonly ["type"];
|
|
387
|
+
} | {
|
|
388
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
389
|
+
readonly title: "OXYGEN Workflow Manifest";
|
|
390
|
+
readonly type: "object";
|
|
391
|
+
readonly additionalProperties: true;
|
|
392
|
+
readonly required: readonly ["manifest_version", "workflow", "steps", "source_hash", "compiler_version"];
|
|
393
|
+
} | {
|
|
394
|
+
schemas: {
|
|
395
|
+
apply: {
|
|
396
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
397
|
+
readonly title: "OXYGEN Workflow Apply Input";
|
|
398
|
+
readonly type: "object";
|
|
399
|
+
readonly additionalProperties: false;
|
|
400
|
+
readonly properties: {
|
|
401
|
+
readonly manifest: {
|
|
402
|
+
readonly $ref: "#/$defs/manifest";
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
readonly required: readonly ["manifest"];
|
|
406
|
+
readonly $defs: {
|
|
407
|
+
readonly manifest: {
|
|
408
|
+
readonly type: "object";
|
|
409
|
+
readonly additionalProperties: true;
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
};
|
|
413
|
+
call: {
|
|
414
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
415
|
+
readonly title: "OXYGEN Workflow Call Input";
|
|
416
|
+
readonly type: "object";
|
|
417
|
+
readonly additionalProperties: false;
|
|
418
|
+
readonly properties: {
|
|
419
|
+
readonly workflow_id: {
|
|
420
|
+
readonly type: "string";
|
|
421
|
+
};
|
|
422
|
+
readonly workflow_name: {
|
|
423
|
+
readonly type: "string";
|
|
424
|
+
};
|
|
425
|
+
readonly input: {
|
|
426
|
+
readonly type: "object";
|
|
427
|
+
readonly additionalProperties: true;
|
|
428
|
+
};
|
|
429
|
+
readonly mode: {
|
|
430
|
+
readonly enum: readonly ["dry_run", "live", "smoke_test"];
|
|
431
|
+
};
|
|
432
|
+
readonly idempotency_key: {
|
|
433
|
+
readonly type: "string";
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
};
|
|
437
|
+
event: {
|
|
438
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
439
|
+
readonly title: "OXYGEN Workflow Event Emit Input";
|
|
440
|
+
readonly type: "object";
|
|
441
|
+
readonly additionalProperties: false;
|
|
442
|
+
readonly properties: {
|
|
443
|
+
readonly source: {
|
|
444
|
+
readonly type: "string";
|
|
445
|
+
};
|
|
446
|
+
readonly event: {
|
|
447
|
+
readonly type: "string";
|
|
448
|
+
};
|
|
449
|
+
readonly payload: {
|
|
450
|
+
readonly type: "object";
|
|
451
|
+
readonly additionalProperties: true;
|
|
452
|
+
};
|
|
453
|
+
readonly raw_payload: {
|
|
454
|
+
readonly type: "object";
|
|
455
|
+
readonly additionalProperties: true;
|
|
456
|
+
};
|
|
457
|
+
readonly headers: {
|
|
458
|
+
readonly type: "object";
|
|
459
|
+
readonly additionalProperties: true;
|
|
460
|
+
};
|
|
461
|
+
readonly external_event_id: {
|
|
462
|
+
readonly type: "string";
|
|
463
|
+
};
|
|
464
|
+
readonly idempotency_key: {
|
|
465
|
+
readonly type: "string";
|
|
466
|
+
};
|
|
467
|
+
readonly mode: {
|
|
468
|
+
readonly enum: readonly ["dry_run", "live", "smoke_test"];
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
readonly required: readonly ["source", "event", "payload"];
|
|
472
|
+
};
|
|
473
|
+
trigger: {
|
|
474
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
475
|
+
readonly title: "OXYGEN Workflow Trigger";
|
|
476
|
+
readonly type: "object";
|
|
477
|
+
readonly additionalProperties: false;
|
|
478
|
+
readonly properties: {
|
|
479
|
+
readonly type: {
|
|
480
|
+
readonly enum: readonly ["api", "webhook", "cron"];
|
|
481
|
+
};
|
|
482
|
+
readonly trigger_id: {
|
|
483
|
+
readonly type: "string";
|
|
484
|
+
};
|
|
485
|
+
readonly trigger_name: {
|
|
486
|
+
readonly type: readonly ["string", "null"];
|
|
487
|
+
};
|
|
488
|
+
readonly secret_required: {
|
|
489
|
+
readonly type: "boolean";
|
|
490
|
+
};
|
|
491
|
+
readonly idempotency_key_path: {
|
|
492
|
+
readonly type: readonly ["string", "null"];
|
|
493
|
+
};
|
|
494
|
+
readonly cron: {
|
|
495
|
+
readonly type: "string";
|
|
496
|
+
};
|
|
497
|
+
readonly timezone: {
|
|
498
|
+
readonly type: readonly ["string", "null"];
|
|
499
|
+
};
|
|
500
|
+
readonly source: {
|
|
501
|
+
readonly type: "string";
|
|
502
|
+
};
|
|
503
|
+
readonly event: {
|
|
504
|
+
readonly type: "string";
|
|
505
|
+
};
|
|
506
|
+
readonly filters: {
|
|
507
|
+
readonly type: "array";
|
|
508
|
+
readonly items: {
|
|
509
|
+
readonly type: "object";
|
|
510
|
+
readonly additionalProperties: false;
|
|
511
|
+
readonly properties: {
|
|
512
|
+
readonly path: {
|
|
513
|
+
readonly type: "string";
|
|
514
|
+
};
|
|
515
|
+
readonly op: {
|
|
516
|
+
readonly enum: readonly ["eq", "neq", "exists", "not_exists"];
|
|
517
|
+
};
|
|
518
|
+
readonly value: {};
|
|
519
|
+
};
|
|
520
|
+
readonly required: readonly ["path", "op"];
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
readonly status: {
|
|
524
|
+
readonly enum: readonly ["active", "disabled"];
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
readonly required: readonly ["type"];
|
|
528
|
+
};
|
|
529
|
+
manifest: {
|
|
530
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
531
|
+
readonly title: "OXYGEN Workflow Manifest";
|
|
532
|
+
readonly type: "object";
|
|
533
|
+
readonly additionalProperties: true;
|
|
534
|
+
readonly required: readonly ["manifest_version", "workflow", "steps", "source_hash", "compiler_version"];
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
export declare const workflowApplySchema: {
|
|
539
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
540
|
+
readonly title: "OXYGEN Workflow Apply Input";
|
|
541
|
+
readonly type: "object";
|
|
542
|
+
readonly additionalProperties: false;
|
|
543
|
+
readonly properties: {
|
|
544
|
+
readonly manifest: {
|
|
545
|
+
readonly $ref: "#/$defs/manifest";
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
readonly required: readonly ["manifest"];
|
|
549
|
+
readonly $defs: {
|
|
550
|
+
readonly manifest: {
|
|
551
|
+
readonly type: "object";
|
|
552
|
+
readonly additionalProperties: true;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
export declare const workflowCallSchema: {
|
|
557
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
558
|
+
readonly title: "OXYGEN Workflow Call Input";
|
|
559
|
+
readonly type: "object";
|
|
560
|
+
readonly additionalProperties: false;
|
|
561
|
+
readonly properties: {
|
|
562
|
+
readonly workflow_id: {
|
|
563
|
+
readonly type: "string";
|
|
564
|
+
};
|
|
565
|
+
readonly workflow_name: {
|
|
566
|
+
readonly type: "string";
|
|
567
|
+
};
|
|
568
|
+
readonly input: {
|
|
569
|
+
readonly type: "object";
|
|
570
|
+
readonly additionalProperties: true;
|
|
571
|
+
};
|
|
572
|
+
readonly mode: {
|
|
573
|
+
readonly enum: readonly ["dry_run", "live", "smoke_test"];
|
|
574
|
+
};
|
|
575
|
+
readonly idempotency_key: {
|
|
576
|
+
readonly type: "string";
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
export declare const workflowEventEmitSchema: {
|
|
581
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
582
|
+
readonly title: "OXYGEN Workflow Event Emit Input";
|
|
583
|
+
readonly type: "object";
|
|
584
|
+
readonly additionalProperties: false;
|
|
585
|
+
readonly properties: {
|
|
586
|
+
readonly source: {
|
|
587
|
+
readonly type: "string";
|
|
588
|
+
};
|
|
589
|
+
readonly event: {
|
|
590
|
+
readonly type: "string";
|
|
591
|
+
};
|
|
592
|
+
readonly payload: {
|
|
593
|
+
readonly type: "object";
|
|
594
|
+
readonly additionalProperties: true;
|
|
595
|
+
};
|
|
596
|
+
readonly raw_payload: {
|
|
597
|
+
readonly type: "object";
|
|
598
|
+
readonly additionalProperties: true;
|
|
599
|
+
};
|
|
600
|
+
readonly headers: {
|
|
601
|
+
readonly type: "object";
|
|
602
|
+
readonly additionalProperties: true;
|
|
603
|
+
};
|
|
604
|
+
readonly external_event_id: {
|
|
605
|
+
readonly type: "string";
|
|
606
|
+
};
|
|
607
|
+
readonly idempotency_key: {
|
|
608
|
+
readonly type: "string";
|
|
609
|
+
};
|
|
610
|
+
readonly mode: {
|
|
611
|
+
readonly enum: readonly ["dry_run", "live", "smoke_test"];
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
readonly required: readonly ["source", "event", "payload"];
|
|
615
|
+
};
|
|
616
|
+
export declare const workflowTriggerSchema: {
|
|
617
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
618
|
+
readonly title: "OXYGEN Workflow Trigger";
|
|
619
|
+
readonly type: "object";
|
|
620
|
+
readonly additionalProperties: false;
|
|
621
|
+
readonly properties: {
|
|
622
|
+
readonly type: {
|
|
623
|
+
readonly enum: readonly ["api", "webhook", "cron"];
|
|
624
|
+
};
|
|
625
|
+
readonly trigger_id: {
|
|
626
|
+
readonly type: "string";
|
|
627
|
+
};
|
|
628
|
+
readonly trigger_name: {
|
|
629
|
+
readonly type: readonly ["string", "null"];
|
|
630
|
+
};
|
|
631
|
+
readonly secret_required: {
|
|
632
|
+
readonly type: "boolean";
|
|
633
|
+
};
|
|
634
|
+
readonly idempotency_key_path: {
|
|
635
|
+
readonly type: readonly ["string", "null"];
|
|
636
|
+
};
|
|
637
|
+
readonly cron: {
|
|
638
|
+
readonly type: "string";
|
|
639
|
+
};
|
|
640
|
+
readonly timezone: {
|
|
641
|
+
readonly type: readonly ["string", "null"];
|
|
642
|
+
};
|
|
643
|
+
readonly source: {
|
|
644
|
+
readonly type: "string";
|
|
645
|
+
};
|
|
646
|
+
readonly event: {
|
|
647
|
+
readonly type: "string";
|
|
648
|
+
};
|
|
649
|
+
readonly filters: {
|
|
650
|
+
readonly type: "array";
|
|
651
|
+
readonly items: {
|
|
652
|
+
readonly type: "object";
|
|
653
|
+
readonly additionalProperties: false;
|
|
654
|
+
readonly properties: {
|
|
655
|
+
readonly path: {
|
|
656
|
+
readonly type: "string";
|
|
657
|
+
};
|
|
658
|
+
readonly op: {
|
|
659
|
+
readonly enum: readonly ["eq", "neq", "exists", "not_exists"];
|
|
660
|
+
};
|
|
661
|
+
readonly value: {};
|
|
662
|
+
};
|
|
663
|
+
readonly required: readonly ["path", "op"];
|
|
664
|
+
};
|
|
665
|
+
};
|
|
666
|
+
readonly status: {
|
|
667
|
+
readonly enum: readonly ["active", "disabled"];
|
|
668
|
+
};
|
|
669
|
+
};
|
|
670
|
+
readonly required: readonly ["type"];
|
|
671
|
+
};
|
|
672
|
+
export declare const workflowManifestSchema: {
|
|
673
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
674
|
+
readonly title: "OXYGEN Workflow Manifest";
|
|
675
|
+
readonly type: "object";
|
|
676
|
+
readonly additionalProperties: true;
|
|
677
|
+
readonly required: readonly ["manifest_version", "workflow", "steps", "source_hash", "compiler_version"];
|
|
678
|
+
};
|
|
679
|
+
export {};
|
|
680
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|