@ignos/api-client 20251229.0.13636-alpha → 20260106.0.13649
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
|
@@ -8487,6 +8487,7 @@ export declare class ListCncMachineOperationsRequest implements IListCncMachineO
|
|
|
8487
8487
|
drawing?: string | null;
|
|
8488
8488
|
drawingRevision?: string | null;
|
|
8489
8489
|
material?: string | null;
|
|
8490
|
+
toolNumber?: string | null;
|
|
8490
8491
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
8491
8492
|
filter?: string | null;
|
|
8492
8493
|
continuationToken?: string | null;
|
|
@@ -8512,6 +8513,7 @@ export interface IListCncMachineOperationsRequest {
|
|
|
8512
8513
|
drawing?: string | null;
|
|
8513
8514
|
drawingRevision?: string | null;
|
|
8514
8515
|
material?: string | null;
|
|
8516
|
+
toolNumber?: string | null;
|
|
8515
8517
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
8516
8518
|
filter?: string | null;
|
|
8517
8519
|
continuationToken?: string | null;
|
|
@@ -9217,7 +9219,7 @@ export interface IFixtureLastUsedOperationDto {
|
|
|
9217
9219
|
lastUsedById?: string | null;
|
|
9218
9220
|
lastUsed?: Date | null;
|
|
9219
9221
|
}
|
|
9220
|
-
export type GripSideDto = "NotApplicable" | "
|
|
9222
|
+
export type GripSideDto = "NotApplicable" | "Internal" | "External";
|
|
9221
9223
|
export declare class ListFixtures implements IListFixtures {
|
|
9222
9224
|
pageSize?: number | null;
|
|
9223
9225
|
searchTerm?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -36269,6 +36269,7 @@ export class ListCncMachineOperationsRequest {
|
|
|
36269
36269
|
this.drawing = _data["drawing"];
|
|
36270
36270
|
this.drawingRevision = _data["drawingRevision"];
|
|
36271
36271
|
this.material = _data["material"];
|
|
36272
|
+
this.toolNumber = _data["toolNumber"];
|
|
36272
36273
|
this.filterDeleted = _data["filterDeleted"];
|
|
36273
36274
|
this.filter = _data["filter"];
|
|
36274
36275
|
this.continuationToken = _data["continuationToken"];
|
|
@@ -36298,6 +36299,7 @@ export class ListCncMachineOperationsRequest {
|
|
|
36298
36299
|
data["drawing"] = this.drawing;
|
|
36299
36300
|
data["drawingRevision"] = this.drawingRevision;
|
|
36300
36301
|
data["material"] = this.material;
|
|
36302
|
+
data["toolNumber"] = this.toolNumber;
|
|
36301
36303
|
data["filterDeleted"] = this.filterDeleted;
|
|
36302
36304
|
data["filter"] = this.filter;
|
|
36303
36305
|
data["continuationToken"] = this.continuationToken;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43469,6 +43469,7 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
|
|
|
43469
43469
|
drawing?: string | null;
|
|
43470
43470
|
drawingRevision?: string | null;
|
|
43471
43471
|
material?: string | null;
|
|
43472
|
+
toolNumber?: string | null;
|
|
43472
43473
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
43473
43474
|
filter?: string | null;
|
|
43474
43475
|
continuationToken?: string | null;
|
|
@@ -43500,6 +43501,7 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
|
|
|
43500
43501
|
this.drawing = _data["drawing"];
|
|
43501
43502
|
this.drawingRevision = _data["drawingRevision"];
|
|
43502
43503
|
this.material = _data["material"];
|
|
43504
|
+
this.toolNumber = _data["toolNumber"];
|
|
43503
43505
|
this.filterDeleted = _data["filterDeleted"];
|
|
43504
43506
|
this.filter = _data["filter"];
|
|
43505
43507
|
this.continuationToken = _data["continuationToken"];
|
|
@@ -43531,6 +43533,7 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
|
|
|
43531
43533
|
data["drawing"] = this.drawing;
|
|
43532
43534
|
data["drawingRevision"] = this.drawingRevision;
|
|
43533
43535
|
data["material"] = this.material;
|
|
43536
|
+
data["toolNumber"] = this.toolNumber;
|
|
43534
43537
|
data["filterDeleted"] = this.filterDeleted;
|
|
43535
43538
|
data["filter"] = this.filter;
|
|
43536
43539
|
data["continuationToken"] = this.continuationToken;
|
|
@@ -43555,6 +43558,7 @@ export interface IListCncMachineOperationsRequest {
|
|
|
43555
43558
|
drawing?: string | null;
|
|
43556
43559
|
drawingRevision?: string | null;
|
|
43557
43560
|
material?: string | null;
|
|
43561
|
+
toolNumber?: string | null;
|
|
43558
43562
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
43559
43563
|
filter?: string | null;
|
|
43560
43564
|
continuationToken?: string | null;
|
|
@@ -45439,7 +45443,7 @@ export interface IFixtureLastUsedOperationDto {
|
|
|
45439
45443
|
lastUsed?: Date | null;
|
|
45440
45444
|
}
|
|
45441
45445
|
|
|
45442
|
-
export type GripSideDto = "NotApplicable" | "
|
|
45446
|
+
export type GripSideDto = "NotApplicable" | "Internal" | "External";
|
|
45443
45447
|
|
|
45444
45448
|
export class ListFixtures implements IListFixtures {
|
|
45445
45449
|
pageSize?: number | null;
|