@treeseed/sdk 0.8.8 → 0.8.10

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.
Files changed (31) hide show
  1. package/dist/control-plane-client.d.ts +1 -1
  2. package/dist/d1-store.d.ts +5 -5
  3. package/dist/d1-store.js +24 -24
  4. package/dist/db/d1.d.ts +102 -0
  5. package/dist/db/node-sqlite.d.ts +102 -0
  6. package/dist/db/schema.d.ts +204 -0
  7. package/dist/db/schema.js +9 -0
  8. package/dist/index.d.ts +4 -4
  9. package/dist/index.js +22 -22
  10. package/dist/operations/services/d1-migration.js +10 -2
  11. package/dist/operations/services/github-automation.js +1 -1
  12. package/dist/operations/services/hosting-audit.d.ts +2 -1
  13. package/dist/operations/services/hosting-audit.js +18 -15
  14. package/dist/operations/services/hub-provider-launch.d.ts +3 -3
  15. package/dist/operations/services/hub-provider-launch.js +16 -16
  16. package/dist/operations/services/{knowledge-coop-packaging.d.ts → market-packaging.d.ts} +13 -13
  17. package/dist/operations/services/{knowledge-coop-packaging.js → market-packaging.js} +10 -10
  18. package/dist/operations/services/project-platform.d.ts +32 -0
  19. package/dist/operations/services/project-platform.js +91 -1
  20. package/dist/platform/books-data.js +2 -2
  21. package/dist/platform/contracts.d.ts +53 -31
  22. package/dist/platform/utils/site-config-schema.js +120 -52
  23. package/dist/{knowledge-coop.d.ts → project-workflow.d.ts} +15 -15
  24. package/dist/{knowledge-coop.js → project-workflow.js} +15 -15
  25. package/dist/scripts/tenant-d1-migrate-local.js +1 -0
  26. package/dist/sdk.d.ts +1 -1
  27. package/dist/stores/{knowledge-coop-store.d.ts → project-workflow-store.d.ts} +3 -3
  28. package/dist/stores/{knowledge-coop-store.js → project-workflow-store.js} +4 -4
  29. package/dist/workflow/operations.js +6 -6
  30. package/dist/workflow-state.js +2 -2
  31. package/package.json +1 -1
@@ -703,8 +703,8 @@ function resolveTreeseedWorkflowState(cwd, options = {}) {
703
703
  state.marketConnection.verificationPosture = state.readiness.local.ready ? "ready" : state.files.machineConfig ? "blocked" : "pending";
704
704
  const registrationRequired = state.marketConnection.runtimeRegistration === "required";
705
705
  state.marketConnection.approvalBlockers = [
706
- ...registrationRequired && !state.marketConnection.configured ? ["Knowledge Coop runtime attachment is not configured."] : [],
707
- ...registrationRequired && !state.marketConnection.runtimeReady ? ["Knowledge Coop runtime credential is missing or not ready."] : []
706
+ ...registrationRequired && !state.marketConnection.configured ? ["TreeSeed runtime attachment is not configured."] : [],
707
+ ...registrationRequired && !state.marketConnection.runtimeReady ? ["TreeSeed runtime credential is missing or not ready."] : []
708
708
  ];
709
709
  state.recommendations = recommendTreeseedNextSteps(state);
710
710
  return state;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treeseed/sdk",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "Shared Treeseed SDK for content-backed and D1-backed object models.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {