@ignos/api-client 20251218.0.13604-alpha → 20251222.0.13628

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.
@@ -8178,6 +8178,7 @@ export declare class ListCncMachineOperationsRequest implements IListCncMachineO
8178
8178
  drawing?: string | null;
8179
8179
  drawingRevision?: string | null;
8180
8180
  material?: string | null;
8181
+ toolNumber?: string | null;
8181
8182
  filterDeleted?: CncFilterDeletedDto | null;
8182
8183
  filter?: string | null;
8183
8184
  continuationToken?: string | null;
@@ -8203,6 +8204,7 @@ export interface IListCncMachineOperationsRequest {
8203
8204
  drawing?: string | null;
8204
8205
  drawingRevision?: string | null;
8205
8206
  material?: string | null;
8207
+ toolNumber?: string | null;
8206
8208
  filterDeleted?: CncFilterDeletedDto | null;
8207
8209
  filter?: string | null;
8208
8210
  continuationToken?: string | null;
@@ -8908,7 +8910,7 @@ export interface IFixtureLastUsedOperationDto {
8908
8910
  lastUsedById?: string | null;
8909
8911
  lastUsed?: Date | null;
8910
8912
  }
8911
- export type GripSideDto = "NotApplicable" | "Internal" | "Internal" | "External" | "External";
8913
+ export type GripSideDto = "NotApplicable" | "Internal" | "External";
8912
8914
  export declare class ListFixtures implements IListFixtures {
8913
8915
  pageSize?: number | null;
8914
8916
  searchTerm?: string | null;
@@ -34890,6 +34890,7 @@ export class ListCncMachineOperationsRequest {
34890
34890
  this.drawing = _data["drawing"];
34891
34891
  this.drawingRevision = _data["drawingRevision"];
34892
34892
  this.material = _data["material"];
34893
+ this.toolNumber = _data["toolNumber"];
34893
34894
  this.filterDeleted = _data["filterDeleted"];
34894
34895
  this.filter = _data["filter"];
34895
34896
  this.continuationToken = _data["continuationToken"];
@@ -34919,6 +34920,7 @@ export class ListCncMachineOperationsRequest {
34919
34920
  data["drawing"] = this.drawing;
34920
34921
  data["drawingRevision"] = this.drawingRevision;
34921
34922
  data["material"] = this.material;
34923
+ data["toolNumber"] = this.toolNumber;
34922
34924
  data["filterDeleted"] = this.filterDeleted;
34923
34925
  data["filter"] = this.filter;
34924
34926
  data["continuationToken"] = this.continuationToken;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251218.0.13604-alpha",
3
+ "version": "20251222.0.13628",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41812,6 +41812,7 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
41812
41812
  drawing?: string | null;
41813
41813
  drawingRevision?: string | null;
41814
41814
  material?: string | null;
41815
+ toolNumber?: string | null;
41815
41816
  filterDeleted?: CncFilterDeletedDto | null;
41816
41817
  filter?: string | null;
41817
41818
  continuationToken?: string | null;
@@ -41843,6 +41844,7 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
41843
41844
  this.drawing = _data["drawing"];
41844
41845
  this.drawingRevision = _data["drawingRevision"];
41845
41846
  this.material = _data["material"];
41847
+ this.toolNumber = _data["toolNumber"];
41846
41848
  this.filterDeleted = _data["filterDeleted"];
41847
41849
  this.filter = _data["filter"];
41848
41850
  this.continuationToken = _data["continuationToken"];
@@ -41874,6 +41876,7 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
41874
41876
  data["drawing"] = this.drawing;
41875
41877
  data["drawingRevision"] = this.drawingRevision;
41876
41878
  data["material"] = this.material;
41879
+ data["toolNumber"] = this.toolNumber;
41877
41880
  data["filterDeleted"] = this.filterDeleted;
41878
41881
  data["filter"] = this.filter;
41879
41882
  data["continuationToken"] = this.continuationToken;
@@ -41898,6 +41901,7 @@ export interface IListCncMachineOperationsRequest {
41898
41901
  drawing?: string | null;
41899
41902
  drawingRevision?: string | null;
41900
41903
  material?: string | null;
41904
+ toolNumber?: string | null;
41901
41905
  filterDeleted?: CncFilterDeletedDto | null;
41902
41906
  filter?: string | null;
41903
41907
  continuationToken?: string | null;
@@ -43782,7 +43786,7 @@ export interface IFixtureLastUsedOperationDto {
43782
43786
  lastUsed?: Date | null;
43783
43787
  }
43784
43788
 
43785
- export type GripSideDto = "NotApplicable" | "Internal" | "Internal" | "External" | "External";
43789
+ export type GripSideDto = "NotApplicable" | "Internal" | "External";
43786
43790
 
43787
43791
  export class ListFixtures implements IListFixtures {
43788
43792
  pageSize?: number | null;