@nuucognition/flint-cli 0.4.0-alpha.2 → 0.5.0-alpha.1
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/dist/{chunk-TTXIQOT3.js → chunk-67JRCBRR.js} +4092 -2097
- package/dist/{chunk-NFM75BMP.js → chunk-O7OVKLLV.js} +2 -2
- package/dist/{chunk-JNF2DSZM.js → chunk-PONDZIXS.js} +2 -2
- package/dist/{chunk-GQSLJAUU.js → chunk-XCVQLFHY.js} +129 -37
- package/dist/{chunk-AUNE7HYH.js → chunk-ZP5A4PAH.js} +5 -4
- package/dist/{dist-JRUBIV33.js → dist-PKS3JY77.js} +115 -25
- package/dist/{exports-AFOJ3JTW-IM354CSW.js → exports-E3262H6I-A4GXPTSR.js} +4 -2
- package/dist/index.js +5185 -1377
- package/dist/{mesh-config-TEPKR6QZ-TINWSM6H.js → mesh-config-BAIYF4KD-QNNQOBSL.js} +13 -9
- package/dist/{metadata-XC5LTUVJ-SZQLR3Q7.js → metadata-SJT4H53O-EXBS6PS4.js} +2 -2
- package/dist/presets/blank/preset.toml +6 -0
- package/dist/presets/default/preset.toml +8 -10
- package/dist/{registry-HLABZE3X-UM7FWWRH.js → registry-YN5W7EY7-2W767O74.js} +1 -1
- package/package.json +5 -4
|
@@ -7,48 +7,59 @@ import {
|
|
|
7
7
|
addCodebaseReference,
|
|
8
8
|
addFlintDeclaration,
|
|
9
9
|
addFlintReference,
|
|
10
|
+
addQuestion,
|
|
11
|
+
addRun,
|
|
10
12
|
addShardGitRemote,
|
|
13
|
+
answerQuestion,
|
|
11
14
|
applyPresetTemplates,
|
|
12
15
|
autoFulfillFlints,
|
|
16
|
+
buildPlate,
|
|
13
17
|
checkShardHealth,
|
|
18
|
+
checkTinderbox,
|
|
14
19
|
cleanupResolvedSource,
|
|
15
20
|
clearPresetsCache,
|
|
16
21
|
cloneObsidian,
|
|
22
|
+
clonePlateFromRepo,
|
|
17
23
|
cloneRepository,
|
|
18
24
|
cloneShardToDev,
|
|
19
25
|
cloneSourceRepository,
|
|
26
|
+
createArtifactFromTemplate,
|
|
20
27
|
createDefaultGlobalConfig,
|
|
21
28
|
createFlint,
|
|
22
29
|
createGitignore,
|
|
23
30
|
createIndexMd,
|
|
24
31
|
createMediaDir,
|
|
25
|
-
createModuleFolders,
|
|
26
32
|
createPersonFile,
|
|
33
|
+
createPlate,
|
|
27
34
|
createRepository,
|
|
28
35
|
createSession,
|
|
29
36
|
createTag,
|
|
37
|
+
deleteArtifactById,
|
|
30
38
|
discoverFlints,
|
|
31
39
|
editShard,
|
|
32
40
|
ensureReferenceMetadataDirs,
|
|
33
41
|
ensureSessionsDir,
|
|
34
42
|
extractGitHubOwnerRepo,
|
|
35
43
|
findFlintRoot,
|
|
44
|
+
findTinderboxRoot,
|
|
45
|
+
formatTinderboxToml,
|
|
36
46
|
freezeShard,
|
|
37
47
|
fulfillCodebase,
|
|
38
48
|
fulfillFlint,
|
|
39
49
|
generateCodebaseMetadata,
|
|
40
50
|
generateFlintMetadata,
|
|
51
|
+
getArtifactById,
|
|
52
|
+
getArtifactByTitle,
|
|
41
53
|
getCodebaseDeclarations,
|
|
42
54
|
getCodebaseMetadataDir,
|
|
43
55
|
getCodebaseMetadataPath,
|
|
44
56
|
getConfigValue,
|
|
45
57
|
getConflictFiles,
|
|
46
58
|
getCurrentBranch,
|
|
47
|
-
|
|
59
|
+
getCurrentRun,
|
|
48
60
|
getFlintDeclarations,
|
|
49
61
|
getFlintMetadataDir,
|
|
50
62
|
getFlintMetadataPath,
|
|
51
|
-
getFlintName,
|
|
52
63
|
getFlintNameFromPath,
|
|
53
64
|
getGitStatus,
|
|
54
65
|
getGlobalConfigPath,
|
|
@@ -56,7 +67,9 @@ import {
|
|
|
56
67
|
getIdentityStatePath,
|
|
57
68
|
getInstalledShardsWithVersions,
|
|
58
69
|
getOpenApps,
|
|
70
|
+
getPendingQuestion,
|
|
59
71
|
getPersonFilePath,
|
|
72
|
+
getPlate,
|
|
60
73
|
getPreset,
|
|
61
74
|
getRebaseBranch,
|
|
62
75
|
getReferencesMetadataDir,
|
|
@@ -71,7 +84,8 @@ import {
|
|
|
71
84
|
getSourceRepositoryPath,
|
|
72
85
|
getSourceRepositoryStatus,
|
|
73
86
|
getStatus,
|
|
74
|
-
|
|
87
|
+
getTinderboxFolderName,
|
|
88
|
+
getTinderboxStatus,
|
|
75
89
|
getUnfulfilled,
|
|
76
90
|
getUnfulfilledCodebases,
|
|
77
91
|
getUnfulfilledFlints,
|
|
@@ -84,18 +98,21 @@ import {
|
|
|
84
98
|
hasUnpushedCommits,
|
|
85
99
|
healAllShards,
|
|
86
100
|
healShard,
|
|
101
|
+
healTinderbox,
|
|
87
102
|
initGit,
|
|
103
|
+
initPlateRepo,
|
|
88
104
|
installShardFromSource,
|
|
89
105
|
isGitHubSourceSpecifier,
|
|
90
106
|
isGitInitialized,
|
|
91
107
|
isInsideFlint,
|
|
92
|
-
isInsideMesh,
|
|
93
108
|
isOwnerRepo,
|
|
94
109
|
isRebaseInProgress,
|
|
95
110
|
isShardInstalled,
|
|
96
111
|
isValidFlint,
|
|
97
112
|
isValidStatus,
|
|
98
113
|
listInstalledShards,
|
|
114
|
+
listPlateTools,
|
|
115
|
+
listPlates,
|
|
99
116
|
listPresets,
|
|
100
117
|
listRemoteVersionTags,
|
|
101
118
|
listSessions,
|
|
@@ -103,20 +120,27 @@ import {
|
|
|
103
120
|
listTags,
|
|
104
121
|
mapClaudeEntry,
|
|
105
122
|
mapClaudeTranscript,
|
|
123
|
+
moveFlint,
|
|
106
124
|
parseJsonl,
|
|
107
125
|
parseShardSource,
|
|
126
|
+
parseTinderboxToml,
|
|
108
127
|
personExists,
|
|
109
128
|
pullShard,
|
|
110
129
|
pushTags,
|
|
111
130
|
pushWithTags,
|
|
131
|
+
queryArtifacts,
|
|
132
|
+
readArtifactAtPath,
|
|
112
133
|
readConfig,
|
|
113
134
|
readConfigSync,
|
|
114
135
|
readGlobalConfig,
|
|
115
136
|
readGlobalConfigSync,
|
|
116
137
|
readIdentityState,
|
|
138
|
+
readPlateManifest,
|
|
117
139
|
readReferencesState,
|
|
118
140
|
readSession,
|
|
119
141
|
readShardManifest,
|
|
142
|
+
readTinderboxToml,
|
|
143
|
+
reconcileTinderbox,
|
|
120
144
|
registerExistingShard,
|
|
121
145
|
remoteTagExists,
|
|
122
146
|
removeDeclaration,
|
|
@@ -124,37 +148,49 @@ import {
|
|
|
124
148
|
removeReference,
|
|
125
149
|
removeRepositoryFolder,
|
|
126
150
|
removeSourceRepositoryFolder,
|
|
127
|
-
|
|
151
|
+
removeTinderboxFlint,
|
|
152
|
+
renameArtifact,
|
|
153
|
+
resolve3,
|
|
128
154
|
resolveInstalledShardInfo,
|
|
129
155
|
resolveSession,
|
|
130
156
|
resolveShardSource,
|
|
157
|
+
resolveTinderboxConnections,
|
|
131
158
|
resolveTranscriptPath,
|
|
132
159
|
runGit,
|
|
160
|
+
runPlateTool,
|
|
133
161
|
runShardScript,
|
|
134
162
|
scaffoldNewShard,
|
|
163
|
+
scanTinderboxFlints,
|
|
135
164
|
setConfigValue,
|
|
165
|
+
setCurrentRunResult,
|
|
136
166
|
setIdentity,
|
|
137
167
|
setSessionInterface,
|
|
138
168
|
setSessionStatus,
|
|
169
|
+
setTinderboxIdentity,
|
|
170
|
+
spawnPlateDevServer,
|
|
139
171
|
stringifyShardSource,
|
|
140
172
|
syncFlint,
|
|
173
|
+
syncPlateRepos,
|
|
141
174
|
syncReferenceMetadata,
|
|
175
|
+
syncTinderbox,
|
|
142
176
|
tagExists,
|
|
143
177
|
unfulfill,
|
|
144
178
|
uninstallShard,
|
|
179
|
+
updateArtifactById,
|
|
180
|
+
updateCurrentRun,
|
|
145
181
|
updateGitignore,
|
|
182
|
+
updatePlateFromRepo,
|
|
146
183
|
updateRepository,
|
|
147
184
|
updateSession,
|
|
148
185
|
updateShards,
|
|
149
186
|
updateSourceRepository,
|
|
187
|
+
validateTinderboxToml,
|
|
150
188
|
writeGlobalConfig,
|
|
151
189
|
writeIdentityState,
|
|
152
190
|
writeReferencesState,
|
|
153
|
-
writeSession
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
runConcurrent
|
|
157
|
-
} from "./chunk-V7YA5RXL.js";
|
|
191
|
+
writeSession,
|
|
192
|
+
writeTinderboxToml
|
|
193
|
+
} from "./chunk-67JRCBRR.js";
|
|
158
194
|
import {
|
|
159
195
|
cleanRegistryFile,
|
|
160
196
|
findFlintByName,
|
|
@@ -169,7 +205,10 @@ import {
|
|
|
169
205
|
unregisterFlint,
|
|
170
206
|
updateFlintEntry,
|
|
171
207
|
upsertFlintEntry
|
|
172
|
-
} from "./chunk-
|
|
208
|
+
} from "./chunk-O7OVKLLV.js";
|
|
209
|
+
import {
|
|
210
|
+
runConcurrent
|
|
211
|
+
} from "./chunk-V7YA5RXL.js";
|
|
173
212
|
import {
|
|
174
213
|
generateSourceMeshExportMetadata,
|
|
175
214
|
generateSourceRepoMetadata,
|
|
@@ -183,23 +222,24 @@ import {
|
|
|
183
222
|
resolveSource,
|
|
184
223
|
syncSourceMeshExportMetadata,
|
|
185
224
|
syncSourceRepoMetadata
|
|
186
|
-
} from "./chunk-
|
|
225
|
+
} from "./chunk-PONDZIXS.js";
|
|
187
226
|
import {
|
|
188
227
|
buildAllExports,
|
|
189
228
|
buildExport,
|
|
190
229
|
buildExportByName,
|
|
191
230
|
cleanupStaleExports,
|
|
231
|
+
resolveDocument,
|
|
192
232
|
scanExportEligible,
|
|
193
233
|
scanExports
|
|
194
|
-
} from "./chunk-
|
|
234
|
+
} from "./chunk-ZP5A4PAH.js";
|
|
195
235
|
import {
|
|
196
236
|
FLINT_CONFIG_FILENAME,
|
|
197
237
|
FLINT_JSON_FILENAME,
|
|
198
238
|
FLINT_VERSION,
|
|
199
239
|
addExportToConfig,
|
|
200
240
|
addLatticeDeclaration,
|
|
201
|
-
addLatticeReference,
|
|
202
241
|
addMeshExportToConfig,
|
|
242
|
+
addPlateDeclaration,
|
|
203
243
|
addShardToConfig,
|
|
204
244
|
addSourceRepository,
|
|
205
245
|
addWorkspaceRepository,
|
|
@@ -207,26 +247,30 @@ import {
|
|
|
207
247
|
createFlintToml,
|
|
208
248
|
fulfillLattice,
|
|
209
249
|
getExportDeclarations,
|
|
250
|
+
getFlintConfigDir,
|
|
210
251
|
getFlintConfigPath,
|
|
211
252
|
getFlintJsonPath,
|
|
212
253
|
getFlintJsonVersion,
|
|
254
|
+
getFlintName,
|
|
213
255
|
getLatticeDeclaration,
|
|
214
256
|
getLatticeDeclarations,
|
|
215
257
|
getLatticeFulfillment,
|
|
216
|
-
getLatticeReference,
|
|
217
|
-
getLatticeReferences,
|
|
218
258
|
getMeshExportSources,
|
|
259
|
+
getPlateDeclaration,
|
|
260
|
+
getPlateDeclarations,
|
|
219
261
|
getRequiredShardNames,
|
|
220
262
|
getShardDeclarations,
|
|
221
263
|
getShardDeclarationsFromConfig,
|
|
222
264
|
getSourceRepositories,
|
|
223
265
|
getSourceRepository,
|
|
266
|
+
getTypePrefix,
|
|
224
267
|
getWorkspaceRepositories,
|
|
225
268
|
getWorkspaceRepository,
|
|
226
269
|
hasFlintJson,
|
|
227
270
|
hasFlintToml,
|
|
228
271
|
hasMigration,
|
|
229
272
|
isFlint,
|
|
273
|
+
isInsideMesh,
|
|
230
274
|
isLocalShard,
|
|
231
275
|
migrateShardConfig,
|
|
232
276
|
nameFormats,
|
|
@@ -236,19 +280,20 @@ import {
|
|
|
236
280
|
recordMigration,
|
|
237
281
|
removeExportFromConfig,
|
|
238
282
|
removeLatticeDeclaration,
|
|
239
|
-
removeLatticeReference,
|
|
240
283
|
removeMeshExportFromConfig,
|
|
284
|
+
removePlateDeclaration,
|
|
241
285
|
removeShardFromConfig,
|
|
242
286
|
removeSourceRepository,
|
|
243
287
|
removeWorkspaceRepository,
|
|
244
288
|
resolveShardMode,
|
|
289
|
+
setPlateRepo,
|
|
245
290
|
stampSynced,
|
|
246
291
|
stampVersion,
|
|
247
292
|
toKebabCase,
|
|
248
293
|
toSnakeCase,
|
|
249
294
|
writeFlintJson,
|
|
250
295
|
writeFlintToml
|
|
251
|
-
} from "./chunk-
|
|
296
|
+
} from "./chunk-XCVQLFHY.js";
|
|
252
297
|
export {
|
|
253
298
|
FLINT_CONFIG_FILENAME,
|
|
254
299
|
FLINT_JSON_FILENAME,
|
|
@@ -263,26 +308,33 @@ export {
|
|
|
263
308
|
addFlintDeclaration,
|
|
264
309
|
addFlintReference,
|
|
265
310
|
addLatticeDeclaration,
|
|
266
|
-
addLatticeReference,
|
|
267
311
|
addMeshExportToConfig,
|
|
312
|
+
addPlateDeclaration,
|
|
313
|
+
addQuestion,
|
|
314
|
+
addRun,
|
|
268
315
|
addShardGitRemote,
|
|
269
316
|
addShardToConfig,
|
|
270
317
|
addSourceRepository,
|
|
271
318
|
addWorkspaceRepository,
|
|
319
|
+
answerQuestion,
|
|
272
320
|
applyPresetTemplates,
|
|
273
321
|
autoFulfillFlints,
|
|
274
322
|
buildAllExports,
|
|
275
323
|
buildExport,
|
|
276
324
|
buildExportByName,
|
|
325
|
+
buildPlate,
|
|
277
326
|
checkShardHealth,
|
|
327
|
+
checkTinderbox,
|
|
278
328
|
cleanRegistryFile,
|
|
279
329
|
cleanupResolvedSource,
|
|
280
330
|
cleanupStaleExports,
|
|
281
331
|
clearPresetsCache,
|
|
282
332
|
cloneObsidian,
|
|
333
|
+
clonePlateFromRepo,
|
|
283
334
|
cloneRepository,
|
|
284
335
|
cloneShardToDev,
|
|
285
336
|
cloneSourceRepository,
|
|
337
|
+
createArtifactFromTemplate,
|
|
286
338
|
createDefaultGlobalConfig,
|
|
287
339
|
createFlint,
|
|
288
340
|
createFlintJson,
|
|
@@ -290,11 +342,12 @@ export {
|
|
|
290
342
|
createGitignore,
|
|
291
343
|
createIndexMd,
|
|
292
344
|
createMediaDir,
|
|
293
|
-
createModuleFolders,
|
|
294
345
|
createPersonFile,
|
|
346
|
+
createPlate,
|
|
295
347
|
createRepository,
|
|
296
348
|
createSession,
|
|
297
349
|
createTag,
|
|
350
|
+
deleteArtifactById,
|
|
298
351
|
discoverFlints,
|
|
299
352
|
editShard,
|
|
300
353
|
ensureReferenceMetadataDirs,
|
|
@@ -303,6 +356,8 @@ export {
|
|
|
303
356
|
findFlintByName,
|
|
304
357
|
findFlintByPath,
|
|
305
358
|
findFlintRoot,
|
|
359
|
+
findTinderboxRoot,
|
|
360
|
+
formatTinderboxToml,
|
|
306
361
|
freezeShard,
|
|
307
362
|
fulfillCodebase,
|
|
308
363
|
fulfillFlint,
|
|
@@ -311,12 +366,15 @@ export {
|
|
|
311
366
|
generateFlintMetadata,
|
|
312
367
|
generateSourceMeshExportMetadata,
|
|
313
368
|
generateSourceRepoMetadata,
|
|
369
|
+
getArtifactById,
|
|
370
|
+
getArtifactByTitle,
|
|
314
371
|
getCodebaseDeclarations,
|
|
315
372
|
getCodebaseMetadataDir,
|
|
316
373
|
getCodebaseMetadataPath,
|
|
317
374
|
getConfigValue,
|
|
318
375
|
getConflictFiles,
|
|
319
376
|
getCurrentBranch,
|
|
377
|
+
getCurrentRun,
|
|
320
378
|
getExportDeclarations,
|
|
321
379
|
getFlintConfigDir,
|
|
322
380
|
getFlintConfigPath,
|
|
@@ -338,12 +396,14 @@ export {
|
|
|
338
396
|
getLatticeDeclaration,
|
|
339
397
|
getLatticeDeclarations,
|
|
340
398
|
getLatticeFulfillment,
|
|
341
|
-
getLatticeReference,
|
|
342
|
-
getLatticeReferences,
|
|
343
399
|
getMeshExportSources,
|
|
344
400
|
getReferencesMetadataDir as getNewReferencesMetadataDir,
|
|
345
401
|
getOpenApps,
|
|
402
|
+
getPendingQuestion,
|
|
346
403
|
getPersonFilePath,
|
|
404
|
+
getPlate,
|
|
405
|
+
getPlateDeclaration,
|
|
406
|
+
getPlateDeclarations,
|
|
347
407
|
getPreset,
|
|
348
408
|
getRebaseBranch,
|
|
349
409
|
getRemoteUrl,
|
|
@@ -367,6 +427,8 @@ export {
|
|
|
367
427
|
getSourceRepositoryStatus,
|
|
368
428
|
getSourcesMetadataDir,
|
|
369
429
|
getStatus,
|
|
430
|
+
getTinderboxFolderName,
|
|
431
|
+
getTinderboxStatus,
|
|
370
432
|
getTypePrefix,
|
|
371
433
|
getUnfulfilled,
|
|
372
434
|
getUnfulfilledCodebases,
|
|
@@ -385,7 +447,9 @@ export {
|
|
|
385
447
|
hasUnpushedCommits,
|
|
386
448
|
healAllShards,
|
|
387
449
|
healShard,
|
|
450
|
+
healTinderbox,
|
|
388
451
|
initGit,
|
|
452
|
+
initPlateRepo,
|
|
389
453
|
installShardFromSource,
|
|
390
454
|
isFlint,
|
|
391
455
|
isFlintNameTaken,
|
|
@@ -401,6 +465,8 @@ export {
|
|
|
401
465
|
isValidFlint,
|
|
402
466
|
isValidStatus,
|
|
403
467
|
listInstalledShards,
|
|
468
|
+
listPlateTools,
|
|
469
|
+
listPlates,
|
|
404
470
|
listPresets,
|
|
405
471
|
listRemoteVersionTags,
|
|
406
472
|
listSessions,
|
|
@@ -409,13 +475,17 @@ export {
|
|
|
409
475
|
mapClaudeEntry,
|
|
410
476
|
mapClaudeTranscript,
|
|
411
477
|
migrateShardConfig,
|
|
478
|
+
moveFlint,
|
|
412
479
|
nameFormats,
|
|
413
480
|
parseJsonl,
|
|
414
481
|
parseShardSource,
|
|
482
|
+
parseTinderboxToml,
|
|
415
483
|
personExists,
|
|
416
484
|
pullShard,
|
|
417
485
|
pushTags,
|
|
418
486
|
pushWithTags,
|
|
487
|
+
queryArtifacts,
|
|
488
|
+
readArtifactAtPath,
|
|
419
489
|
readConfig,
|
|
420
490
|
readConfigSync,
|
|
421
491
|
readFlintJson,
|
|
@@ -424,9 +494,12 @@ export {
|
|
|
424
494
|
readGlobalConfigSync,
|
|
425
495
|
readIdentityState,
|
|
426
496
|
readLatticesState,
|
|
497
|
+
readPlateManifest,
|
|
427
498
|
readSession,
|
|
428
499
|
readShardManifest,
|
|
500
|
+
readTinderboxToml,
|
|
429
501
|
readReferencesState as readUnifiedReferencesState,
|
|
502
|
+
reconcileTinderbox,
|
|
430
503
|
recordMigration,
|
|
431
504
|
registerExistingShard,
|
|
432
505
|
registerFlint,
|
|
@@ -434,9 +507,9 @@ export {
|
|
|
434
507
|
remoteTagExists,
|
|
435
508
|
removeExportFromConfig,
|
|
436
509
|
removeLatticeDeclaration,
|
|
437
|
-
removeLatticeReference,
|
|
438
510
|
removeMeshExportFromConfig,
|
|
439
511
|
removeOrphanedShard,
|
|
512
|
+
removePlateDeclaration,
|
|
440
513
|
removeReference,
|
|
441
514
|
removeDeclaration as removeReferenceDeclaration,
|
|
442
515
|
removeRepositoryFolder,
|
|
@@ -445,48 +518,65 @@ export {
|
|
|
445
518
|
removeSourceRepoMetadata,
|
|
446
519
|
removeSourceRepository,
|
|
447
520
|
removeSourceRepositoryFolder,
|
|
521
|
+
removeTinderboxFlint,
|
|
448
522
|
removeWorkspaceRepository,
|
|
449
|
-
|
|
523
|
+
renameArtifact,
|
|
524
|
+
resolve3 as resolve,
|
|
525
|
+
resolveDocument,
|
|
450
526
|
resolveInstalledShardInfo,
|
|
451
527
|
resolveSession,
|
|
452
528
|
resolveShardMode,
|
|
453
529
|
resolveShardSource,
|
|
454
530
|
resolveSource,
|
|
531
|
+
resolveTinderboxConnections,
|
|
455
532
|
resolveTranscriptPath,
|
|
456
533
|
runConcurrent,
|
|
457
534
|
runGit,
|
|
535
|
+
runPlateTool,
|
|
458
536
|
runShardScript,
|
|
459
537
|
scaffoldNewShard,
|
|
460
538
|
scanExportEligible,
|
|
461
539
|
scanExports,
|
|
540
|
+
scanTinderboxFlints,
|
|
462
541
|
setConfigValue,
|
|
542
|
+
setCurrentRunResult,
|
|
463
543
|
setIdentity,
|
|
544
|
+
setPlateRepo,
|
|
464
545
|
setSessionInterface,
|
|
465
546
|
setSessionStatus,
|
|
547
|
+
setTinderboxIdentity,
|
|
548
|
+
spawnPlateDevServer,
|
|
466
549
|
stampSynced,
|
|
467
550
|
stampVersion,
|
|
468
551
|
stringifyShardSource,
|
|
469
552
|
syncFlint,
|
|
553
|
+
syncPlateRepos,
|
|
470
554
|
syncReferenceMetadata,
|
|
471
555
|
syncSourceMeshExportMetadata,
|
|
472
556
|
syncSourceRepoMetadata,
|
|
557
|
+
syncTinderbox,
|
|
473
558
|
tagExists,
|
|
474
559
|
toKebabCase,
|
|
475
560
|
toSnakeCase,
|
|
476
561
|
unfulfill as unfulfillReference,
|
|
477
562
|
uninstallShard,
|
|
478
563
|
unregisterFlint,
|
|
564
|
+
updateArtifactById,
|
|
565
|
+
updateCurrentRun,
|
|
479
566
|
updateFlintEntry,
|
|
480
567
|
updateGitignore,
|
|
568
|
+
updatePlateFromRepo,
|
|
481
569
|
updateRepository,
|
|
482
570
|
updateSession,
|
|
483
571
|
updateShards,
|
|
484
572
|
updateSourceRepository,
|
|
485
573
|
upsertFlintEntry,
|
|
574
|
+
validateTinderboxToml,
|
|
486
575
|
writeFlintJson,
|
|
487
576
|
writeFlintToml,
|
|
488
577
|
writeGlobalConfig,
|
|
489
578
|
writeIdentityState,
|
|
490
579
|
writeSession,
|
|
580
|
+
writeTinderboxToml,
|
|
491
581
|
writeReferencesState as writeUnifiedReferencesState
|
|
492
582
|
};
|
|
@@ -3,15 +3,17 @@ import {
|
|
|
3
3
|
buildExport,
|
|
4
4
|
buildExportByName,
|
|
5
5
|
cleanupStaleExports,
|
|
6
|
+
resolveDocument,
|
|
6
7
|
scanExportEligible,
|
|
7
8
|
scanExports
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-ZP5A4PAH.js";
|
|
10
|
+
import "./chunk-XCVQLFHY.js";
|
|
10
11
|
export {
|
|
11
12
|
buildAllExports,
|
|
12
13
|
buildExport,
|
|
13
14
|
buildExportByName,
|
|
14
15
|
cleanupStaleExports,
|
|
16
|
+
resolveDocument,
|
|
15
17
|
scanExportEligible,
|
|
16
18
|
scanExports
|
|
17
19
|
};
|