anyonecandesign-core
Advanced tools
Comparing version 0.0.14 to 0.0.15
@@ -6,1 +6,3 @@ export * from './types.js'; | ||
export { default as getPromptsLimit } from './utils/getPromptsLimit.js'; | ||
export { default as projectCreationStructures } from './data/projectCreationStructures.js'; | ||
export * from './data/projectCreationTemplates.js'; |
@@ -6,1 +6,3 @@ export * from './types.js'; | ||
export { default as getPromptsLimit } from './utils/getPromptsLimit.js'; | ||
export { default as projectCreationStructures } from './data/projectCreationStructures.js'; | ||
export * from './data/projectCreationTemplates.js'; |
@@ -82,2 +82,14 @@ export type DatabaseResource<T = unknown> = T & { | ||
}; | ||
export type ProjectCreationTemplate = { | ||
id: string; | ||
name: string; | ||
brief: string; | ||
structureIds: string[]; | ||
}; | ||
export type ProjectCreationStructure = { | ||
id: string; | ||
name: string; | ||
description: string; | ||
children?: ProjectCreationStructure[]; | ||
}; | ||
export type RevisionFile = { | ||
@@ -84,0 +96,0 @@ path: string; |
{ | ||
"name": "anyonecandesign-core", | ||
"version": "0.0.14", | ||
"version": "0.0.15", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Constants and types for anyonecandesign.com", |
14419
18
419