@ignos/api-client 20260306.71.1 → 20260310.73.1
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
|
@@ -5637,6 +5637,7 @@ export interface ListCncPartsRequest {
|
|
|
5637
5637
|
operationMaxCreatedDate?: Date | null;
|
|
5638
5638
|
operationMinUpdatedDate?: Date | null;
|
|
5639
5639
|
operationMaxUpdatedDate?: Date | null;
|
|
5640
|
+
utcOffset?: number | null;
|
|
5640
5641
|
}
|
|
5641
5642
|
export type CncFilterDeletedDto = "NoneDeleted" | "OnlyDeleted" | "All";
|
|
5642
5643
|
export interface CncPartMaterialListDto {
|
|
@@ -5746,6 +5747,7 @@ export interface ListCncMachineOperationsRequest {
|
|
|
5746
5747
|
maxCreatedDate?: Date | null;
|
|
5747
5748
|
minUpdatedDate?: Date | null;
|
|
5748
5749
|
maxUpdatedDate?: Date | null;
|
|
5750
|
+
utcOffset?: number | null;
|
|
5749
5751
|
}
|
|
5750
5752
|
export interface UpdateCncMachineOperationRequest {
|
|
5751
5753
|
operation?: number | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -31050,6 +31050,7 @@ export interface ListCncPartsRequest {
|
|
|
31050
31050
|
operationMaxCreatedDate?: Date | null;
|
|
31051
31051
|
operationMinUpdatedDate?: Date | null;
|
|
31052
31052
|
operationMaxUpdatedDate?: Date | null;
|
|
31053
|
+
utcOffset?: number | null;
|
|
31053
31054
|
}
|
|
31054
31055
|
|
|
31055
31056
|
export type CncFilterDeletedDto = "NoneDeleted" | "OnlyDeleted" | "All";
|
|
@@ -31171,6 +31172,7 @@ export interface ListCncMachineOperationsRequest {
|
|
|
31171
31172
|
maxCreatedDate?: Date | null;
|
|
31172
31173
|
minUpdatedDate?: Date | null;
|
|
31173
31174
|
maxUpdatedDate?: Date | null;
|
|
31175
|
+
utcOffset?: number | null;
|
|
31174
31176
|
}
|
|
31175
31177
|
|
|
31176
31178
|
export interface UpdateCncMachineOperationRequest {
|