@elevasis/sdk 1.8.3 → 1.10.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/cli.cjs +495 -153
- package/dist/index.d.ts +2 -0
- package/dist/test-utils/index.d.ts +8273 -0
- package/dist/test-utils/index.js +20070 -0
- package/dist/types/worker/index.d.ts +20 -1
- package/dist/worker/index.js +3 -2
- package/package.json +8 -2
- package/reference/_navigation.md +15 -1
- package/reference/_reference-manifest.json +56 -0
- package/reference/claude-config/sync-notes/2026-04-24-test-utils-and-template-tests.md +73 -0
- package/reference/claude-config/sync-notes/2026-04-24-ui-consolidation-and-sdk-cli-train.md +86 -0
- package/reference/deployment/index.mdx +42 -7
- package/reference/examples/organization-model.ts +689 -0
- package/reference/index.mdx +6 -5
- package/reference/packages/core/src/test-utils/README.md +5 -10
- package/reference/packages/ui/src/test-utils/README.md +5 -0
- package/reference/scaffold/operations/workflow-recipes.md +94 -1
- package/reference/scaffold/recipes/add-a-feature.md +4 -4
- package/reference/scaffold/recipes/add-a-resource.md +1 -1
- package/reference/scaffold/recipes/customize-organization-model.md +2 -2
- package/reference/scaffold/recipes/gate-by-feature-or-admin.md +2 -2
- package/reference/claude-config/commands/submit-request.md +0 -11
package/dist/index.d.ts
CHANGED
|
@@ -6770,6 +6770,7 @@ declare const ProjectSchemas: {
|
|
|
6770
6770
|
status_update: "status_update";
|
|
6771
6771
|
issue: "issue";
|
|
6772
6772
|
blocker: "blocker";
|
|
6773
|
+
agent_learning: "agent_learning";
|
|
6773
6774
|
}>>;
|
|
6774
6775
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6775
6776
|
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6784,6 +6785,7 @@ declare const ProjectSchemas: {
|
|
|
6784
6785
|
status_update: "status_update";
|
|
6785
6786
|
issue: "issue";
|
|
6786
6787
|
blocker: "blocker";
|
|
6788
|
+
agent_learning: "agent_learning";
|
|
6787
6789
|
}>>;
|
|
6788
6790
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6789
6791
|
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|