attio 0.0.1-experimental.20240614 → 0.0.1-experimental.20240617
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/dev.d.ts.map +1 -1
- package/lib/commands/dev.js +8 -2
- package/lib/commands/dev.js.map +1 -1
- package/lib/commands/index.d.ts +9 -3
- package/lib/commands/index.d.ts.map +1 -1
- package/lib/commands/index.js +41 -14
- package/lib/commands/index.js.map +1 -1
- package/lib/components/InitialInstructions.d.ts.map +1 -1
- package/lib/components/InitialInstructions.js +8 -7
- package/lib/components/InitialInstructions.js.map +1 -1
- package/lib/machines/dev-machine.d.ts +29 -22
- package/lib/machines/dev-machine.d.ts.map +1 -1
- package/lib/machines/dev-machine.js +29 -12
- package/lib/machines/dev-machine.js.map +1 -1
- package/lib/machines/scaffold-machine.d.ts +208 -26
- package/lib/machines/scaffold-machine.d.ts.map +1 -1
- package/lib/machines/scaffold-machine.js +303 -157
- package/lib/machines/scaffold-machine.js.map +1 -1
- package/lib/machines/ts-machine.d.ts.map +1 -1
- package/lib/machines/ts-machine.js +1 -0
- package/lib/machines/ts-machine.js.map +1 -1
- package/lib/templates/javascript/package.json +6 -1
- package/lib/templates/typescript/package.json +6 -1
- package/lib/util/make-extension-name.d.ts +1 -0
- package/lib/util/make-extension-name.d.ts.map +1 -1
- package/lib/util/make-extension-name.js +4 -1
- package/lib/util/make-extension-name.js.map +1 -1
- package/lib/util/upload-bundle.d.ts +64 -10
- package/lib/util/upload-bundle.d.ts.map +1 -1
- package/lib/util/upload-bundle.js +57 -14
- package/lib/util/upload-bundle.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { InitialConfigError } from "../util/upload-bundle.js";
|
|
1
2
|
export declare const languages: readonly [{
|
|
2
3
|
readonly value: "typescript";
|
|
3
4
|
readonly label: "TypeScript – recommended!";
|
|
@@ -31,9 +32,14 @@ export type Outlet = (typeof outlets)[number]["value"];
|
|
|
31
32
|
interface Context {
|
|
32
33
|
availablePackageManagers: Array<PackageManager>;
|
|
33
34
|
error?: string;
|
|
35
|
+
configError?: InitialConfigError;
|
|
34
36
|
language?: Language;
|
|
35
|
-
log: Array<string>;
|
|
36
37
|
name: string;
|
|
38
|
+
token: string;
|
|
39
|
+
developerSlug: string;
|
|
40
|
+
integrationTitle: string;
|
|
41
|
+
integrationId: string;
|
|
42
|
+
integrationSlug: string;
|
|
37
43
|
outlets?: Array<Outlet>;
|
|
38
44
|
packageManager?: PackageManager;
|
|
39
45
|
}
|
|
@@ -46,15 +52,24 @@ type Event = {
|
|
|
46
52
|
} | {
|
|
47
53
|
type: "Choose Package Manager";
|
|
48
54
|
packageManager: PackageManager;
|
|
55
|
+
} | {
|
|
56
|
+
type: "Config Loaded";
|
|
57
|
+
token: string;
|
|
58
|
+
developerSlug: string;
|
|
49
59
|
} | {
|
|
50
60
|
type: "Error";
|
|
51
61
|
error: string;
|
|
62
|
+
} | {
|
|
63
|
+
type: "Integration Created";
|
|
64
|
+
integrationId: string;
|
|
52
65
|
} | {
|
|
53
66
|
type: "Invalid Name";
|
|
54
67
|
error: string;
|
|
55
68
|
} | {
|
|
56
|
-
type: "
|
|
57
|
-
|
|
69
|
+
type: "Invalid Integration Slug";
|
|
70
|
+
} | {
|
|
71
|
+
type: "No Config";
|
|
72
|
+
configError: InitialConfigError;
|
|
58
73
|
} | {
|
|
59
74
|
type: "Set Available Package Managers";
|
|
60
75
|
packageManagers: Array<PackageManager>;
|
|
@@ -65,6 +80,14 @@ type Event = {
|
|
|
65
80
|
} | {
|
|
66
81
|
type: "Update Name";
|
|
67
82
|
name: string;
|
|
83
|
+
} | {
|
|
84
|
+
type: "Update Integration Title";
|
|
85
|
+
integrationTitle: string;
|
|
86
|
+
} | {
|
|
87
|
+
type: "Update Integration Slug";
|
|
88
|
+
integrationSlug: string;
|
|
89
|
+
} | {
|
|
90
|
+
type: "Valid Integration Slug";
|
|
68
91
|
} | {
|
|
69
92
|
type: "Valid Name";
|
|
70
93
|
};
|
|
@@ -77,15 +100,24 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
77
100
|
} | {
|
|
78
101
|
type: "Choose Package Manager";
|
|
79
102
|
packageManager: PackageManager;
|
|
103
|
+
} | {
|
|
104
|
+
type: "Config Loaded";
|
|
105
|
+
token: string;
|
|
106
|
+
developerSlug: string;
|
|
80
107
|
} | {
|
|
81
108
|
type: "Error";
|
|
82
109
|
error: string;
|
|
110
|
+
} | {
|
|
111
|
+
type: "Integration Created";
|
|
112
|
+
integrationId: string;
|
|
83
113
|
} | {
|
|
84
114
|
type: "Invalid Name";
|
|
85
115
|
error: string;
|
|
86
116
|
} | {
|
|
87
|
-
type: "
|
|
88
|
-
|
|
117
|
+
type: "Invalid Integration Slug";
|
|
118
|
+
} | {
|
|
119
|
+
type: "No Config";
|
|
120
|
+
configError: InitialConfigError;
|
|
89
121
|
} | {
|
|
90
122
|
type: "Set Available Package Managers";
|
|
91
123
|
packageManagers: Array<PackageManager>;
|
|
@@ -96,10 +128,22 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
96
128
|
} | {
|
|
97
129
|
type: "Update Name";
|
|
98
130
|
name: string;
|
|
131
|
+
} | {
|
|
132
|
+
type: "Update Integration Title";
|
|
133
|
+
integrationTitle: string;
|
|
134
|
+
} | {
|
|
135
|
+
type: "Update Integration Slug";
|
|
136
|
+
integrationSlug: string;
|
|
137
|
+
} | {
|
|
138
|
+
type: "Valid Integration Slug";
|
|
99
139
|
} | {
|
|
100
140
|
type: "Valid Name";
|
|
101
141
|
}, {
|
|
102
|
-
[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, "name" | "packageManager">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "name" | "language" | "packageManager">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<{
|
|
142
|
+
[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, "name" | "packageManager">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "name" | "language" | "packageManager" | "integrationTitle" | "integrationId" | "integrationSlug">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<Required<Pick<Context, "token" | "integrationTitle" | "developerSlug" | "integrationSlug">>>, Event, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<{
|
|
143
|
+
token: string;
|
|
144
|
+
developerSlug: string;
|
|
145
|
+
integrationSlug: string;
|
|
146
|
+
}>, any, import("xstate").EventObject> | import("xstate").ActorRef<import("xstate").CallbackSnapshot<{
|
|
103
147
|
name: string;
|
|
104
148
|
}>, Event, import("xstate").EventObject> | undefined;
|
|
105
149
|
}, import("xstate").Values<{
|
|
@@ -108,9 +152,19 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
108
152
|
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "name" | "packageManager">>>;
|
|
109
153
|
id: string | undefined;
|
|
110
154
|
};
|
|
155
|
+
loadConfig: {
|
|
156
|
+
src: "loadConfig";
|
|
157
|
+
logic: import("xstate").CallbackActorLogic<import("xstate").EventObject, import("xstate").NonReducibleUnknown>;
|
|
158
|
+
id: string | undefined;
|
|
159
|
+
};
|
|
111
160
|
createProject: {
|
|
112
161
|
src: "createProject";
|
|
113
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "name" | "language" | "packageManager">>>;
|
|
162
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "name" | "language" | "packageManager" | "integrationTitle" | "integrationId" | "integrationSlug">>>;
|
|
163
|
+
id: string | undefined;
|
|
164
|
+
};
|
|
165
|
+
createIntegration: {
|
|
166
|
+
src: "createIntegration";
|
|
167
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "token" | "integrationTitle" | "developerSlug" | "integrationSlug">>>;
|
|
114
168
|
id: string | undefined;
|
|
115
169
|
};
|
|
116
170
|
detectPackageManagers: {
|
|
@@ -118,6 +172,15 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
118
172
|
logic: import("xstate").CallbackActorLogic<import("xstate").EventObject, import("xstate").NonReducibleUnknown>;
|
|
119
173
|
id: string | undefined;
|
|
120
174
|
};
|
|
175
|
+
validateIntegrationSlug: {
|
|
176
|
+
src: "validateIntegrationSlug";
|
|
177
|
+
logic: import("xstate").CallbackActorLogic<any, {
|
|
178
|
+
token: string;
|
|
179
|
+
developerSlug: string;
|
|
180
|
+
integrationSlug: string;
|
|
181
|
+
}>;
|
|
182
|
+
id: string | undefined;
|
|
183
|
+
};
|
|
121
184
|
validateName: {
|
|
122
185
|
src: "validateName";
|
|
123
186
|
logic: import("xstate").CallbackActorLogic<Event, {
|
|
@@ -136,6 +199,13 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
136
199
|
error: string;
|
|
137
200
|
};
|
|
138
201
|
};
|
|
202
|
+
setConfig: {
|
|
203
|
+
type: "setConfig";
|
|
204
|
+
params: {
|
|
205
|
+
token: string;
|
|
206
|
+
developerSlug: string;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
139
209
|
setAvailablePackageManagers: {
|
|
140
210
|
type: "setAvailablePackageManagers";
|
|
141
211
|
params: {
|
|
@@ -160,22 +230,46 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
160
230
|
name: string;
|
|
161
231
|
};
|
|
162
232
|
};
|
|
233
|
+
setIntegrationTitle: {
|
|
234
|
+
type: "setIntegrationTitle";
|
|
235
|
+
params: {
|
|
236
|
+
integrationTitle: string;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
setIntegrationId: {
|
|
240
|
+
type: "setIntegrationId";
|
|
241
|
+
params: {
|
|
242
|
+
integrationId: string;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
setIntegrationSlug: {
|
|
246
|
+
type: "setIntegrationSlug";
|
|
247
|
+
params: {
|
|
248
|
+
integrationSlug: string;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
163
251
|
setOutlets: {
|
|
164
252
|
type: "setOutlets";
|
|
165
253
|
params: {
|
|
166
254
|
outlets: Array<Outlet>;
|
|
167
255
|
};
|
|
168
256
|
};
|
|
169
|
-
|
|
170
|
-
type: "
|
|
257
|
+
slugifyIntegrationTitle: {
|
|
258
|
+
type: "slugifyIntegrationTitle";
|
|
171
259
|
params: {
|
|
172
|
-
|
|
260
|
+
integrationTitle: string;
|
|
173
261
|
};
|
|
174
262
|
};
|
|
175
|
-
|
|
176
|
-
type: "
|
|
263
|
+
slugifyIntegrationSlug: {
|
|
264
|
+
type: "slugifyIntegrationSlug";
|
|
177
265
|
params: {
|
|
178
|
-
|
|
266
|
+
integrationSlug: string;
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
slugifyName: {
|
|
270
|
+
type: "slugifyName";
|
|
271
|
+
params: {
|
|
272
|
+
name: string;
|
|
179
273
|
};
|
|
180
274
|
};
|
|
181
275
|
}>, import("xstate").Values<{
|
|
@@ -185,6 +279,18 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
185
279
|
name: string;
|
|
186
280
|
};
|
|
187
281
|
};
|
|
282
|
+
"have integration title": {
|
|
283
|
+
type: "have integration title";
|
|
284
|
+
params: {
|
|
285
|
+
integrationTitle: string;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
"have integration slug": {
|
|
289
|
+
type: "have integration slug";
|
|
290
|
+
params: {
|
|
291
|
+
integrationSlug: string;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
188
294
|
"have language": {
|
|
189
295
|
type: "have language";
|
|
190
296
|
params: {
|
|
@@ -204,10 +310,7 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
204
310
|
outlets?: ("tool" | "action")[] | undefined;
|
|
205
311
|
};
|
|
206
312
|
};
|
|
207
|
-
}>, never,
|
|
208
|
-
Scaffold?: "Success" | "Building" | "Error" | "Validating Name" | "Do we need language?" | "Ask For Name" | "Do we need name?" | "Ask For Language" | "Detecting Package Managers" | "Do we need package manager?" | "Ask For Package Manager" | "Do we need outlets?" | "Ask For Outlets" | "Creating Project" | undefined;
|
|
209
|
-
Logger?: {} | undefined;
|
|
210
|
-
}>, string, Pick<Context, "name" | "language" | "outlets" | "packageManager">, import("xstate").NonReducibleUnknown, import("xstate").EventObject, import("xstate").MetaObject, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, {
|
|
313
|
+
}>, never, "Success" | "Building" | "Error" | "Validating Name" | "Do we need integration title?" | "Ask For Name" | "Do we need name?" | "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?" | "Ask for Integration Title" | "Ask For Integration Slug" | "Validate Integration Slug" | "Load Config" | "Show config instructions", string, Pick<Context, "name" | "language" | "outlets" | "packageManager" | "integrationTitle">, import("xstate").NonReducibleUnknown, import("xstate").EventObject, import("xstate").MetaObject, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, {
|
|
211
314
|
type: "Choose Language";
|
|
212
315
|
language: Language;
|
|
213
316
|
} | {
|
|
@@ -216,15 +319,24 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
216
319
|
} | {
|
|
217
320
|
type: "Choose Package Manager";
|
|
218
321
|
packageManager: PackageManager;
|
|
322
|
+
} | {
|
|
323
|
+
type: "Config Loaded";
|
|
324
|
+
token: string;
|
|
325
|
+
developerSlug: string;
|
|
219
326
|
} | {
|
|
220
327
|
type: "Error";
|
|
221
328
|
error: string;
|
|
329
|
+
} | {
|
|
330
|
+
type: "Integration Created";
|
|
331
|
+
integrationId: string;
|
|
222
332
|
} | {
|
|
223
333
|
type: "Invalid Name";
|
|
224
334
|
error: string;
|
|
225
335
|
} | {
|
|
226
|
-
type: "
|
|
227
|
-
|
|
336
|
+
type: "Invalid Integration Slug";
|
|
337
|
+
} | {
|
|
338
|
+
type: "No Config";
|
|
339
|
+
configError: InitialConfigError;
|
|
228
340
|
} | {
|
|
229
341
|
type: "Set Available Package Managers";
|
|
230
342
|
packageManagers: Array<PackageManager>;
|
|
@@ -235,6 +347,14 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
235
347
|
} | {
|
|
236
348
|
type: "Update Name";
|
|
237
349
|
name: string;
|
|
350
|
+
} | {
|
|
351
|
+
type: "Update Integration Title";
|
|
352
|
+
integrationTitle: string;
|
|
353
|
+
} | {
|
|
354
|
+
type: "Update Integration Slug";
|
|
355
|
+
integrationSlug: string;
|
|
356
|
+
} | {
|
|
357
|
+
type: "Valid Integration Slug";
|
|
238
358
|
} | {
|
|
239
359
|
type: "Valid Name";
|
|
240
360
|
}, import("xstate").Values<{
|
|
@@ -243,9 +363,19 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
243
363
|
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "name" | "packageManager">>>;
|
|
244
364
|
id: string | undefined;
|
|
245
365
|
};
|
|
366
|
+
loadConfig: {
|
|
367
|
+
src: "loadConfig";
|
|
368
|
+
logic: import("xstate").CallbackActorLogic<import("xstate").EventObject, import("xstate").NonReducibleUnknown>;
|
|
369
|
+
id: string | undefined;
|
|
370
|
+
};
|
|
246
371
|
createProject: {
|
|
247
372
|
src: "createProject";
|
|
248
|
-
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "name" | "language" | "packageManager">>>;
|
|
373
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "name" | "language" | "packageManager" | "integrationTitle" | "integrationId" | "integrationSlug">>>;
|
|
374
|
+
id: string | undefined;
|
|
375
|
+
};
|
|
376
|
+
createIntegration: {
|
|
377
|
+
src: "createIntegration";
|
|
378
|
+
logic: import("xstate").CallbackActorLogic<Event, Required<Pick<Context, "token" | "integrationTitle" | "developerSlug" | "integrationSlug">>>;
|
|
249
379
|
id: string | undefined;
|
|
250
380
|
};
|
|
251
381
|
detectPackageManagers: {
|
|
@@ -253,6 +383,15 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
253
383
|
logic: import("xstate").CallbackActorLogic<import("xstate").EventObject, import("xstate").NonReducibleUnknown>;
|
|
254
384
|
id: string | undefined;
|
|
255
385
|
};
|
|
386
|
+
validateIntegrationSlug: {
|
|
387
|
+
src: "validateIntegrationSlug";
|
|
388
|
+
logic: import("xstate").CallbackActorLogic<any, {
|
|
389
|
+
token: string;
|
|
390
|
+
developerSlug: string;
|
|
391
|
+
integrationSlug: string;
|
|
392
|
+
}>;
|
|
393
|
+
id: string | undefined;
|
|
394
|
+
};
|
|
256
395
|
validateName: {
|
|
257
396
|
src: "validateName";
|
|
258
397
|
logic: import("xstate").CallbackActorLogic<Event, {
|
|
@@ -271,6 +410,13 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
271
410
|
error: string;
|
|
272
411
|
};
|
|
273
412
|
};
|
|
413
|
+
setConfig: {
|
|
414
|
+
type: "setConfig";
|
|
415
|
+
params: {
|
|
416
|
+
token: string;
|
|
417
|
+
developerSlug: string;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
274
420
|
setAvailablePackageManagers: {
|
|
275
421
|
type: "setAvailablePackageManagers";
|
|
276
422
|
params: {
|
|
@@ -295,22 +441,46 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
295
441
|
name: string;
|
|
296
442
|
};
|
|
297
443
|
};
|
|
444
|
+
setIntegrationTitle: {
|
|
445
|
+
type: "setIntegrationTitle";
|
|
446
|
+
params: {
|
|
447
|
+
integrationTitle: string;
|
|
448
|
+
};
|
|
449
|
+
};
|
|
450
|
+
setIntegrationId: {
|
|
451
|
+
type: "setIntegrationId";
|
|
452
|
+
params: {
|
|
453
|
+
integrationId: string;
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
setIntegrationSlug: {
|
|
457
|
+
type: "setIntegrationSlug";
|
|
458
|
+
params: {
|
|
459
|
+
integrationSlug: string;
|
|
460
|
+
};
|
|
461
|
+
};
|
|
298
462
|
setOutlets: {
|
|
299
463
|
type: "setOutlets";
|
|
300
464
|
params: {
|
|
301
465
|
outlets: Array<Outlet>;
|
|
302
466
|
};
|
|
303
467
|
};
|
|
304
|
-
|
|
305
|
-
type: "
|
|
468
|
+
slugifyIntegrationTitle: {
|
|
469
|
+
type: "slugifyIntegrationTitle";
|
|
306
470
|
params: {
|
|
307
|
-
|
|
471
|
+
integrationTitle: string;
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
slugifyIntegrationSlug: {
|
|
475
|
+
type: "slugifyIntegrationSlug";
|
|
476
|
+
params: {
|
|
477
|
+
integrationSlug: string;
|
|
308
478
|
};
|
|
309
479
|
};
|
|
310
|
-
|
|
311
|
-
type: "
|
|
480
|
+
slugifyName: {
|
|
481
|
+
type: "slugifyName";
|
|
312
482
|
params: {
|
|
313
|
-
|
|
483
|
+
name: string;
|
|
314
484
|
};
|
|
315
485
|
};
|
|
316
486
|
}>, import("xstate").Values<{
|
|
@@ -320,6 +490,18 @@ export declare const scaffoldMachine: import("xstate").StateMachine<Context, {
|
|
|
320
490
|
name: string;
|
|
321
491
|
};
|
|
322
492
|
};
|
|
493
|
+
"have integration title": {
|
|
494
|
+
type: "have integration title";
|
|
495
|
+
params: {
|
|
496
|
+
integrationTitle: string;
|
|
497
|
+
};
|
|
498
|
+
};
|
|
499
|
+
"have integration slug": {
|
|
500
|
+
type: "have integration slug";
|
|
501
|
+
params: {
|
|
502
|
+
integrationSlug: string;
|
|
503
|
+
};
|
|
504
|
+
};
|
|
323
505
|
"have language": {
|
|
324
506
|
type: "have language";
|
|
325
507
|
params: {
|
|
@@ -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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"}
|