@lssm/lib.contracts 0.0.0-canary-20251220002821 → 0.0.0-canary-20251220015515
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/app-config/contracts.d.ts +50 -50
- package/dist/app-config/events.d.ts +27 -27
- package/dist/app-config/lifecycle-contracts.d.ts +80 -80
- package/dist/integrations/contracts.d.ts +102 -102
- package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
- package/dist/jsonschema.d.ts +2 -2
- package/dist/jsonschema.js +1 -1
- package/dist/knowledge/contracts.d.ts +66 -66
- package/dist/ownership.d.ts +2 -0
- package/dist/ownership.js +1 -0
- package/dist/presentations.d.ts +2 -2
- package/dist/promptRegistry.js +2 -2
- package/package.json +5 -5
package/dist/ownership.js
CHANGED
|
@@ -13,6 +13,7 @@ const OwnersEnum = {
|
|
|
13
13
|
ProductArtisanos: "product.artisanos",
|
|
14
14
|
PlatformSigil: "platform.sigil",
|
|
15
15
|
PlatformMarketplace: "platform.marketplace",
|
|
16
|
+
PlatformMessaging: "platform.messaging",
|
|
16
17
|
PlatformContent: "platform.content",
|
|
17
18
|
PlatformFeatureFlags: "platform.featureflags",
|
|
18
19
|
PlatformFinance: "platform.finance"
|
package/dist/presentations.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ declare class PresentationRegistry {
|
|
|
62
62
|
declare function jsonSchemaForPresentation(p: PresentationSpec): {
|
|
63
63
|
framework: "react";
|
|
64
64
|
componentKey: string;
|
|
65
|
-
props: z.core.ZodStandardJSONSchemaPayload<_lssm_lib_schema89.TopLevelZodFromModel<_lssm_lib_schema89.SchemaModelFieldsAnyConfig<_lssm_lib_schema89.AnyFieldType | _lssm_lib_schema89.AnyEnumType
|
|
65
|
+
props: z.core.ZodStandardJSONSchemaPayload<_lssm_lib_schema89.TopLevelZodFromModel<_lssm_lib_schema89.SchemaModelFieldsAnyConfig<AnySchemaModel | _lssm_lib_schema89.AnyFieldType | _lssm_lib_schema89.AnyEnumType>>>;
|
|
66
66
|
meta: {
|
|
67
67
|
readonly name: string;
|
|
68
68
|
readonly version: number;
|
|
@@ -84,7 +84,7 @@ declare function jsonSchemaForPresentation(p: PresentationSpec): {
|
|
|
84
84
|
kind: PresentationKind;
|
|
85
85
|
} | {
|
|
86
86
|
mimeType: string;
|
|
87
|
-
model: z.core.ZodStandardJSONSchemaPayload<_lssm_lib_schema89.TopLevelZodFromModel<_lssm_lib_schema89.SchemaModelFieldsAnyConfig<_lssm_lib_schema89.AnyFieldType | _lssm_lib_schema89.AnyEnumType
|
|
87
|
+
model: z.core.ZodStandardJSONSchemaPayload<_lssm_lib_schema89.TopLevelZodFromModel<_lssm_lib_schema89.SchemaModelFieldsAnyConfig<AnySchemaModel | _lssm_lib_schema89.AnyFieldType | _lssm_lib_schema89.AnyEnumType>>>;
|
|
88
88
|
meta: {
|
|
89
89
|
readonly name: string;
|
|
90
90
|
readonly version: number;
|
package/dist/promptRegistry.js
CHANGED
|
@@ -5,7 +5,7 @@ var PromptRegistry = class {
|
|
|
5
5
|
prompts = /* @__PURE__ */ new Map();
|
|
6
6
|
/** Register a prompt. Throws on duplicate name+version. */
|
|
7
7
|
register(p) {
|
|
8
|
-
const key = `${p.meta.name}
|
|
8
|
+
const key = `${p.meta.name}-v${p.meta.version}`;
|
|
9
9
|
if (this.prompts.has(key)) throw new Error(`Duplicate prompt ${key}`);
|
|
10
10
|
this.prompts.set(key, p);
|
|
11
11
|
return this;
|
|
@@ -16,7 +16,7 @@ var PromptRegistry = class {
|
|
|
16
16
|
}
|
|
17
17
|
/** Get prompt by name; when version omitted, returns highest version. */
|
|
18
18
|
get(name, version) {
|
|
19
|
-
if (version != null) return this.prompts.get(`${name}
|
|
19
|
+
if (version != null) return this.prompts.get(`${name}-v${version}`);
|
|
20
20
|
let candidate;
|
|
21
21
|
let max = -Infinity;
|
|
22
22
|
for (const [k, p] of this.prompts.entries()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.contracts",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251220015515",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
6
6
|
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"test": "bun run"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
20
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
19
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251220015515",
|
|
20
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251220015515",
|
|
21
21
|
"@types/express": "^5.0.3",
|
|
22
22
|
"@types/turndown": "^5.0.6",
|
|
23
23
|
"tsdown": "^0.18.1",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@elevenlabs/elevenlabs-js": "^2.27.0",
|
|
36
36
|
"@google-cloud/secret-manager": "^6.1.1",
|
|
37
37
|
"@google-cloud/storage": "^7.18.0",
|
|
38
|
-
"@lssm/lib.logger": "0.0.0-canary-
|
|
39
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
38
|
+
"@lssm/lib.logger": "0.0.0-canary-20251220015515",
|
|
39
|
+
"@lssm/lib.schema": "0.0.0-canary-20251220015515",
|
|
40
40
|
"@mistralai/mistralai": "^1.11.0",
|
|
41
41
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
42
42
|
"@qdrant/js-client-rest": "^1.16.2",
|