@ignos/api-client 20260402.99.1-alpha → 20260402.100.1-alpha

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.
@@ -5659,7 +5659,11 @@ export interface CncMachineTransferDto {
5659
5659
  export type FileTransferDirection = "FromCloud" | "ToCloud";
5660
5660
  export type FileTransferStatus = "InProgress" | "Success" | "Failed";
5661
5661
  export interface TransferToMachineRequest {
5662
- filenames?: string[] | null;
5662
+ programs?: ProgramSelectionRequest[] | null;
5663
+ }
5664
+ export interface ProgramSelectionRequest {
5665
+ id?: string;
5666
+ version?: number;
5663
5667
  }
5664
5668
  export interface UploadCamFileDto {
5665
5669
  uploadUrl: string;
@@ -5990,6 +5994,7 @@ export interface CopyToolsCncMachine {
5990
5994
  toolsIds: number[];
5991
5995
  }
5992
5996
  export interface ProgramFileDto {
5997
+ id: string;
5993
5998
  name: string;
5994
5999
  version: number;
5995
6000
  uploadStatus: UploadStatusDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260402.99.1-alpha",
3
+ "version": "20260402.100.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -32174,7 +32174,12 @@ export type FileTransferDirection = "FromCloud" | "ToCloud";
32174
32174
  export type FileTransferStatus = "InProgress" | "Success" | "Failed";
32175
32175
 
32176
32176
  export interface TransferToMachineRequest {
32177
- filenames?: string[] | null;
32177
+ programs?: ProgramSelectionRequest[] | null;
32178
+ }
32179
+
32180
+ export interface ProgramSelectionRequest {
32181
+ id?: string;
32182
+ version?: number;
32178
32183
  }
32179
32184
 
32180
32185
  export interface UploadCamFileDto {
@@ -32545,6 +32550,7 @@ export interface CopyToolsCncMachine {
32545
32550
  }
32546
32551
 
32547
32552
  export interface ProgramFileDto {
32553
+ id: string;
32548
32554
  name: string;
32549
32555
  version: number;
32550
32556
  uploadStatus: UploadStatusDto;