@h-rig/task-sources-plugin 0.0.6-alpha.157 → 0.0.6-alpha.159

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 (51) hide show
  1. package/dist/src/control-plane/native/github-token-env.d.ts +3 -0
  2. package/dist/src/control-plane/native/github-token-env.js +26 -0
  3. package/dist/src/control-plane/native/native-git.d.ts +18 -0
  4. package/dist/src/control-plane/native/native-git.js +291 -0
  5. package/dist/src/control-plane/native/runtime-binary-build.d.ts +9 -0
  6. package/dist/src/control-plane/native/runtime-binary-build.js +107 -0
  7. package/dist/src/control-plane/native/task-ops.d.ts +52 -0
  8. package/dist/src/control-plane/native/task-ops.js +3192 -0
  9. package/dist/src/control-plane/native/task-state.d.ts +30 -0
  10. package/dist/src/control-plane/native/task-state.js +944 -0
  11. package/dist/src/control-plane/native/utils.d.ts +7 -0
  12. package/dist/src/control-plane/native/utils.js +110 -0
  13. package/dist/src/control-plane/native/validator-binaries.d.ts +3 -0
  14. package/dist/src/control-plane/native/validator-binaries.js +175 -0
  15. package/dist/src/control-plane/native/validator.d.ts +44 -0
  16. package/dist/src/control-plane/native/validator.js +979 -0
  17. package/dist/src/control-plane/state-sync/index.d.ts +4 -0
  18. package/dist/src/control-plane/state-sync/index.js +1205 -0
  19. package/dist/src/control-plane/state-sync/native-git.d.ts +1 -0
  20. package/dist/src/control-plane/state-sync/native-git.js +281 -0
  21. package/dist/src/control-plane/state-sync/read.d.ts +46 -0
  22. package/dist/src/control-plane/state-sync/read.js +564 -0
  23. package/dist/src/control-plane/state-sync/reconcile.d.ts +28 -0
  24. package/dist/src/control-plane/state-sync/reconcile.js +260 -0
  25. package/dist/src/control-plane/state-sync/repo.d.ts +1 -0
  26. package/dist/src/control-plane/state-sync/repo.js +42 -0
  27. package/dist/src/control-plane/state-sync/types.d.ts +28 -0
  28. package/dist/src/control-plane/state-sync/types.js +111 -0
  29. package/dist/src/control-plane/state-sync/write.d.ts +83 -0
  30. package/dist/src/control-plane/state-sync/write.js +1165 -0
  31. package/dist/src/control-plane/task-data-service.d.ts +17 -0
  32. package/dist/src/control-plane/task-data-service.js +3653 -0
  33. package/dist/src/control-plane/task-fields.d.ts +1 -0
  34. package/dist/src/control-plane/task-fields.js +6 -0
  35. package/dist/src/control-plane/task-io-service.d.ts +6 -0
  36. package/dist/src/control-plane/task-io-service.js +108 -0
  37. package/dist/src/control-plane/task-source-bootstrap.d.ts +1 -0
  38. package/dist/src/control-plane/task-source-bootstrap.js +6 -0
  39. package/dist/src/control-plane/task-source.d.ts +2 -0
  40. package/dist/src/control-plane/task-source.js +6 -0
  41. package/dist/src/control-plane/tasks/legacy-task-config-source.d.ts +19 -0
  42. package/dist/src/control-plane/tasks/legacy-task-config-source.js +124 -0
  43. package/dist/src/control-plane/tasks/plugin-task-source.d.ts +30 -0
  44. package/dist/src/control-plane/tasks/plugin-task-source.js +99 -0
  45. package/dist/src/control-plane/tasks/source-aware-task-config-source.d.ts +28 -0
  46. package/dist/src/control-plane/tasks/source-aware-task-config-source.js +642 -0
  47. package/dist/src/control-plane/tasks/source-lifecycle.d.ts +56 -0
  48. package/dist/src/control-plane/tasks/source-lifecycle.js +834 -0
  49. package/dist/src/plugin.d.ts +1 -1
  50. package/dist/src/plugin.js +3927 -64
  51. package/package.json +57 -4
@@ -0,0 +1,17 @@
1
+ /**
2
+ * TASK-DATA capability impl.
3
+ *
4
+ * Assembles the task-DATA reads / task-command behaviours this plugin owns into
5
+ * the single `TaskDataService` the contracts seam describes. The plugin
6
+ * `defineCapability(TASK_DATA_SERVICE_CAPABILITY).provide`s this, and substrate
7
+ * consumers (lifecycle, scheduler, isolation, repos, workspace, cli-surface)
8
+ * resolve it off the plugin host instead of importing these modules directly —
9
+ * the SEAM-ONLY replacement for the cross-plugin
10
+ * `import("@rig/task-sources-plugin/control-plane/...")` impl imports.
11
+ *
12
+ * The service is stateless (every method is keyed by `projectRoot`), so the
13
+ * boot wiring installs it as a synchronous singleton.
14
+ */
15
+ import type { TaskDataService } from "@rig/contracts";
16
+ /** Build the single `TaskDataService` impl from this plugin's owned modules. */
17
+ export declare function createTaskDataService(): TaskDataService;