@synsci/sdk 2.0.2-test.35.1 → 2.0.2-test.36.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.
@@ -257,14 +257,14 @@ export declare class Jobs extends HeyApiClient {
257
257
  /**
258
258
  * List local and remote compute jobs
259
259
  */
260
- list<ThrowOnError extends boolean = false>(parameters: {
261
- directory: string;
260
+ list<ThrowOnError extends boolean = false>(parameters?: {
261
+ directory?: string;
262
262
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsComputeJobsListResponses, unknown, ThrowOnError, "fields">;
263
263
  /**
264
264
  * Start a local, SSH, Slurm, or PBS compute job
265
265
  */
266
- start<ThrowOnError extends boolean = false>(parameters: {
267
- directory: string;
266
+ start<ThrowOnError extends boolean = false>(parameters?: {
267
+ directory?: string;
268
268
  name?: string;
269
269
  command?: string;
270
270
  cwd?: string;
@@ -289,22 +289,22 @@ export declare class Jobs extends HeyApiClient {
289
289
  /**
290
290
  * Clear completed compute jobs
291
291
  */
292
- clear<ThrowOnError extends boolean = false>(parameters: {
293
- directory: string;
292
+ clear<ThrowOnError extends boolean = false>(parameters?: {
293
+ directory?: string;
294
294
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsComputeJobsClearResponses, unknown, ThrowOnError, "fields">;
295
295
  /**
296
296
  * Read a compute job log
297
297
  */
298
298
  log<ThrowOnError extends boolean = false>(parameters: {
299
299
  id: string;
300
- directory: string;
300
+ directory?: string;
301
301
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsComputeJobsLogResponses, SettingsComputeJobsLogErrors, ThrowOnError, "fields">;
302
302
  /**
303
303
  * Cancel a compute job
304
304
  */
305
305
  cancel<ThrowOnError extends boolean = false>(parameters: {
306
306
  id: string;
307
- directory: string;
307
+ directory?: string;
308
308
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsComputeJobsCancelResponses, SettingsComputeJobsCancelErrors, ThrowOnError, "fields">;
309
309
  }
310
310
  export declare class Compute extends HeyApiClient {
@@ -2855,8 +2855,8 @@ export type SettingsComputeEndpointRemoveResponse = SettingsComputeEndpointRemov
2855
2855
  export type SettingsComputeJobsListData = {
2856
2856
  body?: never;
2857
2857
  path?: never;
2858
- query: {
2859
- directory: string;
2858
+ query?: {
2859
+ directory?: string;
2860
2860
  };
2861
2861
  url: "/settings/compute/jobs";
2862
2862
  };
@@ -3183,8 +3183,8 @@ export type SettingsComputeJobsStartData = {
3183
3183
  checkpoint?: string;
3184
3184
  };
3185
3185
  path?: never;
3186
- query: {
3187
- directory: string;
3186
+ query?: {
3187
+ directory?: string;
3188
3188
  };
3189
3189
  url: "/settings/compute/jobs";
3190
3190
  };
@@ -3497,8 +3497,8 @@ export type SettingsComputeJobsStartResponse = SettingsComputeJobsStartResponses
3497
3497
  export type SettingsComputeJobsClearData = {
3498
3498
  body?: never;
3499
3499
  path?: never;
3500
- query: {
3501
- directory: string;
3500
+ query?: {
3501
+ directory?: string;
3502
3502
  };
3503
3503
  url: "/settings/compute/jobs/completed";
3504
3504
  };
@@ -3516,8 +3516,8 @@ export type SettingsComputeJobsLogData = {
3516
3516
  path: {
3517
3517
  id: string;
3518
3518
  };
3519
- query: {
3520
- directory: string;
3519
+ query?: {
3520
+ directory?: string;
3521
3521
  };
3522
3522
  url: "/settings/compute/jobs/{id}/log";
3523
3523
  };
@@ -3542,8 +3542,8 @@ export type SettingsComputeJobsCancelData = {
3542
3542
  path: {
3543
3543
  id: string;
3544
3544
  };
3545
- query: {
3546
- directory: string;
3545
+ query?: {
3546
+ directory?: string;
3547
3547
  };
3548
3548
  url: "/settings/compute/jobs/{id}/cancel";
3549
3549
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@synsci/sdk",
4
- "version": "2.0.2-test.35.1",
4
+ "version": "2.0.2-test.36.1",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {