@synsci/sdk 2.0.51 → 2.0.52

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.
@@ -363,6 +363,7 @@ export declare class Jobs extends HeyApiClient {
363
363
  secret_refs?: Array<"nvidia_nim" | "nvidia_ngc">;
364
364
  approval?: string;
365
365
  sessionID: string;
366
+ default_uploads?: boolean;
366
367
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsComputeJobsStartResponses, SettingsComputeJobsStartErrors, ThrowOnError, "fields">;
367
368
  /**
368
369
  * Prepare an exact remote run plan for approval
@@ -399,6 +400,7 @@ export declare class Jobs extends HeyApiClient {
399
400
  secret_refs?: Array<"nvidia_nim" | "nvidia_ngc">;
400
401
  approval?: string;
401
402
  sessionID: string;
403
+ default_uploads?: boolean;
402
404
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsComputeJobsPlanResponses, SettingsComputeJobsPlanErrors, ThrowOnError, "fields">;
403
405
  /**
404
406
  * Clear completed compute jobs
@@ -716,6 +718,7 @@ export declare class Project2 extends HeyApiClient {
716
718
  */
717
719
  start?: string;
718
720
  };
721
+ archived?: boolean;
719
722
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<ProjectUpdateResponses, ProjectUpdateErrors, ThrowOnError, "fields">;
720
723
  private _trust?;
721
724
  get trust(): Trust;
@@ -666,6 +666,7 @@ export class Jobs extends HeyApiClient {
666
666
  { in: "body", key: "secret_refs" },
667
667
  { in: "body", key: "approval" },
668
668
  { in: "body", key: "sessionID" },
669
+ { in: "body", key: "default_uploads" },
669
670
  ],
670
671
  },
671
672
  ]);
@@ -705,6 +706,7 @@ export class Jobs extends HeyApiClient {
705
706
  { in: "body", key: "secret_refs" },
706
707
  { in: "body", key: "approval" },
707
708
  { in: "body", key: "sessionID" },
709
+ { in: "body", key: "default_uploads" },
708
710
  ],
709
711
  },
710
712
  ]);
@@ -1329,6 +1331,7 @@ export class Project2 extends HeyApiClient {
1329
1331
  { in: "body", key: "name" },
1330
1332
  { in: "body", key: "icon" },
1331
1333
  { in: "body", key: "commands" },
1334
+ { in: "body", key: "archived" },
1332
1335
  ],
1333
1336
  },
1334
1337
  ]);
@@ -21,6 +21,7 @@ export type Project = {
21
21
  created: number;
22
22
  updated: number;
23
23
  initialized?: number;
24
+ archived?: number;
24
25
  };
25
26
  sandboxes: Array<string>;
26
27
  };
@@ -2735,6 +2736,9 @@ export type SettingsStorageUsageResponses = {
2735
2736
  state_dir: string;
2736
2737
  pointer: string | null;
2737
2738
  total_bytes: number;
2739
+ scanning: boolean;
2740
+ updated_at: string | null;
2741
+ scan_error: string | null;
2738
2742
  entries: Array<{
2739
2743
  name: string;
2740
2744
  path: string;
@@ -2855,6 +2859,10 @@ export type SettingsComputeGetResponses = {
2855
2859
  modal_file: {
2856
2860
  found: boolean;
2857
2861
  ready: boolean;
2862
+ status: "absent" | "invalid" | "ready";
2863
+ profile?: string;
2864
+ environment?: string;
2865
+ error?: string;
2858
2866
  };
2859
2867
  environments: {
2860
2868
  status: "absent" | "installing" | "ready" | "failed";
@@ -2925,6 +2933,10 @@ export type SettingsComputeEnvironmentsRepairResponses = {
2925
2933
  modal_file: {
2926
2934
  found: boolean;
2927
2935
  ready: boolean;
2936
+ status: "absent" | "invalid" | "ready";
2937
+ profile?: string;
2938
+ environment?: string;
2939
+ error?: string;
2928
2940
  };
2929
2941
  environments: {
2930
2942
  status: "absent" | "installing" | "ready" | "failed";
@@ -2997,6 +3009,10 @@ export type SettingsComputeProviderDisconnectResponses = {
2997
3009
  modal_file: {
2998
3010
  found: boolean;
2999
3011
  ready: boolean;
3012
+ status: "absent" | "invalid" | "ready";
3013
+ profile?: string;
3014
+ environment?: string;
3015
+ error?: string;
3000
3016
  };
3001
3017
  environments: {
3002
3018
  status: "absent" | "installing" | "ready" | "failed";
@@ -3078,6 +3094,10 @@ export type SettingsComputeProviderConnectResponses = {
3078
3094
  modal_file: {
3079
3095
  found: boolean;
3080
3096
  ready: boolean;
3097
+ status: "absent" | "invalid" | "ready";
3098
+ profile?: string;
3099
+ environment?: string;
3100
+ error?: string;
3081
3101
  };
3082
3102
  environments: {
3083
3103
  status: "absent" | "installing" | "ready" | "failed";
@@ -3159,6 +3179,10 @@ export type SettingsComputeProviderEnabledResponses = {
3159
3179
  modal_file: {
3160
3180
  found: boolean;
3161
3181
  ready: boolean;
3182
+ status: "absent" | "invalid" | "ready";
3183
+ profile?: string;
3184
+ environment?: string;
3185
+ error?: string;
3162
3186
  };
3163
3187
  environments: {
3164
3188
  status: "absent" | "installing" | "ready" | "failed";
@@ -3242,6 +3266,10 @@ export type SettingsComputeModalUpdateResponses = {
3242
3266
  modal_file: {
3243
3267
  found: boolean;
3244
3268
  ready: boolean;
3269
+ status: "absent" | "invalid" | "ready";
3270
+ profile?: string;
3271
+ environment?: string;
3272
+ error?: string;
3245
3273
  };
3246
3274
  environments: {
3247
3275
  status: "absent" | "installing" | "ready" | "failed";
@@ -3397,6 +3425,10 @@ export type SettingsComputeModalConfigureResponses = {
3397
3425
  modal_file: {
3398
3426
  found: boolean;
3399
3427
  ready: boolean;
3428
+ status: "absent" | "invalid" | "ready";
3429
+ profile?: string;
3430
+ environment?: string;
3431
+ error?: string;
3400
3432
  };
3401
3433
  environments: {
3402
3434
  status: "absent" | "installing" | "ready" | "failed";
@@ -3509,6 +3541,10 @@ export type SettingsComputeSshAddResponses = {
3509
3541
  modal_file: {
3510
3542
  found: boolean;
3511
3543
  ready: boolean;
3544
+ status: "absent" | "invalid" | "ready";
3545
+ profile?: string;
3546
+ environment?: string;
3547
+ error?: string;
3512
3548
  };
3513
3549
  environments: {
3514
3550
  status: "absent" | "installing" | "ready" | "failed";
@@ -3615,6 +3651,10 @@ export type SettingsComputeSshRemoveResponses = {
3615
3651
  modal_file: {
3616
3652
  found: boolean;
3617
3653
  ready: boolean;
3654
+ status: "absent" | "invalid" | "ready";
3655
+ profile?: string;
3656
+ environment?: string;
3657
+ error?: string;
3618
3658
  };
3619
3659
  environments: {
3620
3660
  status: "absent" | "installing" | "ready" | "failed";
@@ -3700,6 +3740,10 @@ export type SettingsComputeSshUpdateResponses = {
3700
3740
  modal_file: {
3701
3741
  found: boolean;
3702
3742
  ready: boolean;
3743
+ status: "absent" | "invalid" | "ready";
3744
+ profile?: string;
3745
+ environment?: string;
3746
+ error?: string;
3703
3747
  };
3704
3748
  environments: {
3705
3749
  status: "absent" | "installing" | "ready" | "failed";
@@ -4199,6 +4243,7 @@ export type SettingsComputeJobsStartData = {
4199
4243
  secret_refs?: Array<"nvidia_nim" | "nvidia_ngc">;
4200
4244
  approval?: string;
4201
4245
  sessionID: string;
4246
+ default_uploads?: boolean;
4202
4247
  };
4203
4248
  path?: never;
4204
4249
  query?: {
@@ -4689,6 +4734,7 @@ export type SettingsComputeJobsPlanData = {
4689
4734
  secret_refs?: Array<"nvidia_nim" | "nvidia_ngc">;
4690
4735
  approval?: string;
4691
4736
  sessionID: string;
4737
+ default_uploads?: boolean;
4692
4738
  };
4693
4739
  path?: never;
4694
4740
  query?: {
@@ -7038,6 +7084,7 @@ export type ProjectUpdateData = {
7038
7084
  */
7039
7085
  start?: string;
7040
7086
  };
7087
+ archived?: boolean;
7041
7088
  };
7042
7089
  path: {
7043
7090
  projectID: string;
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.51",
4
+ "version": "2.0.52",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {