paratix 0.6.0 → 0.8.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/README.md +1 -1
- package/dist/{chunk-IUY5BJHA.js → chunk-47PTUZZR.js} +2 -2
- package/dist/{chunk-ENWMSERJ.js → chunk-FFQ6FR4N.js} +121 -22
- package/dist/chunk-FFQ6FR4N.js.map +1 -0
- package/dist/{chunk-JJRF37BP.js → chunk-NRDLYHJL.js} +5 -2
- package/dist/chunk-NRDLYHJL.js.map +1 -0
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +9 -6
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/modules/index.d.ts +2 -2
- package/dist/modules/index.js +2 -2
- package/dist/{types-BPzPHfax.d.ts → types-Cl2Muw1x.d.ts} +2 -0
- package/dist/{user-CiAMlpWO.d.ts → user-BJMqDePy.d.ts} +1 -1
- package/llm-guide.md +1 -1
- package/package.json +1 -1
- package/dist/chunk-ENWMSERJ.js.map +0 -1
- package/dist/chunk-JJRF37BP.js.map +0 -1
- /package/dist/{chunk-IUY5BJHA.js.map → chunk-47PTUZZR.js.map} +0 -0
|
@@ -54,6 +54,8 @@ type ModuleResult = {
|
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
56
|
_stopRun?: true;
|
|
57
|
+
/** Optional short detail appended to the printed module status line. */
|
|
58
|
+
detail?: string;
|
|
57
59
|
/** Optional error details consumed by the runner for centralized CLI output. */
|
|
58
60
|
error?: Error;
|
|
59
61
|
/** Optional typed meta entries for env propagation and runner control-plane updates. */
|
package/llm-guide.md
CHANGED
|
@@ -239,7 +239,7 @@ Import with renaming: `import { package as pkg } from "paratix/modules"`. The wo
|
|
|
239
239
|
| Method | Signature | Idempotent |
|
|
240
240
|
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------- |
|
|
241
241
|
| `quadlet.container` | `(options: { addCapability?: string[]; addDevice?: string[]; annotation?: Record<string, string>; autoUpdate?: "local" \| "registry"; containerName?: string; description?: string; dns?: string[]; dnsOption?: string[]; dnsSearch?: string[]; dropCapability?: string[]; entrypoint?: string[]; environment?: Record<string, string>; environmentFiles?: string[]; exec?: string[]; exposeHostPort?: string[]; groupAdd?: string[]; healthCmd?: string; healthInterval?: string; healthOnFailure?: "kill" \| "none" \| "restart" \| "stop"; healthRetries?: number; healthStartPeriod?: string; healthTimeout?: string; hostName?: string; image: string; ip?: string; ip6?: string; label?: Record<string, string>; logDriver?: string; mask?: string[]; mount?: string[]; name: string; networks?: string[]; noNewPrivileges?: boolean; notify?: boolean; podmanArgs?: string[]; publishPorts?: string[]; pull?: "always" \| "missing" \| "never" \| "newer"; readOnly?: boolean; restart?: "always" \| "no" \| "on-abnormal" \| "on-abort" \| "on-failure" \| "on-success" \| "on-watchdog"; runInit?: boolean; secret?: string[]; seccompProfile?: string; securityLabelDisable?: boolean; securityLabelType?: string; stopTimeout?: number; sysctl?: Record<string, string>; timeoutStartSec?: number; timeoutStopSec?: number; timezone?: string; tmpfs?: string[]; ulimit?: string[]; unmask?: string[]; user?: string; userNs?: string; volumes?: string[]; wantedBy?: string; workingDir?: string }): Module` | Yes |
|
|
242
|
-
| `quadlet.updateImage` | `(options: { authFile?: string; image: string; name: string; serviceName?: string }): Module`
|
|
242
|
+
| `quadlet.updateImage` | `(options: { authFile?: string; image: string; name: string; serviceName?: string }): Module` — returns `changed` with the new registry digest (or local image ID fallback) in parentheses when a newer image was pulled | Partial |
|
|
243
243
|
|
|
244
244
|
### `releaseUpgrade`
|
|
245
245
|
|