@ignos/api-client 20250402.0.11467 → 20250407.0.11480
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
|
@@ -10869,7 +10869,7 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
10869
10869
|
export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
10870
10870
|
id: string;
|
|
10871
10871
|
versionId: number;
|
|
10872
|
-
partNumber
|
|
10872
|
+
partNumber?: string | null;
|
|
10873
10873
|
partRevision?: string | null;
|
|
10874
10874
|
partName?: string | null;
|
|
10875
10875
|
drawing?: string | null;
|
|
@@ -10901,7 +10901,7 @@ export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaD
|
|
|
10901
10901
|
export interface IMeasurementFormSchemaDto {
|
|
10902
10902
|
id: string;
|
|
10903
10903
|
versionId: number;
|
|
10904
|
-
partNumber
|
|
10904
|
+
partNumber?: string | null;
|
|
10905
10905
|
partRevision?: string | null;
|
|
10906
10906
|
partName?: string | null;
|
|
10907
10907
|
drawing?: string | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -48202,7 +48202,7 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
48202
48202
|
export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
48203
48203
|
id!: string;
|
|
48204
48204
|
versionId!: number;
|
|
48205
|
-
partNumber
|
|
48205
|
+
partNumber?: string | null;
|
|
48206
48206
|
partRevision?: string | null;
|
|
48207
48207
|
partName?: string | null;
|
|
48208
48208
|
drawing?: string | null;
|
|
@@ -48338,7 +48338,7 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
48338
48338
|
export interface IMeasurementFormSchemaDto {
|
|
48339
48339
|
id: string;
|
|
48340
48340
|
versionId: number;
|
|
48341
|
-
partNumber
|
|
48341
|
+
partNumber?: string | null;
|
|
48342
48342
|
partRevision?: string | null;
|
|
48343
48343
|
partName?: string | null;
|
|
48344
48344
|
drawing?: string | null;
|