attio 0.0.1-experimental.20240624 → 0.0.1-experimental.20240625
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/lib/commands/index.d.ts +1 -4
- package/lib/commands/index.d.ts.map +1 -1
- package/lib/commands/index.js +19 -30
- package/lib/commands/index.js.map +1 -1
- package/lib/components/Disclaimer.js +3 -3
- package/lib/components/Disclaimer.js.map +1 -1
- package/lib/components/InitialInstructions.d.ts.map +1 -1
- package/lib/components/InitialInstructions.js +20 -17
- package/lib/components/InitialInstructions.js.map +1 -1
- package/lib/env.d.ts +5 -0
- package/lib/env.d.ts.map +1 -0
- package/lib/env.js +6 -0
- package/lib/env.js.map +1 -0
- package/lib/machines/scaffold-machine.d.ts +91 -147
- package/lib/machines/scaffold-machine.d.ts.map +1 -1
- package/lib/machines/scaffold-machine.js +131 -152
- package/lib/machines/scaffold-machine.js.map +1 -1
- package/lib/templates/javascript/package.json +3 -3
- package/lib/templates/typescript/package.json +4 -4
- package/lib/util/slugify-extension.d.ts +2 -0
- package/lib/util/slugify-extension.d.ts.map +1 -0
- package/lib/util/slugify-extension.js +15 -0
- package/lib/util/slugify-extension.js.map +1 -0
- package/lib/util/upload-bundle.d.ts +1 -2
- package/lib/util/upload-bundle.d.ts.map +1 -1
- package/lib/util/upload-bundle.js +25 -12
- package/lib/util/upload-bundle.js.map +1 -1
- package/lib/util/validate-slug.d.ts +3 -0
- package/lib/util/validate-slug.d.ts.map +1 -0
- package/lib/util/validate-slug.js +14 -0
- package/lib/util/validate-slug.js.map +1 -0
- package/package.json +3 -3
- package/lib/util/make-extension-name.d.ts +0 -3
- package/lib/util/make-extension-name.d.ts.map +0 -1
- package/lib/util/make-extension-name.js +0 -14
- package/lib/util/make-extension-name.js.map +0 -1
- package/lib/util/validate-project-name.d.ts +0 -3
- package/lib/util/validate-project-name.d.ts.map +0 -1
- package/lib/util/validate-project-name.js +0 -28
- package/lib/util/validate-project-name.js.map +0 -1
|
@@ -34,12 +34,11 @@ interface Context {
|
|
|
34
34
|
error?: string;
|
|
35
35
|
configError?: InitialConfigError;
|
|
36
36
|
language?: Language;
|
|
37
|
-
name: string;
|
|
38
37
|
token: string;
|
|
39
38
|
developerSlug: string;
|
|
40
|
-
|
|
39
|
+
title: string;
|
|
41
40
|
integrationId: string;
|
|
42
|
-
|
|
41
|
+
slug: string;
|
|
43
42
|
outlets?: Array<Outlet>;
|
|
44
43
|
packageManager?: PackageManager;
|
|
45
44
|
}
|
|
@@ -63,13 +62,14 @@ type Event = {
|
|
|
63
62
|
type: "Integration Created";
|
|
64
63
|
integrationId: string;
|
|
65
64
|
} | {
|
|
66
|
-
type: "Invalid
|
|
65
|
+
type: "Invalid Slug";
|
|
67
66
|
error: string;
|
|
68
67
|
} | {
|
|
69
|
-
type: "Invalid
|
|
68
|
+
type: "Invalid Title";
|
|
70
69
|
error: string;
|
|
71
70
|
} | {
|
|
72
|
-
type: "
|
|
71
|
+
type: "Invalid Slug";
|
|
72
|
+
error: string;
|
|
73
73
|
} | {
|
|
74
74
|
type: "No Config";
|
|
75
75
|
configError: InitialConfigError;
|
|
@@ -81,18 +81,16 @@ type Event = {
|
|
|
81
81
|
} | {
|
|
82
82
|
type: "Success";
|
|
83
83
|
} | {
|
|
84
|
-
type: "Update
|
|
85
|
-
|
|
84
|
+
type: "Update Slug";
|
|
85
|
+
slug: string;
|
|
86
|
+
} | {
|
|
87
|
+
type: "Update Title";
|
|
88
|
+
title: string;
|
|
86
89
|
} | {
|
|
87
90
|
type: "Update Integration Title";
|
|
88
91
|
integrationTitle: string;
|
|
89
92
|
} | {
|
|
90
|
-
type: "
|
|
91
|
-
integrationSlug: string;
|
|
92
|
-
} | {
|
|
93
|
-
type: "Valid Integration Slug";
|
|
94
|
-
} | {
|
|
95
|
-
type: "Valid Name";
|
|
93
|
+
type: "Valid Slug";
|
|
96
94
|
};
|
|
97
95
|
export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
98
96
|
type: "Choose Language";
|
|
@@ -114,13 +112,14 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
114
112
|
type: "Integration Created";
|
|
115
113
|
integrationId: string;
|
|
116
114
|
} | {
|
|
117
|
-
type: "Invalid
|
|
115
|
+
type: "Invalid Slug";
|
|
118
116
|
error: string;
|
|
119
117
|
} | {
|
|
120
|
-
type: "Invalid
|
|
118
|
+
type: "Invalid Title";
|
|
121
119
|
error: string;
|
|
122
120
|
} | {
|
|
123
|
-
type: "
|
|
121
|
+
type: "Invalid Slug";
|
|
122
|
+
error: string;
|
|
124
123
|
} | {
|
|
125
124
|
type: "No Config";
|
|
126
125
|
configError: InitialConfigError;
|
|
@@ -132,30 +131,26 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
132
131
|
} | {
|
|
133
132
|
type: "Success";
|
|
134
133
|
} | {
|
|
135
|
-
type: "Update
|
|
136
|
-
|
|
134
|
+
type: "Update Slug";
|
|
135
|
+
slug: string;
|
|
136
|
+
} | {
|
|
137
|
+
type: "Update Title";
|
|
138
|
+
title: string;
|
|
137
139
|
} | {
|
|
138
140
|
type: "Update Integration Title";
|
|
139
141
|
integrationTitle: string;
|
|
140
142
|
} | {
|
|
141
|
-
type: "
|
|
142
|
-
integrationSlug: string;
|
|
143
|
-
} | {
|
|
144
|
-
type: "Valid Integration Slug";
|
|
145
|
-
} | {
|
|
146
|
-
type: "Valid Name";
|
|
143
|
+
type: "Valid Slug";
|
|
147
144
|
}, {
|
|
148
|
-
[x: string]: import("xstate").ActorRef<import("xstate").CallbackSnapshot<import("xstate").NonReducibleUnknown>, import("xstate").EventObject, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "
|
|
145
|
+
[x: string]: import("xstate").ActorRef<import("xstate").CallbackSnapshot<import("xstate").NonReducibleUnknown>, import("xstate").EventObject, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "slug" | "packageManager">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "title" | "slug" | "language" | "packageManager" | "integrationId">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "title" | "slug" | "token" | "developerSlug">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<{
|
|
149
146
|
token: string;
|
|
147
|
+
slug: string;
|
|
150
148
|
developerSlug: string;
|
|
151
|
-
integrationSlug: string;
|
|
152
|
-
}>, any, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<{
|
|
153
|
-
name: string;
|
|
154
149
|
}>, Event, import("xstate").EventObject> | undefined;
|
|
155
150
|
}, import("xstate").Values<{
|
|
156
151
|
build: {
|
|
157
152
|
src: "build";
|
|
158
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "
|
|
153
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "slug" | "packageManager">>>;
|
|
159
154
|
id: string | undefined;
|
|
160
155
|
};
|
|
161
156
|
loadConfig: {
|
|
@@ -165,12 +160,12 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
165
160
|
};
|
|
166
161
|
createProject: {
|
|
167
162
|
src: "createProject";
|
|
168
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "
|
|
163
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "title" | "slug" | "language" | "packageManager" | "integrationId">>>;
|
|
169
164
|
id: string | undefined;
|
|
170
165
|
};
|
|
171
166
|
createIntegration: {
|
|
172
167
|
src: "createIntegration";
|
|
173
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "
|
|
168
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "title" | "slug" | "token" | "developerSlug">>>;
|
|
174
169
|
id: string | undefined;
|
|
175
170
|
};
|
|
176
171
|
detectPackageManagers: {
|
|
@@ -178,19 +173,12 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
178
173
|
logic: import("xstate").CallbackActorLogic<import("xstate").EventObject, import("xstate").NonReducibleUnknown>;
|
|
179
174
|
id: string | undefined;
|
|
180
175
|
};
|
|
181
|
-
|
|
182
|
-
src: "
|
|
183
|
-
logic: import("xstate").CallbackActorLogic<
|
|
176
|
+
validateSlug: {
|
|
177
|
+
src: "validateSlug";
|
|
178
|
+
logic: import("xstate").CallbackActorLogic<Event, {
|
|
184
179
|
token: string;
|
|
180
|
+
slug: string;
|
|
185
181
|
developerSlug: string;
|
|
186
|
-
integrationSlug: string;
|
|
187
|
-
}>;
|
|
188
|
-
id: string | undefined;
|
|
189
|
-
};
|
|
190
|
-
validateName: {
|
|
191
|
-
src: "validateName";
|
|
192
|
-
logic: import("xstate").CallbackActorLogic<Event, {
|
|
193
|
-
name: string;
|
|
194
182
|
}>;
|
|
195
183
|
id: string | undefined;
|
|
196
184
|
};
|
|
@@ -212,6 +200,12 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
212
200
|
developerSlug: string;
|
|
213
201
|
};
|
|
214
202
|
};
|
|
203
|
+
setConfigError: {
|
|
204
|
+
type: "setConfigError";
|
|
205
|
+
params: {
|
|
206
|
+
configError: InitialConfigError;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
215
209
|
setAvailablePackageManagers: {
|
|
216
210
|
type: "setAvailablePackageManagers";
|
|
217
211
|
params: {
|
|
@@ -230,16 +224,10 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
230
224
|
packageManager: PackageManager;
|
|
231
225
|
};
|
|
232
226
|
};
|
|
233
|
-
|
|
234
|
-
type: "
|
|
227
|
+
setTitle: {
|
|
228
|
+
type: "setTitle";
|
|
235
229
|
params: {
|
|
236
|
-
|
|
237
|
-
};
|
|
238
|
-
};
|
|
239
|
-
setIntegrationTitle: {
|
|
240
|
-
type: "setIntegrationTitle";
|
|
241
|
-
params: {
|
|
242
|
-
integrationTitle: string;
|
|
230
|
+
title: string;
|
|
243
231
|
};
|
|
244
232
|
};
|
|
245
233
|
setIntegrationId: {
|
|
@@ -248,10 +236,10 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
248
236
|
integrationId: string;
|
|
249
237
|
};
|
|
250
238
|
};
|
|
251
|
-
|
|
252
|
-
type: "
|
|
239
|
+
setSlug: {
|
|
240
|
+
type: "setSlug";
|
|
253
241
|
params: {
|
|
254
|
-
|
|
242
|
+
slug: string;
|
|
255
243
|
};
|
|
256
244
|
};
|
|
257
245
|
setOutlets: {
|
|
@@ -260,41 +248,23 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
260
248
|
outlets: Array<Outlet>;
|
|
261
249
|
};
|
|
262
250
|
};
|
|
263
|
-
|
|
264
|
-
type: "
|
|
251
|
+
slugifyTitle: {
|
|
252
|
+
type: "slugifyTitle";
|
|
265
253
|
params: {
|
|
266
|
-
|
|
267
|
-
};
|
|
268
|
-
};
|
|
269
|
-
slugifyIntegrationSlug: {
|
|
270
|
-
type: "slugifyIntegrationSlug";
|
|
271
|
-
params: {
|
|
272
|
-
integrationSlug: string;
|
|
273
|
-
};
|
|
274
|
-
};
|
|
275
|
-
slugifyName: {
|
|
276
|
-
type: "slugifyName";
|
|
277
|
-
params: {
|
|
278
|
-
name: string;
|
|
254
|
+
title: string;
|
|
279
255
|
};
|
|
280
256
|
};
|
|
281
257
|
}>, import("xstate").Values<{
|
|
282
|
-
"have
|
|
283
|
-
type: "have
|
|
258
|
+
"have title": {
|
|
259
|
+
type: "have title";
|
|
284
260
|
params: {
|
|
285
|
-
|
|
261
|
+
title: string;
|
|
286
262
|
};
|
|
287
263
|
};
|
|
288
|
-
"have
|
|
289
|
-
type: "have
|
|
264
|
+
"have slug": {
|
|
265
|
+
type: "have slug";
|
|
290
266
|
params: {
|
|
291
|
-
|
|
292
|
-
};
|
|
293
|
-
};
|
|
294
|
-
"have integration slug": {
|
|
295
|
-
type: "have integration slug";
|
|
296
|
-
params: {
|
|
297
|
-
integrationSlug: string;
|
|
267
|
+
slug: string;
|
|
298
268
|
};
|
|
299
269
|
};
|
|
300
270
|
"have language": {
|
|
@@ -316,7 +286,7 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
316
286
|
outlets?: ("tool" | "action")[] | undefined;
|
|
317
287
|
};
|
|
318
288
|
};
|
|
319
|
-
}>, never, "Success" | "Building" | "Error" | "
|
|
289
|
+
}>, never, "Success" | "Building" | "Error" | "Do we need title?" | "Validate Slug From CLI Title" | "Ask for title" | "Validate Slug From Title" | "Ask for language" | "Detecting Package Managers" | "Do we need package manager?" | "Ask for package manager" | "Do we need outlets?" | "Ask for outlets" | "Create Integration" | "Creating Project" | "Do we need language?" | "Validate Slug" | "Ask for slug" | "Load Config" | "Show config instructions", string, Pick<Context, "title" | "language" | "outlets" | "packageManager">, import("xstate").NonReducibleUnknown, import("xstate").EventObject, import("xstate").MetaObject, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, {
|
|
320
290
|
type: "Choose Language";
|
|
321
291
|
language: Language;
|
|
322
292
|
} | {
|
|
@@ -336,13 +306,14 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
336
306
|
type: "Integration Created";
|
|
337
307
|
integrationId: string;
|
|
338
308
|
} | {
|
|
339
|
-
type: "Invalid
|
|
309
|
+
type: "Invalid Slug";
|
|
340
310
|
error: string;
|
|
341
311
|
} | {
|
|
342
|
-
type: "Invalid
|
|
312
|
+
type: "Invalid Title";
|
|
343
313
|
error: string;
|
|
344
314
|
} | {
|
|
345
|
-
type: "
|
|
315
|
+
type: "Invalid Slug";
|
|
316
|
+
error: string;
|
|
346
317
|
} | {
|
|
347
318
|
type: "No Config";
|
|
348
319
|
configError: InitialConfigError;
|
|
@@ -354,22 +325,20 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
354
325
|
} | {
|
|
355
326
|
type: "Success";
|
|
356
327
|
} | {
|
|
357
|
-
type: "Update
|
|
358
|
-
|
|
328
|
+
type: "Update Slug";
|
|
329
|
+
slug: string;
|
|
330
|
+
} | {
|
|
331
|
+
type: "Update Title";
|
|
332
|
+
title: string;
|
|
359
333
|
} | {
|
|
360
334
|
type: "Update Integration Title";
|
|
361
335
|
integrationTitle: string;
|
|
362
336
|
} | {
|
|
363
|
-
type: "
|
|
364
|
-
integrationSlug: string;
|
|
365
|
-
} | {
|
|
366
|
-
type: "Valid Integration Slug";
|
|
367
|
-
} | {
|
|
368
|
-
type: "Valid Name";
|
|
337
|
+
type: "Valid Slug";
|
|
369
338
|
}, import("xstate").Values<{
|
|
370
339
|
build: {
|
|
371
340
|
src: "build";
|
|
372
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "
|
|
341
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "slug" | "packageManager">>>;
|
|
373
342
|
id: string | undefined;
|
|
374
343
|
};
|
|
375
344
|
loadConfig: {
|
|
@@ -379,12 +348,12 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
379
348
|
};
|
|
380
349
|
createProject: {
|
|
381
350
|
src: "createProject";
|
|
382
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "
|
|
351
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "title" | "slug" | "language" | "packageManager" | "integrationId">>>;
|
|
383
352
|
id: string | undefined;
|
|
384
353
|
};
|
|
385
354
|
createIntegration: {
|
|
386
355
|
src: "createIntegration";
|
|
387
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "
|
|
356
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "title" | "slug" | "token" | "developerSlug">>>;
|
|
388
357
|
id: string | undefined;
|
|
389
358
|
};
|
|
390
359
|
detectPackageManagers: {
|
|
@@ -392,19 +361,12 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
392
361
|
logic: import("xstate").CallbackActorLogic<import("xstate").EventObject, import("xstate").NonReducibleUnknown>;
|
|
393
362
|
id: string | undefined;
|
|
394
363
|
};
|
|
395
|
-
|
|
396
|
-
src: "
|
|
397
|
-
logic: import("xstate").CallbackActorLogic<
|
|
364
|
+
validateSlug: {
|
|
365
|
+
src: "validateSlug";
|
|
366
|
+
logic: import("xstate").CallbackActorLogic<Event, {
|
|
398
367
|
token: string;
|
|
368
|
+
slug: string;
|
|
399
369
|
developerSlug: string;
|
|
400
|
-
integrationSlug: string;
|
|
401
|
-
}>;
|
|
402
|
-
id: string | undefined;
|
|
403
|
-
};
|
|
404
|
-
validateName: {
|
|
405
|
-
src: "validateName";
|
|
406
|
-
logic: import("xstate").CallbackActorLogic<Event, {
|
|
407
|
-
name: string;
|
|
408
370
|
}>;
|
|
409
371
|
id: string | undefined;
|
|
410
372
|
};
|
|
@@ -426,6 +388,12 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
426
388
|
developerSlug: string;
|
|
427
389
|
};
|
|
428
390
|
};
|
|
391
|
+
setConfigError: {
|
|
392
|
+
type: "setConfigError";
|
|
393
|
+
params: {
|
|
394
|
+
configError: InitialConfigError;
|
|
395
|
+
};
|
|
396
|
+
};
|
|
429
397
|
setAvailablePackageManagers: {
|
|
430
398
|
type: "setAvailablePackageManagers";
|
|
431
399
|
params: {
|
|
@@ -444,16 +412,10 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
444
412
|
packageManager: PackageManager;
|
|
445
413
|
};
|
|
446
414
|
};
|
|
447
|
-
|
|
448
|
-
type: "
|
|
449
|
-
params: {
|
|
450
|
-
name: string;
|
|
451
|
-
};
|
|
452
|
-
};
|
|
453
|
-
setIntegrationTitle: {
|
|
454
|
-
type: "setIntegrationTitle";
|
|
415
|
+
setTitle: {
|
|
416
|
+
type: "setTitle";
|
|
455
417
|
params: {
|
|
456
|
-
|
|
418
|
+
title: string;
|
|
457
419
|
};
|
|
458
420
|
};
|
|
459
421
|
setIntegrationId: {
|
|
@@ -462,10 +424,10 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
462
424
|
integrationId: string;
|
|
463
425
|
};
|
|
464
426
|
};
|
|
465
|
-
|
|
466
|
-
type: "
|
|
427
|
+
setSlug: {
|
|
428
|
+
type: "setSlug";
|
|
467
429
|
params: {
|
|
468
|
-
|
|
430
|
+
slug: string;
|
|
469
431
|
};
|
|
470
432
|
};
|
|
471
433
|
setOutlets: {
|
|
@@ -474,41 +436,23 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
474
436
|
outlets: Array<Outlet>;
|
|
475
437
|
};
|
|
476
438
|
};
|
|
477
|
-
|
|
478
|
-
type: "
|
|
479
|
-
params: {
|
|
480
|
-
integrationTitle: string;
|
|
481
|
-
};
|
|
482
|
-
};
|
|
483
|
-
slugifyIntegrationSlug: {
|
|
484
|
-
type: "slugifyIntegrationSlug";
|
|
439
|
+
slugifyTitle: {
|
|
440
|
+
type: "slugifyTitle";
|
|
485
441
|
params: {
|
|
486
|
-
|
|
487
|
-
};
|
|
488
|
-
};
|
|
489
|
-
slugifyName: {
|
|
490
|
-
type: "slugifyName";
|
|
491
|
-
params: {
|
|
492
|
-
name: string;
|
|
442
|
+
title: string;
|
|
493
443
|
};
|
|
494
444
|
};
|
|
495
445
|
}>, import("xstate").Values<{
|
|
496
|
-
"have
|
|
497
|
-
type: "have
|
|
498
|
-
params: {
|
|
499
|
-
name: string;
|
|
500
|
-
};
|
|
501
|
-
};
|
|
502
|
-
"have integration title": {
|
|
503
|
-
type: "have integration title";
|
|
446
|
+
"have title": {
|
|
447
|
+
type: "have title";
|
|
504
448
|
params: {
|
|
505
|
-
|
|
449
|
+
title: string;
|
|
506
450
|
};
|
|
507
451
|
};
|
|
508
|
-
"have
|
|
509
|
-
type: "have
|
|
452
|
+
"have slug": {
|
|
453
|
+
type: "have slug";
|
|
510
454
|
params: {
|
|
511
|
-
|
|
455
|
+
slug: string;
|
|
512
456
|
};
|
|
513
457
|
};
|
|
514
458
|
"have language": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scaffold-machine.d.ts","sourceRoot":"","sources":["../../src/machines/scaffold-machine.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"scaffold-machine.d.ts","sourceRoot":"","sources":["../../src/machines/scaffold-machine.ts"],"names":[],"mappings":"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"}
|