@ignos/api-client 20260728.198.1-alpha → 20260728.199.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.
@@ -7199,6 +7199,10 @@ export interface SearchParcelDto {
7199
7199
  items: SearchParcelItemDto[];
7200
7200
  partName?: string | null;
7201
7201
  partNumber?: string | null;
7202
+ status?: WorkorderStatus | null;
7203
+ startDate?: Date | null;
7204
+ endDate?: Date | null;
7205
+ deliveryDate?: Date | null;
7202
7206
  }
7203
7207
  export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
7204
7208
  export interface SearchParcelItemDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260728.198.1-alpha",
3
+ "version": "20260728.199.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -35456,6 +35456,10 @@ export interface SearchParcelDto {
35456
35456
  items: SearchParcelItemDto[];
35457
35457
  partName?: string | null;
35458
35458
  partNumber?: string | null;
35459
+ status?: WorkorderStatus | null;
35460
+ startDate?: Date | null;
35461
+ endDate?: Date | null;
35462
+ deliveryDate?: Date | null;
35459
35463
  }
35460
35464
 
35461
35465
  export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";