@parallelworks/client 7.95.1 → 7.96.1
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/dist/types/api.d.ts +6 -0
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -26192,6 +26192,8 @@ export interface components {
|
|
|
26192
26192
|
useTLS?: boolean;
|
|
26193
26193
|
/** @description Target a specific compute worker by ID (Mode B). */
|
|
26194
26194
|
workerId?: string;
|
|
26195
|
+
/** @description For endpoint sessions, the slug of the workflow run launching the session (PW_RUN_SLUG inside a run). The session inherits that run's icon when the run belongs to the caller and the request is not already authenticated with the run's own token; otherwise it is ignored. */
|
|
26196
|
+
workflowRun?: string;
|
|
26195
26197
|
};
|
|
26196
26198
|
PostSkuBody: {
|
|
26197
26199
|
/** @description SKU code (e.g., SLURM_NODE_HOUR) */
|
|
@@ -27514,6 +27516,8 @@ export interface components {
|
|
|
27514
27516
|
* @enum {string}
|
|
27515
27517
|
*/
|
|
27516
27518
|
type: "endpoint";
|
|
27519
|
+
/** @description Slug of the workflow run launching the endpoint (PW_RUN_SLUG inside a run). The endpoint inherits that run's icon when the run belongs to the caller and the request is not already authenticated with the run's own token; otherwise it is ignored. */
|
|
27520
|
+
workflowRun?: string;
|
|
27517
27521
|
};
|
|
27518
27522
|
PutSlackConfigInputBody: {
|
|
27519
27523
|
/** @description Slack incoming webhook URL. Stored as a credential and never returned. */
|
|
@@ -31361,6 +31365,8 @@ export interface operations {
|
|
|
31361
31365
|
skip?: number;
|
|
31362
31366
|
/** @description Case-insensitive search across message, path, user, and request ID */
|
|
31363
31367
|
search?: string;
|
|
31368
|
+
/** @description Only include errors created at or after this time (RFC3339). */
|
|
31369
|
+
since?: string;
|
|
31364
31370
|
};
|
|
31365
31371
|
header?: never;
|
|
31366
31372
|
path?: never;
|