@rolexjs/core 0.5.0 → 0.6.0
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/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -198,6 +198,8 @@ interface Platform {
|
|
|
198
198
|
abandonGoal(roleId: string, experience?: string): void;
|
|
199
199
|
/** Mark a task as done */
|
|
200
200
|
completeTask(roleId: string, name: string): void;
|
|
201
|
+
/** Reflect: distill experiences into knowledge, removing the original experiences */
|
|
202
|
+
reflect(roleId: string, experienceNames: string[], knowledgeName: string, knowledgeSource: string): Feature;
|
|
201
203
|
}
|
|
202
204
|
|
|
203
205
|
export type { Directory, Feature, Goal, Identity, Organization, Plan, Platform, Role, RoleEntry, Scenario, Skill, Task };
|