@sidurijs/core 1.0.2 → 1.0.4
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/dist/memory-settler.d.ts +5 -0
- package/dist/memory-settler.js +21 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export interface RetrievalPlan {
|
|
|
77
77
|
}
|
|
78
78
|
export interface PersonaCompilationResult {
|
|
79
79
|
isValid: boolean;
|
|
80
|
+
greeting?: string;
|
|
80
81
|
manifest: {
|
|
81
82
|
specVersion?: string;
|
|
82
83
|
kind?: 'self';
|
|
@@ -88,6 +89,7 @@ export interface PersonaCompilationResult {
|
|
|
88
89
|
url?: string;
|
|
89
90
|
signature?: string;
|
|
90
91
|
};
|
|
92
|
+
greeting?: string;
|
|
91
93
|
identity: {
|
|
92
94
|
name: string;
|
|
93
95
|
archetype?: string;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated RFC VX-26-13: Deconstructing Memory into Sovereign Primitives.
|
|
19
|
+
* Use `@sidurijs/core/interaction-settler` instead.
|
|
20
|
+
*/
|
|
21
|
+
__exportStar(require("./interaction-settler"), exports);
|
package/package.json
CHANGED