@meshmakers/octo-services 3.4.380 → 3.4.410

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/octo-services",
3
- "version": "3.4.380",
3
+ "version": "3.4.410",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0",
@@ -52753,12 +52753,12 @@ declare class CommunicationService {
52753
52753
  deployPipelineDefinition(tenantId: string, adapterRtId: string, adapterCkTypeId: string, pipelineRtId: string, pipelineCkTypeId: string, pipelineDefinition: string | null): Promise<void>;
52754
52754
  /**
52755
52755
  * Enables or disables debug capture for a pipeline via the dedicated debug
52756
- * endpoint (`PATCH /pipeline/{id}/debug`). Unlike a pipeline (re)deploy
52757
- * which force-enables debugging on every deploy this persists the flag
52758
- * EXACTLY as requested and re-pushes the running adapter without
52759
- * force-enabling, so both enable and disable take effect immediately.
52760
- * `appliedToRunningAdapter` is false when the owning adapter is offline (the
52761
- * flag is still persisted and applies on the next deploy).
52756
+ * endpoint (`PATCH /pipeline/{id}/debug`). This is the ONLY way debug capture
52757
+ * is toggled (AB#4364): deploying a pipeline pushes the persisted flag as-is
52758
+ * and never changes it. The endpoint persists the flag exactly as requested
52759
+ * and re-pushes the running adapter, so both enable and disable take effect
52760
+ * immediately. `appliedToRunningAdapter` is false when the owning adapter is
52761
+ * offline (the flag is still persisted and applies on the next deploy).
52762
52762
  */
52763
52763
  setPipelineDebugging(tenantId: string, pipelineRtId: string, enabled: boolean): Promise<SetPipelineDebugResultDto | null>;
52764
52764
  /**