@lssm/lib.contracts 0.0.0-canary-20251221165922 → 0.0.0-canary-20251221193616
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/data-views/data-views.js +2 -5
- package/dist/features.js +2 -5
- package/dist/integrations/openbanking/models.d.ts +55 -55
- package/dist/integrations/operations.d.ts +102 -102
- package/dist/jsonschema.d.ts +3 -3
- package/dist/knowledge/operations.d.ts +66 -66
- package/dist/onboarding-base.d.ts +29 -29
- package/dist/operations/registry.d.ts +0 -1
- package/dist/operations/registry.js +2 -16
- package/dist/presentations/presentations.d.ts +3 -3
- package/dist/presentations/presentations.js +2 -5
- package/dist/workflow/spec.js +2 -5
- package/dist/workspace-config/contractsrc-schema.d.ts +1 -1
- package/package.json +5 -5
package/dist/workflow/spec.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { init_registry_utils, registry_utils_exports } from "../registry-utils.js";
|
|
1
|
+
import { filterBy, getUniqueTags, groupBy, init_registry_utils } from "../registry-utils.js";
|
|
3
2
|
|
|
4
3
|
//#region src/workflow/spec.ts
|
|
4
|
+
init_registry_utils();
|
|
5
5
|
function workflowKey(meta) {
|
|
6
6
|
return `${meta.name}.v${meta.version}`;
|
|
7
7
|
}
|
|
@@ -31,7 +31,6 @@ var WorkflowRegistry = class {
|
|
|
31
31
|
}
|
|
32
32
|
/** Filter workflows by criteria. */
|
|
33
33
|
filter(criteria) {
|
|
34
|
-
const { filterBy } = (init_registry_utils(), __toCommonJS(registry_utils_exports));
|
|
35
34
|
return filterBy(this.list(), criteria);
|
|
36
35
|
}
|
|
37
36
|
/** List workflows with specific tag. */
|
|
@@ -44,12 +43,10 @@ var WorkflowRegistry = class {
|
|
|
44
43
|
}
|
|
45
44
|
/** Group workflows by key function. */
|
|
46
45
|
groupBy(keyFn) {
|
|
47
|
-
const { groupBy } = (init_registry_utils(), __toCommonJS(registry_utils_exports));
|
|
48
46
|
return groupBy(this.list(), keyFn);
|
|
49
47
|
}
|
|
50
48
|
/** Get unique tags from all workflows. */
|
|
51
49
|
getUniqueTags() {
|
|
52
|
-
const { getUniqueTags } = (init_registry_utils(), __toCommonJS(registry_utils_exports));
|
|
53
50
|
return getUniqueTags(this.list());
|
|
54
51
|
}
|
|
55
52
|
};
|
|
@@ -180,9 +180,9 @@ declare const ContractsrcSchema: z$1.ZodObject<{
|
|
|
180
180
|
}>>;
|
|
181
181
|
aiModel: z$1.ZodOptional<z$1.ZodString>;
|
|
182
182
|
agentMode: z$1.ZodDefault<z$1.ZodEnum<{
|
|
183
|
-
"claude-code": "claude-code";
|
|
184
183
|
simple: "simple";
|
|
185
184
|
cursor: "cursor";
|
|
185
|
+
"claude-code": "claude-code";
|
|
186
186
|
"openai-codex": "openai-codex";
|
|
187
187
|
}>>;
|
|
188
188
|
customEndpoint: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
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-20251221193616",
|
|
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-20251221193616",
|
|
20
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251221193616",
|
|
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-20251221193616",
|
|
39
|
+
"@lssm/lib.schema": "0.0.0-canary-20251221193616",
|
|
40
40
|
"@mistralai/mistralai": "^1.11.0",
|
|
41
41
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
42
42
|
"@qdrant/js-client-rest": "^1.16.2",
|