@cargo-ai/cdk 1.0.2 → 1.0.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 +65 -36
- package/build/src/cli/auth.d.ts +9 -0
- package/build/src/cli/auth.d.ts.map +1 -0
- package/build/src/cli/auth.js +100 -0
- package/build/src/cli/bin.d.ts +3 -0
- package/build/src/cli/bin.d.ts.map +1 -0
- package/build/src/cli/bin.js +9 -0
- package/build/src/cli/commands/deploy.d.ts +4 -0
- package/build/src/cli/commands/deploy.d.ts.map +1 -0
- package/build/src/cli/commands/deploy.js +531 -0
- package/build/src/cli/commands/index.d.ts +4 -0
- package/build/src/cli/commands/index.d.ts.map +1 -0
- package/build/src/cli/commands/index.js +11 -0
- package/build/src/cli/commands/init.d.ts +3 -0
- package/build/src/cli/commands/init.d.ts.map +1 -0
- package/build/src/cli/commands/init.js +76 -0
- package/build/src/cli/commands/inputTypes.d.ts +24 -0
- package/build/src/cli/commands/inputTypes.d.ts.map +1 -0
- package/build/src/cli/commands/inputTypes.js +273 -0
- package/build/src/cli/commands/templates.d.ts +6 -0
- package/build/src/cli/commands/templates.d.ts.map +1 -0
- package/build/src/cli/commands/templates.js +33 -0
- package/build/src/cli/commands/types.d.ts +4 -0
- package/build/src/cli/commands/types.d.ts.map +1 -0
- package/build/src/cli/commands/types.js +385 -0
- package/build/src/cli/deployCommands.d.ts +4 -0
- package/build/src/cli/deployCommands.d.ts.map +1 -0
- package/build/src/cli/deployCommands.js +531 -0
- package/build/src/cli/index.d.ts +4 -0
- package/build/src/cli/index.d.ts.map +1 -0
- package/build/src/cli/index.js +20 -0
- package/build/src/cli/initCommand.d.ts +3 -0
- package/build/src/cli/initCommand.d.ts.map +1 -0
- package/build/src/cli/initCommand.js +76 -0
- package/build/src/cli/inputTypes.d.ts +24 -0
- package/build/src/cli/inputTypes.d.ts.map +1 -0
- package/build/src/cli/inputTypes.js +273 -0
- package/build/src/cli/io.d.ts +38 -0
- package/build/src/cli/io.d.ts.map +1 -0
- package/build/src/cli/io.js +226 -0
- package/build/src/cli/templates.d.ts +6 -0
- package/build/src/cli/templates.d.ts.map +1 -0
- package/build/src/cli/templates.js +34 -0
- package/build/src/cli/typesCommand.d.ts +4 -0
- package/build/src/cli/typesCommand.d.ts.map +1 -0
- package/build/src/cli/typesCommand.js +385 -0
- package/build/src/cli/version.d.ts +2 -0
- package/build/src/cli/version.d.ts.map +1 -0
- package/build/src/cli/version.js +25 -0
- package/build/src/core.d.ts +1 -1
- package/build/src/core.d.ts.map +1 -1
- package/build/src/deploy/apply.d.ts +3 -0
- package/build/src/deploy/apply.d.ts.map +1 -1
- package/build/src/deploy/apply.js +2 -0
- package/build/src/deploy/destroy.d.ts.map +1 -1
- package/build/src/deploy/destroy.js +6 -0
- package/build/src/deploy/executors.live.d.ts.map +1 -1
- package/build/src/deploy/executors.live.js +49 -3
- package/build/src/deploy/readers.live.d.ts.map +1 -1
- package/build/src/deploy/readers.live.js +16 -0
- package/build/src/index.d.ts +4 -2
- package/build/src/index.d.ts.map +1 -1
- package/build/src/index.js +2 -1
- package/build/src/refs.d.ts +4 -1
- package/build/src/refs.d.ts.map +1 -1
- package/build/src/refs.js +5 -0
- package/build/src/resources/bundle.d.ts +4 -2
- package/build/src/resources/bundle.d.ts.map +1 -1
- package/build/src/resources/bundle.js +11 -2
- package/build/src/resources/connector.d.ts.map +1 -1
- package/build/src/resources/connector.js +3 -2
- package/build/src/resources/segment.d.ts +24 -0
- package/build/src/resources/segment.d.ts.map +1 -0
- package/build/src/resources/segment.js +34 -0
- package/build/src/resources/worker.d.ts.map +1 -1
- package/build/src/resources/worker.js +14 -7
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -4
- package/templates/blank/package.json +3 -3
- package/templates/full/README.md +21 -20
- package/templates/full/apps/dashboard/index.html +1 -1
- package/templates/full/apps/dashboard/package.json +18 -3
- package/templates/full/apps/dashboard/src/App.tsx +57 -0
- package/templates/full/apps/dashboard/src/index.css +4 -0
- package/templates/full/apps/dashboard/src/main.tsx +13 -7
- package/templates/full/apps/dashboard/tailwind.config.ts +13 -0
- package/templates/full/apps/dashboard/tsconfig.json +10 -3
- package/templates/full/apps/dashboard/vite.config.ts +22 -0
- package/templates/full/package.json +3 -3
- package/templates/full/workers/webhook/package.json +12 -1
- package/templates/full/workers/webhook/src/index.ts +53 -0
- package/templates/full/workers/webhook/tsconfig.json +14 -0
- package/templates/full/workers/webhook.ts +9 -7
- package/templates/full/apps/dashboard/package-lock.json +0 -1080
- package/templates/full/workers/webhook/index.js +0 -12
- package/templates/full/workers/webhook/package-lock.json +0 -12
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
// TypeScript input-type printers for `cargo-ai workflow sync` codegen.
|
|
2
|
+
//
|
|
3
|
+
// Three sources of truth, three printers:
|
|
4
|
+
// - Integration actions expose their config as JSON Schema on
|
|
5
|
+
// `connection.integration.list` (`action.config.schema`).
|
|
6
|
+
// - Workspace tools expose their input as `formFields` on the tool
|
|
7
|
+
// workflow's deployed release (`orchestration.release.getDeployed`).
|
|
8
|
+
// - Agent nodes accept a single global shape (`{ prompt, output? }`) —
|
|
9
|
+
// the engine validates every agent node against `AiUtils.agentConfig`.
|
|
10
|
+
//
|
|
11
|
+
// All printers run in "input mode": each top-level property is widened to
|
|
12
|
+
// `Ref<T> | T` so callers can pass either a builder Ref or a literal.
|
|
13
|
+
// Anything unrecognized falls back to `unknown` — codegen must never abort
|
|
14
|
+
// on a schema edge case.
|
|
15
|
+
//
|
|
16
|
+
// Mirrors `packages/workflow-sdk/scripts/lib/jsonSchemaToTs.ts` (which is a
|
|
17
|
+
// build-time-only script the CLI can't import).
|
|
18
|
+
/**
|
|
19
|
+
* Fixed input shape of every agent node. Matches the SDK's `AgentInput`
|
|
20
|
+
* type and the engine's `AiUtils.agentConfig` schema.
|
|
21
|
+
*/
|
|
22
|
+
export const AGENT_INPUT_TYPE_SRC = `{ prompt: Ref<string> | string; ` +
|
|
23
|
+
`output?: { type: "default" | "text" | "jsonSchema"; jsonSchema?: Record<string, unknown> } }`;
|
|
24
|
+
/**
|
|
25
|
+
* Print an integration action's JSON Schema config as a TS input type.
|
|
26
|
+
* Returns `"Record<string, unknown>"` when the schema is missing or not an
|
|
27
|
+
* object schema we can render.
|
|
28
|
+
*/
|
|
29
|
+
export function printJsonSchemaInput(schema) {
|
|
30
|
+
if (schema === null || typeof schema !== "object") {
|
|
31
|
+
return "Record<string, unknown>";
|
|
32
|
+
}
|
|
33
|
+
const printed = printSchema(schema, true, false);
|
|
34
|
+
return printed === "unknown" ? "Record<string, unknown>" : printed;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Like {@link printJsonSchemaInput} but WITHOUT the top-level `Ref<T> | T`
|
|
38
|
+
* widening — for CDK connector/model config types, which are plain data (no
|
|
39
|
+
* workflow builder Refs). Used by `cargo-ai cdk types`.
|
|
40
|
+
*/
|
|
41
|
+
export function printJsonSchemaType(schema) {
|
|
42
|
+
if (schema === null || typeof schema !== "object") {
|
|
43
|
+
return "Record<string, unknown>";
|
|
44
|
+
}
|
|
45
|
+
// encRef=true: print `EncryptionRef` at encryption-typed fields so only those
|
|
46
|
+
// accept a `secret()`.
|
|
47
|
+
const printed = printSchema(schema, false, true);
|
|
48
|
+
return printed === "unknown" ? "Record<string, unknown>" : printed;
|
|
49
|
+
}
|
|
50
|
+
// The platform's shared `encryption` schema definition: an object with a `type`
|
|
51
|
+
// const/enum of "encryption" plus `isEncrypted` and `value`. In CDK config types
|
|
52
|
+
// these positions become `EncryptionRef` (see printObject).
|
|
53
|
+
function isEncryptionSchema(schema) {
|
|
54
|
+
const props = schema.properties;
|
|
55
|
+
if (props === undefined)
|
|
56
|
+
return false;
|
|
57
|
+
const typeProp = props["type"];
|
|
58
|
+
if (typeProp === undefined)
|
|
59
|
+
return false;
|
|
60
|
+
const isEnc = typeProp.const === "encryption" ||
|
|
61
|
+
(Array.isArray(typeProp.enum) &&
|
|
62
|
+
typeProp.enum.length === 1 &&
|
|
63
|
+
typeProp.enum[0] === "encryption");
|
|
64
|
+
return (isEnc && props["isEncrypted"] !== undefined && props["value"] !== undefined);
|
|
65
|
+
}
|
|
66
|
+
function printSchema(schema, topLevel, encRef) {
|
|
67
|
+
if (Array.isArray(schema.type)) {
|
|
68
|
+
return uniqueUnion(schema.type.map((t) => printPrimitive(t, schema, false, encRef)));
|
|
69
|
+
}
|
|
70
|
+
if (schema.enum !== undefined && schema.enum.length > 0) {
|
|
71
|
+
return schema.enum.map((v) => JSON.stringify(v)).join(" | ");
|
|
72
|
+
}
|
|
73
|
+
if (schema.const !== undefined) {
|
|
74
|
+
return JSON.stringify(schema.const);
|
|
75
|
+
}
|
|
76
|
+
if (schema.oneOf !== undefined && schema.oneOf.length > 0) {
|
|
77
|
+
return uniqueUnion(schema.oneOf.map((s) => printSchema(s, false, encRef)));
|
|
78
|
+
}
|
|
79
|
+
if (schema.anyOf !== undefined && schema.anyOf.length > 0) {
|
|
80
|
+
return uniqueUnion(schema.anyOf.map((s) => printSchema(s, false, encRef)));
|
|
81
|
+
}
|
|
82
|
+
if (schema.allOf !== undefined && schema.allOf.length > 0) {
|
|
83
|
+
// Connectors model "pick an auth method, then its fields" as an object with
|
|
84
|
+
// a discriminant property plus `allOf: [{ if, then, else }]`. Expand that to
|
|
85
|
+
// a discriminated union (e.g. HubSpot → `{ method: "privateApp"; … } | { …
|
|
86
|
+
// "oauth"; … }`); otherwise fall back to rendering the head.
|
|
87
|
+
const conditional = printConditionalObject(schema, topLevel, encRef);
|
|
88
|
+
if (conditional !== undefined)
|
|
89
|
+
return conditional;
|
|
90
|
+
return printSchema(schema.allOf[0], topLevel, encRef);
|
|
91
|
+
}
|
|
92
|
+
if (typeof schema.type !== "string")
|
|
93
|
+
return "unknown";
|
|
94
|
+
return printPrimitive(schema.type, schema, topLevel, encRef);
|
|
95
|
+
}
|
|
96
|
+
function printPrimitive(type, schema, topLevel, encRef) {
|
|
97
|
+
switch (type) {
|
|
98
|
+
case "string":
|
|
99
|
+
return "string";
|
|
100
|
+
case "number":
|
|
101
|
+
case "integer":
|
|
102
|
+
return "number";
|
|
103
|
+
case "boolean":
|
|
104
|
+
return "boolean";
|
|
105
|
+
case "null":
|
|
106
|
+
return "null";
|
|
107
|
+
case "array":
|
|
108
|
+
return printArray(schema, encRef);
|
|
109
|
+
case "object":
|
|
110
|
+
return printObject(schema, topLevel, encRef);
|
|
111
|
+
default:
|
|
112
|
+
return "unknown";
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
// Expand the connector "discriminant + allOf[{ if, then, else }]" pattern into a
|
|
116
|
+
// discriminated union. Returns undefined when the schema isn't that shape (the
|
|
117
|
+
// caller then falls back to rendering the allOf head).
|
|
118
|
+
function printConditionalObject(schema, topLevel, encRef) {
|
|
119
|
+
const props = schema.properties;
|
|
120
|
+
if (props === undefined || schema.allOf === undefined)
|
|
121
|
+
return undefined;
|
|
122
|
+
const block = schema.allOf.find((a) => a.if !== undefined);
|
|
123
|
+
if (block === undefined || block.if?.properties === undefined)
|
|
124
|
+
return undefined;
|
|
125
|
+
// The discriminant: the single property the `if` tests, and its `const` value.
|
|
126
|
+
const ifEntries = Object.entries(block.if.properties);
|
|
127
|
+
if (ifEntries.length !== 1)
|
|
128
|
+
return undefined;
|
|
129
|
+
const [discKey, discCond] = ifEntries[0];
|
|
130
|
+
const thenValue = discCond.const;
|
|
131
|
+
if (thenValue === undefined)
|
|
132
|
+
return undefined;
|
|
133
|
+
// All the discriminant's allowed values, from its own oneOf/enum consts.
|
|
134
|
+
const discSchema = props[discKey];
|
|
135
|
+
const values = discriminantValues(discSchema);
|
|
136
|
+
if (values.length === 0)
|
|
137
|
+
return undefined;
|
|
138
|
+
const baseRequired = Array.isArray(schema.required) ? schema.required : [];
|
|
139
|
+
const branches = values.map((value) => {
|
|
140
|
+
const isThen = value === thenValue;
|
|
141
|
+
const extra = isThen ? block.then : block.else;
|
|
142
|
+
const branchProps = {
|
|
143
|
+
...props,
|
|
144
|
+
[discKey]: { const: value },
|
|
145
|
+
};
|
|
146
|
+
if (extra?.properties !== undefined) {
|
|
147
|
+
Object.assign(branchProps, extra.properties);
|
|
148
|
+
}
|
|
149
|
+
const required = new Set(baseRequired);
|
|
150
|
+
if (Array.isArray(extra?.required)) {
|
|
151
|
+
for (const r of extra.required)
|
|
152
|
+
required.add(r);
|
|
153
|
+
}
|
|
154
|
+
return printSchema({ type: "object", properties: branchProps, required: [...required] }, topLevel, encRef);
|
|
155
|
+
});
|
|
156
|
+
return uniqueUnion(branches);
|
|
157
|
+
}
|
|
158
|
+
function discriminantValues(schema) {
|
|
159
|
+
if (schema === undefined)
|
|
160
|
+
return [];
|
|
161
|
+
if (schema.const !== undefined)
|
|
162
|
+
return [schema.const];
|
|
163
|
+
if (Array.isArray(schema.enum))
|
|
164
|
+
return schema.enum;
|
|
165
|
+
const variants = schema.oneOf ?? schema.anyOf;
|
|
166
|
+
if (Array.isArray(variants)) {
|
|
167
|
+
const consts = variants.map((v) => v.const).filter((v) => v !== undefined);
|
|
168
|
+
if (consts.length > 0)
|
|
169
|
+
return consts;
|
|
170
|
+
}
|
|
171
|
+
return [];
|
|
172
|
+
}
|
|
173
|
+
function printArray(schema, encRef) {
|
|
174
|
+
if (schema.items === undefined)
|
|
175
|
+
return "unknown[]";
|
|
176
|
+
if (Array.isArray(schema.items)) {
|
|
177
|
+
return `[${schema.items.map((s) => printSchema(s, false, encRef)).join(", ")}]`;
|
|
178
|
+
}
|
|
179
|
+
return `Array<${printSchema(schema.items, false, encRef)}>`;
|
|
180
|
+
}
|
|
181
|
+
function printObject(schema, topLevel, encRef) {
|
|
182
|
+
// An encryption-typed field becomes `EncryptionRef` (which accepts `secret()`)
|
|
183
|
+
// — but only in CDK config mode; workflow input types print it structurally.
|
|
184
|
+
if (encRef && isEncryptionSchema(schema))
|
|
185
|
+
return "EncryptionRef";
|
|
186
|
+
const props = schema.properties;
|
|
187
|
+
if (props === undefined) {
|
|
188
|
+
if (typeof schema.additionalProperties === "object" &&
|
|
189
|
+
schema.additionalProperties !== null) {
|
|
190
|
+
return `Record<string, ${printSchema(schema.additionalProperties, false, encRef)}>`;
|
|
191
|
+
}
|
|
192
|
+
return "Record<string, unknown>";
|
|
193
|
+
}
|
|
194
|
+
const required = new Set(Array.isArray(schema.required) ? schema.required : []);
|
|
195
|
+
const fields = [];
|
|
196
|
+
for (const [key, child] of Object.entries(props)) {
|
|
197
|
+
const inner = printSchema(child, false, encRef);
|
|
198
|
+
// Only top-level properties are Ref-widened; nested values are plain.
|
|
199
|
+
const value = topLevel ? `Ref<${inner}> | ${inner}` : inner;
|
|
200
|
+
const opt = required.has(key) ? "" : "?";
|
|
201
|
+
fields.push(`${tsKey(key)}${opt}: ${value}`);
|
|
202
|
+
}
|
|
203
|
+
if (fields.length === 0)
|
|
204
|
+
return "Record<string, never>";
|
|
205
|
+
return `{ ${fields.join("; ")} }`;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* Print a tool release's `formFields` as a TS input type. Returns
|
|
209
|
+
* `undefined` when the fields can't be interpreted (caller falls back to
|
|
210
|
+
* `Record<string, unknown>`).
|
|
211
|
+
*/
|
|
212
|
+
export function printFormFieldsInput(formFields) {
|
|
213
|
+
if (!Array.isArray(formFields))
|
|
214
|
+
return undefined;
|
|
215
|
+
const fields = formFields.filter(isFormFieldLike);
|
|
216
|
+
if (fields.length === 0)
|
|
217
|
+
return "Record<string, never>";
|
|
218
|
+
const rendered = fields.map((f) => {
|
|
219
|
+
const inner = formFieldToTs(f);
|
|
220
|
+
const opt = f.isRequired === true ? "" : "?";
|
|
221
|
+
return `${tsKey(f.slug)}${opt}: Ref<${inner}> | ${inner}`;
|
|
222
|
+
});
|
|
223
|
+
return `{ ${rendered.join("; ")} }`;
|
|
224
|
+
}
|
|
225
|
+
function isFormFieldLike(value) {
|
|
226
|
+
if (value === null || typeof value !== "object")
|
|
227
|
+
return false;
|
|
228
|
+
const v = value;
|
|
229
|
+
return typeof v["slug"] === "string" && typeof v["kind"] === "string";
|
|
230
|
+
}
|
|
231
|
+
function formFieldToTs(field) {
|
|
232
|
+
switch (field.kind) {
|
|
233
|
+
case "string":
|
|
234
|
+
case "date":
|
|
235
|
+
return "string";
|
|
236
|
+
case "number":
|
|
237
|
+
return "number";
|
|
238
|
+
case "boolean":
|
|
239
|
+
return "boolean";
|
|
240
|
+
case "enum": {
|
|
241
|
+
const values = Array.isArray(field.enum)
|
|
242
|
+
? field.enum.filter((v) => typeof v === "string")
|
|
243
|
+
: [];
|
|
244
|
+
if (values.length === 0)
|
|
245
|
+
return "string";
|
|
246
|
+
return values.map((v) => JSON.stringify(v)).join(" | ");
|
|
247
|
+
}
|
|
248
|
+
case "array": {
|
|
249
|
+
const nested = Array.isArray(field.fields)
|
|
250
|
+
? field.fields.filter(isFormFieldLike)
|
|
251
|
+
: [];
|
|
252
|
+
if (nested.length === 0)
|
|
253
|
+
return "unknown[]";
|
|
254
|
+
const inner = nested
|
|
255
|
+
.map((f) => {
|
|
256
|
+
const opt = f.isRequired === true ? "" : "?";
|
|
257
|
+
return `${tsKey(f.slug)}${opt}: ${formFieldToTs(f)}`;
|
|
258
|
+
})
|
|
259
|
+
.join("; ");
|
|
260
|
+
return `Array<{ ${inner} }>`;
|
|
261
|
+
}
|
|
262
|
+
case "any":
|
|
263
|
+
default:
|
|
264
|
+
return "unknown";
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
function uniqueUnion(parts) {
|
|
268
|
+
const dedup = Array.from(new Set(parts));
|
|
269
|
+
return dedup.length === 1 ? dedup[0] : dedup.join(" | ");
|
|
270
|
+
}
|
|
271
|
+
function tsKey(key) {
|
|
272
|
+
return /^[A-Za-z_$][A-Za-z0-9_$]*$/.test(key) ? key : JSON.stringify(key);
|
|
273
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/templates.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,aAAa,SAAgB,MAAM,KAAG,QAAQ,MAAM,EAAE,CAUlE,CAAC;AAEF,eAAO,MAAM,aAAa,QACnB,MAAM,QACL,MAAM,UACJ;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAA;CAAE,EAAE,KACrC,QAAQ,IAAI,CAmBd,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// Template scaffolding for `cargo-cdk init` — list the templates under
|
|
2
|
+
// `@cargo-ai/cdk/templates` and copy one into a target dir, substituting
|
|
3
|
+
// `__APP_NAME__`.
|
|
4
|
+
import { promises as fs } from "node:fs";
|
|
5
|
+
import path from "node:path";
|
|
6
|
+
export const listTemplates = async (root) => {
|
|
7
|
+
try {
|
|
8
|
+
const entries = await fs.readdir(root, { withFileTypes: true });
|
|
9
|
+
return entries
|
|
10
|
+
.filter((entry) => entry.isDirectory() === true)
|
|
11
|
+
.map((entry) => entry.name)
|
|
12
|
+
.filter((name) => name.startsWith("_") === false);
|
|
13
|
+
}
|
|
14
|
+
catch {
|
|
15
|
+
return [];
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export const copyDirectory = async (src, dest, rename) => {
|
|
19
|
+
const entries = await fs.readdir(src, { withFileTypes: true });
|
|
20
|
+
await fs.mkdir(dest, { recursive: true });
|
|
21
|
+
for (const entry of entries) {
|
|
22
|
+
const srcPath = path.join(src, entry.name);
|
|
23
|
+
const destPath = path.join(dest, entry.name);
|
|
24
|
+
if (entry.isDirectory() === true) {
|
|
25
|
+
await copyDirectory(srcPath, destPath, rename);
|
|
26
|
+
}
|
|
27
|
+
else if (entry.isFile() === true) {
|
|
28
|
+
const raw = await fs.readFile(srcPath, "utf-8");
|
|
29
|
+
const replaced = rename.reduce((current, { from, to }) => current.split(from).join(to), raw);
|
|
30
|
+
await fs.writeFile(destPath, replaced, "utf-8");
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/types.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA2FzC,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,GAAG,GAAG,IAAI,CA8D7E"}
|