@ignos/api-client 20250922.0.12693 → 20250922.0.12695
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/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8085,7 +8085,7 @@ export interface IUpdateCncMachineOperationRequest {
|
|
|
8085
8085
|
deleted: boolean;
|
|
8086
8086
|
}
|
|
8087
8087
|
export declare class CopyCncMachineOperations implements ICopyCncMachineOperations {
|
|
8088
|
-
targetCncPartId
|
|
8088
|
+
targetCncPartId: string;
|
|
8089
8089
|
operations: CopyCncMachineOperationDto[];
|
|
8090
8090
|
constructor(data?: ICopyCncMachineOperations);
|
|
8091
8091
|
init(_data?: any): void;
|
|
@@ -8093,7 +8093,7 @@ export declare class CopyCncMachineOperations implements ICopyCncMachineOperatio
|
|
|
8093
8093
|
toJSON(data?: any): any;
|
|
8094
8094
|
}
|
|
8095
8095
|
export interface ICopyCncMachineOperations {
|
|
8096
|
-
targetCncPartId
|
|
8096
|
+
targetCncPartId: string;
|
|
8097
8097
|
operations: CopyCncMachineOperationDto[];
|
|
8098
8098
|
}
|
|
8099
8099
|
export declare class CopyCncMachineOperationDto implements ICopyCncMachineOperationDto {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -41271,7 +41271,7 @@ export interface IUpdateCncMachineOperationRequest {
|
|
|
41271
41271
|
}
|
|
41272
41272
|
|
|
41273
41273
|
export class CopyCncMachineOperations implements ICopyCncMachineOperations {
|
|
41274
|
-
targetCncPartId
|
|
41274
|
+
targetCncPartId!: string;
|
|
41275
41275
|
operations!: CopyCncMachineOperationDto[];
|
|
41276
41276
|
|
|
41277
41277
|
constructor(data?: ICopyCncMachineOperations) {
|
|
@@ -41317,7 +41317,7 @@ export class CopyCncMachineOperations implements ICopyCncMachineOperations {
|
|
|
41317
41317
|
}
|
|
41318
41318
|
|
|
41319
41319
|
export interface ICopyCncMachineOperations {
|
|
41320
|
-
targetCncPartId
|
|
41320
|
+
targetCncPartId: string;
|
|
41321
41321
|
operations: CopyCncMachineOperationDto[];
|
|
41322
41322
|
}
|
|
41323
41323
|
|