@ignos/api-client 20260826.247.1-alpha → 20260827.249.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.
@@ -7527,8 +7527,6 @@ export interface PlannerOperationDto {
7527
7527
  drawingNumber?: string | null;
7528
7528
  description?: string | null;
7529
7529
  disableSetupRegistration?: boolean;
7530
- sequenceNumber: number;
7531
- isManuallyLocked: boolean;
7532
7530
  lockType: PlannerLockType;
7533
7531
  isNewOperation: boolean;
7534
7532
  weekGroup: string;
@@ -9227,12 +9225,12 @@ export interface SchemaCreatorStateDto {
9227
9225
  updatedAt?: Date | null;
9228
9226
  }
9229
9227
  export interface SchemaCreatorSettingsDto {
9230
- unit?: UnitOfMeasureDto;
9228
+ unit?: SchemaCreatorUnitOfMeasureDto;
9231
9229
  tolerance?: GeneralToleranceDto;
9232
9230
  balloonSize?: number;
9233
9231
  transparentBalloons?: boolean;
9234
9232
  }
9235
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9233
+ export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
9236
9234
  export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9237
9235
  export interface SchemaCreatorElementDto {
9238
9236
  id: string;
@@ -9272,6 +9270,7 @@ export interface SchemaCreatorSizeDto {
9272
9270
  }
9273
9271
  export interface SchemaCreatorElementValuesDto {
9274
9272
  reference: number;
9273
+ unit?: UnitOfMeasureDto | null;
9275
9274
  nominal?: number | null;
9276
9275
  nominalText?: string | null;
9277
9276
  plusTolerance?: number | null;
@@ -9286,6 +9285,7 @@ export interface SchemaCreatorElementValuesDto {
9286
9285
  visibleToCustomer: boolean;
9287
9286
  isDocumentedExternally: boolean;
9288
9287
  }
9288
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9289
9289
  export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9290
9290
  export interface SchemaCreatorSnipResultDto {
9291
9291
  nominal?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260826.247.1-alpha",
3
+ "version": "20260827.249.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -36204,8 +36204,6 @@ export interface PlannerOperationDto {
36204
36204
  drawingNumber?: string | null;
36205
36205
  description?: string | null;
36206
36206
  disableSetupRegistration?: boolean;
36207
- sequenceNumber: number;
36208
- isManuallyLocked: boolean;
36209
36207
  lockType: PlannerLockType;
36210
36208
  isNewOperation: boolean;
36211
36209
  weekGroup: string;
@@ -38105,13 +38103,13 @@ export interface SchemaCreatorStateDto {
38105
38103
  }
38106
38104
 
38107
38105
  export interface SchemaCreatorSettingsDto {
38108
- unit?: UnitOfMeasureDto;
38106
+ unit?: SchemaCreatorUnitOfMeasureDto;
38109
38107
  tolerance?: GeneralToleranceDto;
38110
38108
  balloonSize?: number;
38111
38109
  transparentBalloons?: boolean;
38112
38110
  }
38113
38111
 
38114
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
38112
+ export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
38115
38113
 
38116
38114
  export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
38117
38115
 
@@ -38160,6 +38158,7 @@ export interface SchemaCreatorSizeDto {
38160
38158
 
38161
38159
  export interface SchemaCreatorElementValuesDto {
38162
38160
  reference: number;
38161
+ unit?: UnitOfMeasureDto | null;
38163
38162
  nominal?: number | null;
38164
38163
  nominalText?: string | null;
38165
38164
  plusTolerance?: number | null;
@@ -38175,6 +38174,8 @@ export interface SchemaCreatorElementValuesDto {
38175
38174
  isDocumentedExternally: boolean;
38176
38175
  }
38177
38176
 
38177
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
38178
+
38178
38179
  export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
38179
38180
 
38180
38181
  export interface SchemaCreatorSnipResultDto {