@cognitive-engine/core 0.1.0 → 0.2.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/config.d.ts +104 -20
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +6 -2
- package/dist/config.js.map +1 -1
- package/dist/events.d.ts +24 -17
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +7 -2
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts +4 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/types/bandit.d.ts +12 -0
- package/dist/types/bandit.d.ts.map +1 -0
- package/dist/types/bandit.js +2 -0
- package/dist/types/bandit.js.map +1 -0
- package/dist/types/emotional.d.ts +27 -0
- package/dist/types/emotional.d.ts.map +1 -0
- package/dist/types/emotional.js +2 -0
- package/dist/types/emotional.js.map +1 -0
- package/dist/types/index.d.ts +12 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/memory.d.ts +89 -0
- package/dist/types/memory.d.ts.map +1 -0
- package/dist/types/memory.js +2 -0
- package/dist/types/memory.js.map +1 -0
- package/dist/types/metacognition.d.ts +23 -0
- package/dist/types/metacognition.d.ts.map +1 -0
- package/dist/types/metacognition.js +2 -0
- package/dist/types/metacognition.js.map +1 -0
- package/dist/types/mind.d.ts +51 -0
- package/dist/types/mind.d.ts.map +1 -0
- package/dist/types/mind.js +2 -0
- package/dist/types/mind.js.map +1 -0
- package/dist/types/orchestrator.d.ts +24 -0
- package/dist/types/orchestrator.d.ts.map +1 -0
- package/dist/types/orchestrator.js +2 -0
- package/dist/types/orchestrator.js.map +1 -0
- package/dist/types/perception.d.ts +20 -0
- package/dist/types/perception.d.ts.map +1 -0
- package/dist/types/perception.js +2 -0
- package/dist/types/perception.js.map +1 -0
- package/dist/types/planning.d.ts +23 -0
- package/dist/types/planning.d.ts.map +1 -0
- package/dist/types/planning.js +2 -0
- package/dist/types/planning.js.map +1 -0
- package/dist/types/reasoning.d.ts +63 -0
- package/dist/types/reasoning.d.ts.map +1 -0
- package/dist/types/reasoning.js +2 -0
- package/dist/types/reasoning.js.map +1 -0
- package/dist/types/social.d.ts +37 -0
- package/dist/types/social.d.ts.map +1 -0
- package/dist/types/social.js +2 -0
- package/dist/types/social.js.map +1 -0
- package/dist/types/temporal.d.ts +45 -0
- package/dist/types/temporal.d.ts.map +1 -0
- package/dist/types/temporal.js +2 -0
- package/dist/types/temporal.js.map +1 -0
- package/dist/types.d.ts +7 -223
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +0 -3
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export interface Reflection {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
type: 'observation' | 'question' | 'insight' | 'concern' | 'celebration';
|
|
5
|
+
content: string;
|
|
6
|
+
priority: number;
|
|
7
|
+
createdAt: Date;
|
|
8
|
+
expiresAt?: Date;
|
|
9
|
+
}
|
|
10
|
+
export interface Relationship {
|
|
11
|
+
id: string;
|
|
12
|
+
userId: string;
|
|
13
|
+
personName: string;
|
|
14
|
+
type: 'family' | 'friend' | 'colleague' | 'romantic' | 'other';
|
|
15
|
+
sentiment: number;
|
|
16
|
+
mentionCount: number;
|
|
17
|
+
context: string;
|
|
18
|
+
lastMentioned: Date;
|
|
19
|
+
createdAt: Date;
|
|
20
|
+
}
|
|
21
|
+
export interface OpenLoop {
|
|
22
|
+
id: string;
|
|
23
|
+
userId: string;
|
|
24
|
+
question: string;
|
|
25
|
+
importance: number;
|
|
26
|
+
askAfter?: Date;
|
|
27
|
+
expiresAt?: Date;
|
|
28
|
+
isAsked: boolean;
|
|
29
|
+
isClosed: boolean;
|
|
30
|
+
answerSummary?: string;
|
|
31
|
+
createdAt: Date;
|
|
32
|
+
}
|
|
33
|
+
export interface EmotionalTrigger {
|
|
34
|
+
id: string;
|
|
35
|
+
userId: string;
|
|
36
|
+
trigger: string;
|
|
37
|
+
category: string;
|
|
38
|
+
emotion: string;
|
|
39
|
+
intensity: number;
|
|
40
|
+
occurrenceCount: number;
|
|
41
|
+
lastTriggered: Date;
|
|
42
|
+
createdAt: Date;
|
|
43
|
+
}
|
|
44
|
+
export interface MindContext {
|
|
45
|
+
reflections: Reflection[];
|
|
46
|
+
relationships: Relationship[];
|
|
47
|
+
openLoops: OpenLoop[];
|
|
48
|
+
emotionalTriggers: EmotionalTrigger[];
|
|
49
|
+
formattedContext: string;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=mind.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mind.d.ts","sourceRoot":"","sources":["../../src/types/mind.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,aAAa,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,aAAa,CAAA;IACxE,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,EAAE,IAAI,CAAA;IACf,SAAS,CAAC,EAAE,IAAI,CAAA;CACjB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,GAAG,OAAO,CAAA;IAC9D,SAAS,EAAE,MAAM,CAAA;IACjB,YAAY,EAAE,MAAM,CAAA;IACpB,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,EAAE,IAAI,CAAA;IACnB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,IAAI,CAAA;IACf,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,OAAO,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,OAAO,CAAA;IACjB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;IACjB,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,IAAI,CAAA;IACnB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,WAAW,EAAE,UAAU,EAAE,CAAA;IACzB,aAAa,EAAE,YAAY,EAAE,CAAA;IAC7B,SAAS,EAAE,QAAQ,EAAE,CAAA;IACrB,iBAAiB,EAAE,gBAAgB,EAAE,CAAA;IACrC,gBAAgB,EAAE,MAAM,CAAA;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mind.js","sourceRoot":"","sources":["../../src/types/mind.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Percept } from './perception.js';
|
|
2
|
+
import type { ReasoningResult } from './reasoning.js';
|
|
3
|
+
import type { EpisodicContext, SemanticContext } from './memory.js';
|
|
4
|
+
import type { TemporalContext } from './temporal.js';
|
|
5
|
+
import type { MindContext } from './mind.js';
|
|
6
|
+
import type { EmotionalContext } from './emotional.js';
|
|
7
|
+
import type { SocialContext } from './social.js';
|
|
8
|
+
import type { PlanningContext } from './planning.js';
|
|
9
|
+
import type { MetacognitiveAssessment } from './metacognition.js';
|
|
10
|
+
export interface CognitiveResponse {
|
|
11
|
+
percept: Percept;
|
|
12
|
+
reasoning: ReasoningResult;
|
|
13
|
+
episodicContext?: EpisodicContext;
|
|
14
|
+
semanticContext?: SemanticContext;
|
|
15
|
+
mindContext?: MindContext;
|
|
16
|
+
emotionalContext?: EmotionalContext;
|
|
17
|
+
socialContext?: SocialContext;
|
|
18
|
+
temporalContext?: TemporalContext;
|
|
19
|
+
planningContext?: PlanningContext;
|
|
20
|
+
metacognition?: MetacognitiveAssessment;
|
|
21
|
+
suggestedResponse: string;
|
|
22
|
+
systemPrompt: string;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=orchestrator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../../src/types/orchestrator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AACrD,OAAO,KAAK,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACtD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAChD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAA;AAEjE,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,OAAO,CAAA;IAChB,SAAS,EAAE,eAAe,CAAA;IAC1B,eAAe,CAAC,EAAE,eAAe,CAAA;IACjC,eAAe,CAAC,EAAE,eAAe,CAAA;IACjC,WAAW,CAAC,EAAE,WAAW,CAAA;IACzB,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IACnC,aAAa,CAAC,EAAE,aAAa,CAAA;IAC7B,eAAe,CAAC,EAAE,eAAe,CAAA;IACjC,eAAe,CAAC,EAAE,eAAe,CAAA;IACjC,aAAa,CAAC,EAAE,uBAAuB,CAAA;IACvC,iBAAiB,EAAE,MAAM,CAAA;IACzB,YAAY,EAAE,MAAM,CAAA;CACrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orchestrator.js","sourceRoot":"","sources":["../../src/types/orchestrator.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface Percept {
|
|
2
|
+
rawText: string;
|
|
3
|
+
emotionalTone: string;
|
|
4
|
+
urgency: number;
|
|
5
|
+
requestType: string;
|
|
6
|
+
responseMode: ResponseMode;
|
|
7
|
+
entities: Entity[];
|
|
8
|
+
implicitNeeds: string[];
|
|
9
|
+
conversationPhase: ConversationPhase;
|
|
10
|
+
confidence: number;
|
|
11
|
+
analysisMethod: 'quick' | 'deep';
|
|
12
|
+
}
|
|
13
|
+
export type ResponseMode = 'listening' | 'advising' | 'informing';
|
|
14
|
+
export type ConversationPhase = 'opening' | 'exploration' | 'deep_dive' | 'conclusion' | 'follow_up';
|
|
15
|
+
export interface Entity {
|
|
16
|
+
type: string;
|
|
17
|
+
value: string;
|
|
18
|
+
confidence: number;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=perception.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"perception.d.ts","sourceRoot":"","sources":["../../src/types/perception.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,EAAE,MAAM,CAAA;IACrB,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,YAAY,EAAE,YAAY,CAAA;IAC1B,QAAQ,EAAE,MAAM,EAAE,CAAA;IAClB,aAAa,EAAE,MAAM,EAAE,CAAA;IACvB,iBAAiB,EAAE,iBAAiB,CAAA;IACpC,UAAU,EAAE,MAAM,CAAA;IAClB,cAAc,EAAE,OAAO,GAAG,MAAM,CAAA;CACjC;AAED,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,GAAG,WAAW,CAAA;AAEjE,MAAM,MAAM,iBAAiB,GACzB,SAAS,GACT,aAAa,GACb,WAAW,GACX,YAAY,GACZ,WAAW,CAAA;AAEf,MAAM,WAAW,MAAM;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,UAAU,EAAE,MAAM,CAAA;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"perception.js","sourceRoot":"","sources":["../../src/types/perception.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export interface Plan {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
goal: string;
|
|
5
|
+
steps: PlanStep[];
|
|
6
|
+
status: 'active' | 'completed' | 'abandoned';
|
|
7
|
+
priority: number;
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
updatedAt: Date;
|
|
10
|
+
}
|
|
11
|
+
export interface PlanStep {
|
|
12
|
+
id: string;
|
|
13
|
+
description: string;
|
|
14
|
+
status: 'pending' | 'in_progress' | 'completed' | 'skipped';
|
|
15
|
+
order: number;
|
|
16
|
+
dependencies?: string[];
|
|
17
|
+
}
|
|
18
|
+
export interface PlanningContext {
|
|
19
|
+
activePlans: Plan[];
|
|
20
|
+
nextActions: PlanStep[];
|
|
21
|
+
formattedContext: string;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=planning.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"planning.d.ts","sourceRoot":"","sources":["../../src/types/planning.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,IAAI;IACnB,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,QAAQ,EAAE,CAAA;IACjB,MAAM,EAAE,QAAQ,GAAG,WAAW,GAAG,WAAW,CAAA;IAC5C,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,EAAE,IAAI,CAAA;IACf,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,EAAE,SAAS,GAAG,aAAa,GAAG,WAAW,GAAG,SAAS,CAAA;IAC3D,KAAK,EAAE,MAAM,CAAA;IACb,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;CACxB;AAED,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,IAAI,EAAE,CAAA;IACnB,WAAW,EAAE,QAAQ,EAAE,CAAA;IACvB,gBAAgB,EAAE,MAAM,CAAA;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"planning.js","sourceRoot":"","sources":["../../src/types/planning.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { Percept } from './perception.js';
|
|
2
|
+
export interface Belief {
|
|
3
|
+
id: string;
|
|
4
|
+
subject: string;
|
|
5
|
+
predicate: string;
|
|
6
|
+
object: string;
|
|
7
|
+
confidence: number;
|
|
8
|
+
source: BeliefSource;
|
|
9
|
+
evidence: string[];
|
|
10
|
+
createdAt: Date;
|
|
11
|
+
updatedAt: Date;
|
|
12
|
+
}
|
|
13
|
+
export type BeliefSource = 'explicit' | 'inferred' | 'observed';
|
|
14
|
+
export interface BeliefCandidate {
|
|
15
|
+
subject: string;
|
|
16
|
+
predicate: string;
|
|
17
|
+
object: string;
|
|
18
|
+
confidence: number;
|
|
19
|
+
}
|
|
20
|
+
export type IntentionType = 'inform' | 'clarify' | 'suggest' | 'empathize' | 'challenge' | 'remind' | 'motivate';
|
|
21
|
+
export interface Intention {
|
|
22
|
+
type: IntentionType;
|
|
23
|
+
target: string;
|
|
24
|
+
priority: number;
|
|
25
|
+
reason?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface CognitiveState {
|
|
28
|
+
beliefs: Belief[];
|
|
29
|
+
goals: UserGoal[];
|
|
30
|
+
workingMemory: WorkingMemoryItem[];
|
|
31
|
+
currentIntentions: Intention[];
|
|
32
|
+
emotionalContext: string;
|
|
33
|
+
attentionFocus: string[];
|
|
34
|
+
lastUpdated: Date;
|
|
35
|
+
}
|
|
36
|
+
export interface UserGoal {
|
|
37
|
+
id: string;
|
|
38
|
+
description: string;
|
|
39
|
+
priority: number;
|
|
40
|
+
progress: number;
|
|
41
|
+
deadline?: Date;
|
|
42
|
+
relatedBeliefs: string[];
|
|
43
|
+
}
|
|
44
|
+
export interface WorkingMemoryItem {
|
|
45
|
+
content: string;
|
|
46
|
+
type: 'fact' | 'context' | 'question' | 'hypothesis';
|
|
47
|
+
relevance: number;
|
|
48
|
+
timestamp: Date;
|
|
49
|
+
}
|
|
50
|
+
export interface ReasoningResult {
|
|
51
|
+
intentions: Intention[];
|
|
52
|
+
newBeliefs: Belief[];
|
|
53
|
+
hypotheses: string[];
|
|
54
|
+
questionsToAsk: string[];
|
|
55
|
+
suggestedActions: string[];
|
|
56
|
+
confidence: number;
|
|
57
|
+
}
|
|
58
|
+
export interface InferenceRule {
|
|
59
|
+
name: string;
|
|
60
|
+
condition: (percept: Percept, beliefs: Belief[]) => boolean;
|
|
61
|
+
action: (percept: Percept) => BeliefCandidate;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=reasoning.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reasoning.d.ts","sourceRoot":"","sources":["../../src/types/reasoning.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAE9C,MAAM,WAAW,MAAM;IACrB,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,EAAE,YAAY,CAAA;IACpB,QAAQ,EAAE,MAAM,EAAE,CAAA;IAClB,SAAS,EAAE,IAAI,CAAA;IACf,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,MAAM,YAAY,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,CAAA;AAE/D,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,MAAM,aAAa,GACrB,QAAQ,GACR,SAAS,GACT,SAAS,GACT,WAAW,GACX,WAAW,GACX,QAAQ,GACR,UAAU,CAAA;AAEd,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,aAAa,CAAA;IACnB,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,KAAK,EAAE,QAAQ,EAAE,CAAA;IACjB,aAAa,EAAE,iBAAiB,EAAE,CAAA;IAClC,iBAAiB,EAAE,SAAS,EAAE,CAAA;IAC9B,gBAAgB,EAAE,MAAM,CAAA;IACxB,cAAc,EAAE,MAAM,EAAE,CAAA;IACxB,WAAW,EAAE,IAAI,CAAA;CAClB;AAED,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,CAAC,EAAE,IAAI,CAAA;IACf,cAAc,EAAE,MAAM,EAAE,CAAA;CACzB;AAED,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,CAAA;IACpD,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,SAAS,EAAE,CAAA;IACvB,UAAU,EAAE,MAAM,EAAE,CAAA;IACpB,UAAU,EAAE,MAAM,EAAE,CAAA;IACpB,cAAc,EAAE,MAAM,EAAE,CAAA;IACxB,gBAAgB,EAAE,MAAM,EAAE,CAAA;IAC1B,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,OAAO,CAAA;IAC3D,MAAM,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,eAAe,CAAA;CAC9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reasoning.js","sourceRoot":"","sources":["../../src/types/reasoning.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export interface RapportState {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
trust: number;
|
|
5
|
+
familiarity: number;
|
|
6
|
+
comfort: number;
|
|
7
|
+
engagement: number;
|
|
8
|
+
overallRapport: number;
|
|
9
|
+
conversationCount: number;
|
|
10
|
+
lastInteraction: Date;
|
|
11
|
+
createdAt: Date;
|
|
12
|
+
updatedAt: Date;
|
|
13
|
+
}
|
|
14
|
+
export interface SocialBoundary {
|
|
15
|
+
id: string;
|
|
16
|
+
userId: string;
|
|
17
|
+
topic: string;
|
|
18
|
+
sensitivity: number;
|
|
19
|
+
isExplicit: boolean;
|
|
20
|
+
createdAt: Date;
|
|
21
|
+
}
|
|
22
|
+
export interface CommunicationPreference {
|
|
23
|
+
id: string;
|
|
24
|
+
userId: string;
|
|
25
|
+
dimension: string;
|
|
26
|
+
preferredStyle: string;
|
|
27
|
+
confidence: number;
|
|
28
|
+
evidence: string[];
|
|
29
|
+
updatedAt: Date;
|
|
30
|
+
}
|
|
31
|
+
export interface SocialContext {
|
|
32
|
+
rapport: RapportState | null;
|
|
33
|
+
boundaries: SocialBoundary[];
|
|
34
|
+
preferences: CommunicationPreference[];
|
|
35
|
+
formattedContext: string;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=social.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"social.d.ts","sourceRoot":"","sources":["../../src/types/social.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,MAAM,CAAA;IACf,UAAU,EAAE,MAAM,CAAA;IAClB,cAAc,EAAE,MAAM,CAAA;IACtB,iBAAiB,EAAE,MAAM,CAAA;IACzB,eAAe,EAAE,IAAI,CAAA;IACrB,SAAS,EAAE,IAAI,CAAA;IACf,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,OAAO,CAAA;IACnB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,uBAAuB;IACtC,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,EAAE,MAAM,CAAA;IACtB,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,MAAM,EAAE,CAAA;IAClB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,YAAY,GAAG,IAAI,CAAA;IAC5B,UAAU,EAAE,cAAc,EAAE,CAAA;IAC5B,WAAW,EAAE,uBAAuB,EAAE,CAAA;IACtC,gBAAgB,EAAE,MAAM,CAAA;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"social.js","sourceRoot":"","sources":["../../src/types/social.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { Episode } from './memory.js';
|
|
2
|
+
export interface BehaviorPattern {
|
|
3
|
+
id: string;
|
|
4
|
+
userId: string;
|
|
5
|
+
patternType: string;
|
|
6
|
+
description: string;
|
|
7
|
+
frequency: 'daily' | 'weekly' | 'biweekly' | 'monthly' | 'irregular';
|
|
8
|
+
occurrences: number;
|
|
9
|
+
confidence: number;
|
|
10
|
+
nextExpected?: Date;
|
|
11
|
+
createdAt: Date;
|
|
12
|
+
}
|
|
13
|
+
export interface CausalChain {
|
|
14
|
+
id: string;
|
|
15
|
+
userId: string;
|
|
16
|
+
events: string[];
|
|
17
|
+
rootCause: string;
|
|
18
|
+
finalEffect: string;
|
|
19
|
+
chainType: string;
|
|
20
|
+
confidence: number;
|
|
21
|
+
description: string;
|
|
22
|
+
createdAt: Date;
|
|
23
|
+
}
|
|
24
|
+
export interface FuturePrediction {
|
|
25
|
+
id: string;
|
|
26
|
+
userId: string;
|
|
27
|
+
predictedState: string;
|
|
28
|
+
timeframe: string;
|
|
29
|
+
predictionType: string;
|
|
30
|
+
severity: 'low' | 'medium' | 'high';
|
|
31
|
+
isWarning: boolean;
|
|
32
|
+
recommendation?: string;
|
|
33
|
+
confidence: number;
|
|
34
|
+
isResolved: boolean;
|
|
35
|
+
wasCorrect?: boolean;
|
|
36
|
+
createdAt: Date;
|
|
37
|
+
}
|
|
38
|
+
export interface TemporalContext {
|
|
39
|
+
recentTimeline: Episode[];
|
|
40
|
+
activePatterns: BehaviorPattern[];
|
|
41
|
+
activeCausalChains: CausalChain[];
|
|
42
|
+
predictions: FuturePrediction[];
|
|
43
|
+
warnings: FuturePrediction[];
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=temporal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"temporal.d.ts","sourceRoot":"","sources":["../../src/types/temporal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,EAAE,MAAM,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,OAAO,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,GAAG,WAAW,CAAA;IACpE,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,IAAI,CAAA;IACnB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,EAAE,CAAA;IAChB,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,EAAE,MAAM,CAAA;IACd,cAAc,EAAE,MAAM,CAAA;IACtB,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,EAAE,MAAM,CAAA;IACtB,QAAQ,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAA;IACnC,SAAS,EAAE,OAAO,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,EAAE,IAAI,CAAA;CAChB;AAED,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,OAAO,EAAE,CAAA;IACzB,cAAc,EAAE,eAAe,EAAE,CAAA;IACjC,kBAAkB,EAAE,WAAW,EAAE,CAAA;IACjC,WAAW,EAAE,gBAAgB,EAAE,CAAA;IAC/B,QAAQ,EAAE,gBAAgB,EAAE,CAAA;CAC7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"temporal.js","sourceRoot":"","sources":["../../src/types/temporal.ts"],"names":[],"mappings":""}
|
package/dist/types.d.ts
CHANGED
|
@@ -1,224 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
implicitNeeds: string[];
|
|
9
|
-
conversationPhase: ConversationPhase;
|
|
10
|
-
confidence: number;
|
|
11
|
-
analysisMethod: 'quick' | 'deep';
|
|
12
|
-
}
|
|
13
|
-
export type ResponseMode = 'listening' | 'advising' | 'informing';
|
|
14
|
-
export type ConversationPhase = 'opening' | 'exploration' | 'deep_dive' | 'conclusion' | 'follow_up';
|
|
15
|
-
export interface Entity {
|
|
16
|
-
type: string;
|
|
17
|
-
value: string;
|
|
18
|
-
confidence: number;
|
|
19
|
-
}
|
|
20
|
-
export interface Belief {
|
|
21
|
-
id: string;
|
|
22
|
-
subject: string;
|
|
23
|
-
predicate: string;
|
|
24
|
-
object: string;
|
|
25
|
-
confidence: number;
|
|
26
|
-
source: BeliefSource;
|
|
27
|
-
evidence: string[];
|
|
28
|
-
createdAt: Date;
|
|
29
|
-
updatedAt: Date;
|
|
30
|
-
}
|
|
31
|
-
export type BeliefSource = 'explicit' | 'inferred' | 'observed';
|
|
32
|
-
export interface BeliefCandidate {
|
|
33
|
-
subject: string;
|
|
34
|
-
predicate: string;
|
|
35
|
-
object: string;
|
|
36
|
-
confidence: number;
|
|
37
|
-
}
|
|
38
|
-
export type IntentionType = 'inform' | 'clarify' | 'suggest' | 'empathize' | 'challenge' | 'remind' | 'motivate';
|
|
39
|
-
export interface Intention {
|
|
40
|
-
type: IntentionType;
|
|
41
|
-
target: string;
|
|
42
|
-
priority: number;
|
|
43
|
-
reason?: string;
|
|
44
|
-
}
|
|
45
|
-
export interface CognitiveState {
|
|
46
|
-
beliefs: Belief[];
|
|
47
|
-
goals: UserGoal[];
|
|
48
|
-
workingMemory: WorkingMemoryItem[];
|
|
49
|
-
currentIntentions: Intention[];
|
|
50
|
-
emotionalContext: string;
|
|
51
|
-
attentionFocus: string[];
|
|
52
|
-
lastUpdated: Date;
|
|
53
|
-
}
|
|
54
|
-
export interface UserGoal {
|
|
55
|
-
id: string;
|
|
56
|
-
description: string;
|
|
57
|
-
priority: number;
|
|
58
|
-
progress: number;
|
|
59
|
-
deadline?: Date;
|
|
60
|
-
relatedBeliefs: string[];
|
|
61
|
-
}
|
|
62
|
-
export interface WorkingMemoryItem {
|
|
63
|
-
content: string;
|
|
64
|
-
type: 'fact' | 'context' | 'question' | 'hypothesis';
|
|
65
|
-
relevance: number;
|
|
66
|
-
timestamp: Date;
|
|
67
|
-
}
|
|
68
|
-
export interface ReasoningResult {
|
|
69
|
-
intentions: Intention[];
|
|
70
|
-
newBeliefs: Belief[];
|
|
71
|
-
hypotheses: string[];
|
|
72
|
-
questionsToAsk: string[];
|
|
73
|
-
suggestedActions: string[];
|
|
74
|
-
confidence: number;
|
|
75
|
-
}
|
|
76
|
-
export interface Episode {
|
|
77
|
-
id: string;
|
|
78
|
-
userId: string;
|
|
79
|
-
summary: string;
|
|
80
|
-
details: string;
|
|
81
|
-
participants?: string[];
|
|
82
|
-
location?: string;
|
|
83
|
-
occurredAt: Date;
|
|
84
|
-
reportedAt: Date;
|
|
85
|
-
timeContext?: string;
|
|
86
|
-
emotionalValence: number;
|
|
87
|
-
emotionalIntensity: number;
|
|
88
|
-
emotions: string[];
|
|
89
|
-
category: string;
|
|
90
|
-
tags: string[];
|
|
91
|
-
importance: number;
|
|
92
|
-
accessCount: number;
|
|
93
|
-
lastAccessed?: Date;
|
|
94
|
-
decayFactor: number;
|
|
95
|
-
relatedEpisodes?: string[];
|
|
96
|
-
embedding?: number[];
|
|
97
|
-
createdAt: Date;
|
|
98
|
-
}
|
|
99
|
-
export interface EpisodeSearchResult {
|
|
100
|
-
episode: Episode;
|
|
101
|
-
relevanceScore: number;
|
|
102
|
-
recencyScore: number;
|
|
103
|
-
importanceScore: number;
|
|
104
|
-
combinedScore: number;
|
|
105
|
-
}
|
|
106
|
-
export interface EpisodeQuery {
|
|
107
|
-
userId: string;
|
|
108
|
-
query?: string;
|
|
109
|
-
categories?: string[];
|
|
110
|
-
emotions?: string[];
|
|
111
|
-
timeRange?: {
|
|
112
|
-
from?: Date;
|
|
113
|
-
to?: Date;
|
|
114
|
-
};
|
|
115
|
-
minImportance?: number;
|
|
116
|
-
limit?: number;
|
|
117
|
-
includeDecayed?: boolean;
|
|
118
|
-
}
|
|
119
|
-
export interface EpisodicContext {
|
|
120
|
-
recentEpisodes: Episode[];
|
|
121
|
-
relevantEpisodes: Episode[];
|
|
122
|
-
emotionalPattern: string;
|
|
123
|
-
}
|
|
124
|
-
export interface ConsolidationResult {
|
|
125
|
-
decayedCount: number;
|
|
126
|
-
deletedCount: number;
|
|
127
|
-
remainingCount: number;
|
|
128
|
-
}
|
|
129
|
-
export interface BehaviorPattern {
|
|
130
|
-
id: string;
|
|
131
|
-
userId: string;
|
|
132
|
-
patternType: string;
|
|
133
|
-
description: string;
|
|
134
|
-
frequency: 'daily' | 'weekly' | 'biweekly' | 'monthly' | 'irregular';
|
|
135
|
-
occurrences: number;
|
|
136
|
-
confidence: number;
|
|
137
|
-
nextExpected?: Date;
|
|
138
|
-
createdAt: Date;
|
|
139
|
-
}
|
|
140
|
-
export interface CausalChain {
|
|
141
|
-
id: string;
|
|
142
|
-
userId: string;
|
|
143
|
-
events: string[];
|
|
144
|
-
rootCause: string;
|
|
145
|
-
finalEffect: string;
|
|
146
|
-
chainType: string;
|
|
147
|
-
confidence: number;
|
|
148
|
-
description: string;
|
|
149
|
-
}
|
|
150
|
-
export interface FuturePrediction {
|
|
151
|
-
id: string;
|
|
152
|
-
userId: string;
|
|
153
|
-
predictedState: string;
|
|
154
|
-
timeframe: string;
|
|
155
|
-
predictionType: string;
|
|
156
|
-
severity: 'low' | 'medium' | 'high';
|
|
157
|
-
isWarning: boolean;
|
|
158
|
-
recommendation?: string;
|
|
159
|
-
confidence: number;
|
|
160
|
-
isResolved: boolean;
|
|
161
|
-
wasCorrect?: boolean;
|
|
162
|
-
}
|
|
163
|
-
export interface TemporalContext {
|
|
164
|
-
recentTimeline: Episode[];
|
|
165
|
-
activePatterns: BehaviorPattern[];
|
|
166
|
-
activeCausalChains: CausalChain[];
|
|
167
|
-
predictions: FuturePrediction[];
|
|
168
|
-
warnings: FuturePrediction[];
|
|
169
|
-
}
|
|
170
|
-
export interface BanditChoice {
|
|
171
|
-
actionId: string;
|
|
172
|
-
expectedReward: number;
|
|
173
|
-
wasExploration: boolean;
|
|
174
|
-
}
|
|
175
|
-
export interface BanditParams {
|
|
176
|
-
actionId: string;
|
|
177
|
-
mu: number[];
|
|
178
|
-
sigma: number[];
|
|
179
|
-
updatedAt: Date;
|
|
180
|
-
}
|
|
181
|
-
export interface Reflection {
|
|
182
|
-
id: string;
|
|
183
|
-
type: 'observation' | 'question' | 'insight' | 'concern' | 'celebration';
|
|
184
|
-
content: string;
|
|
185
|
-
priority: number;
|
|
186
|
-
expiresAt?: Date;
|
|
187
|
-
}
|
|
188
|
-
export interface Relationship {
|
|
189
|
-
personName: string;
|
|
190
|
-
type: 'family' | 'friend' | 'colleague' | 'romantic' | 'other';
|
|
191
|
-
sentiment: number;
|
|
192
|
-
mentionCount: number;
|
|
193
|
-
context: string;
|
|
194
|
-
}
|
|
195
|
-
export interface OpenLoop {
|
|
196
|
-
id: string;
|
|
197
|
-
question: string;
|
|
198
|
-
importance: number;
|
|
199
|
-
askAfter?: Date;
|
|
200
|
-
expiresAt?: Date;
|
|
201
|
-
isAsked: boolean;
|
|
202
|
-
isClosed: boolean;
|
|
203
|
-
answerSummary?: string;
|
|
204
|
-
}
|
|
205
|
-
export interface EmotionalTrigger {
|
|
206
|
-
trigger: string;
|
|
207
|
-
category: string;
|
|
208
|
-
emotion: string;
|
|
209
|
-
intensity: number;
|
|
210
|
-
occurrenceCount: number;
|
|
211
|
-
}
|
|
212
|
-
export interface MindContext {
|
|
213
|
-
reflections: Reflection[];
|
|
214
|
-
relationships: Relationship[];
|
|
215
|
-
openLoops: OpenLoop[];
|
|
216
|
-
emotionalTriggers: EmotionalTrigger[];
|
|
217
|
-
formattedContext: string;
|
|
218
|
-
}
|
|
219
|
-
export interface InferenceRule {
|
|
220
|
-
name: string;
|
|
221
|
-
condition: (percept: Percept, beliefs: Belief[]) => boolean;
|
|
222
|
-
action: (percept: Percept) => BeliefCandidate;
|
|
223
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* All core type definitions, organized by domain.
|
|
3
|
+
*
|
|
4
|
+
* Each domain has its own file under ./types/ for maintainability.
|
|
5
|
+
* This barrel re-exports everything for backwards compatibility.
|
|
6
|
+
*/
|
|
7
|
+
export type { Percept, ResponseMode, ConversationPhase, Entity, Belief, BeliefSource, BeliefCandidate, IntentionType, Intention, CognitiveState, UserGoal, WorkingMemoryItem, ReasoningResult, InferenceRule, Episode, EpisodeSearchResult, EpisodeQuery, EpisodicContext, ConsolidationResult, Fact, FactSource, FactSearchResult, FactQuery, SemanticContext, BehaviorPattern, CausalChain, FuturePrediction, TemporalContext, BanditChoice, BanditParams, Reflection, Relationship, OpenLoop, EmotionalTrigger, MindContext, EmotionalState, EmotionSnapshot, EmotionalContext, RapportState, SocialBoundary, CommunicationPreference, SocialContext, Plan, PlanStep, PlanningContext, MetacognitiveAssessment, MetacognitiveContradiction, MetacognitiveStrategy, MetacognitiveFlagType, MetacognitiveFlag, CognitiveResponse, } from './types/index.js';
|
|
224
8
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,YAAY,EAEV,OAAO,EACP,YAAY,EACZ,iBAAiB,EACjB,MAAM,EAEN,MAAM,EACN,YAAY,EACZ,eAAe,EACf,aAAa,EACb,SAAS,EACT,cAAc,EACd,QAAQ,EACR,iBAAiB,EACjB,eAAe,EACf,aAAa,EAEb,OAAO,EACP,mBAAmB,EACnB,YAAY,EACZ,eAAe,EACf,mBAAmB,EAEnB,IAAI,EACJ,UAAU,EACV,gBAAgB,EAChB,SAAS,EACT,eAAe,EAEf,eAAe,EACf,WAAW,EACX,gBAAgB,EAChB,eAAe,EAEf,YAAY,EACZ,YAAY,EAEZ,UAAU,EACV,YAAY,EACZ,QAAQ,EACR,gBAAgB,EAChB,WAAW,EAEX,cAAc,EACd,eAAe,EACf,gBAAgB,EAEhB,YAAY,EACZ,cAAc,EACd,uBAAuB,EACvB,aAAa,EAEb,IAAI,EACJ,QAAQ,EACR,eAAe,EAEf,uBAAuB,EACvB,0BAA0B,EAC1B,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EAEjB,iBAAiB,GAClB,MAAM,kBAAkB,CAAA"}
|
package/dist/types.js
CHANGED
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}
|