@manojkmfsi/monodog 1.1.43 → 1.1.44

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @manojkmfsi/monoapp
2
2
 
3
+ ## 1.1.44
4
+
5
+ ### Patch Changes
6
+
7
+ - final commit
8
+
3
9
  ## 1.1.43
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -38,7 +38,6 @@ Install monodog in a monorepo workspace root:
38
38
 
39
39
  pnpm dlx @mindfiredigital/monodog
40
40
 
41
-
42
41
  Run app using serve script:
43
42
 
44
43
  cd ./monodog/ && npm run serve
@@ -62,4 +61,19 @@ Run app using serve script:
62
61
  | **GET** | `/auth/validate` | Validate current session token status. | Persistent |
63
62
  | **GET** | `/auth/logout` | Invalidate session and clear authentication token. | Session termination |
64
63
  | **POST** | `/auth/refresh` | Extend session token validity period. | Session update |
65
-
64
+ | **GET** | `/api/publish/packages` | (Publish API) List workspace packages available for publishing. | Persistent |
65
+ | **GET** | `/api/publish/changesets` | Retrieve existing unpublished changesets. | Persistent |
66
+ | **POST** | `/api/publish/preview` | Preview a publish plan (version bumps, affected packages). | Generated data |
67
+ | **POST** | `/api/publish/changesets` | Create a new changeset (write permission required). | Triggers write |
68
+ | **GET** | `/api/publish/status` | Check readiness for publishing (clean tree, CI status, etc.). | Persistent |
69
+ | **POST** | `/api/publish/trigger` | Trigger a publishing workflow for selected packages. | Triggers CI/CD |
70
+ | **GET** | `/api/pipelines` | (Pipelines API) Retrieve recent pipeline records used by the dashboard. | Persistent |
71
+ | **PUT** | `/api/pipelines/:pipelineId/status` | Update a pipeline's status from GitHub workflow. | Triggers write |
72
+ | **GET** | `/api/pipelines/:pipelineId/audit-logs` | Retrieve audit history for a pipeline.
73
+ | **GET** | `/api/workflows/:owner/:repo/available` | List workflows configured in a repo. | Generated data |
74
+ | **GET** | `/api/workflows/:owner/:repo` | Fetch recent workflow runs for a repo. | Generated data |
75
+ | **GET** | `/api/workflows/:owner/:repo/runs/:runId` | Get details (with jobs) for a specific run. | Generated data |
76
+ | **GET** | `/api/workflows/:owner/:repo/jobs/:jobId/logs` | Get raw job logs text. | Generated data |
77
+ | **POST** | `/api/workflows/:owner/:repo/trigger` | Start a repository workflow run. | Triggers workflow |
78
+ | **POST** | `/api/workflows/:owner/:repo/runs/:runId/cancel` | Cancel an in-progress run. | Triggers action |
79
+ | **POST** | `/api/workflows/:owner/:repo/runs/:runId/rerun` | Rerun a completed workflow. | Triggers action |