@ignos/api-client 20250808.0.12338 → 20250814.0.12365
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 +62 -309
- package/lib/ignosportal-api.js +195 -683
- package/package.json +1 -1
- package/src/ignosportal-api.ts +407 -1135
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2053,7 +2053,6 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2053
2053
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
2054
2054
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
2055
2055
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2056
|
-
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2057
2056
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2058
2057
|
postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2059
2058
|
createMeasurementFormSchemaLink(schemaId: string, request: CreateMeasurementFormSchemaLinkRequest): Promise<MeasurementFormDto>;
|
|
@@ -2085,10 +2084,6 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2085
2084
|
setMeasurementFormMappingBalloons(id: string, request: MeasurementFormBalloonMappingRequestDto[]): Promise<MeasurementFormMappingDto>;
|
|
2086
2085
|
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormMappingBalloonsRequest): Promise<MeasurementFormMappingDto>;
|
|
2087
2086
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2088
|
-
/**
|
|
2089
|
-
* Custom api for initial import. Not to be used more than once per customer.
|
|
2090
|
-
*/
|
|
2091
|
-
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2092
2087
|
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined, onlyWithoutDrawingUrl: boolean | null | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2093
2088
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2094
2089
|
setMeasurementFormNeedUser(id: string, request: SetMeasurementFormNeedUserRequest): Promise<void>;
|
|
@@ -2145,8 +2140,6 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2145
2140
|
protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2146
2141
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2147
2142
|
protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2148
|
-
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2149
|
-
protected processGetMeasurementFormImportStatus(response: Response): Promise<MeasurementFormImportStatusDto>;
|
|
2150
2143
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2151
2144
|
protected processListLinkableMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2152
2145
|
postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
|
|
@@ -2197,11 +2190,6 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2197
2190
|
protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2198
2191
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2199
2192
|
protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2200
|
-
/**
|
|
2201
|
-
* Custom api for initial import. Not to be used more than once per customer.
|
|
2202
|
-
*/
|
|
2203
|
-
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2204
|
-
protected processImportMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2205
2193
|
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined, onlyWithoutDrawingUrl: boolean | null | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2206
2194
|
protected processListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2207
2195
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2280,9 +2268,9 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2280
2268
|
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2281
2269
|
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2282
2270
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2283
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string,
|
|
2271
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2284
2272
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2285
|
-
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined,
|
|
2273
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2286
2274
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2287
2275
|
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2288
2276
|
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
@@ -2298,7 +2286,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2298
2286
|
updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
|
|
2299
2287
|
getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
|
|
2300
2288
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2301
|
-
importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2302
2289
|
}
|
|
2303
2290
|
export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
2304
2291
|
private http;
|
|
@@ -2335,11 +2322,11 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2335
2322
|
protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2336
2323
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2337
2324
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2338
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string,
|
|
2325
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2339
2326
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2340
2327
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2341
2328
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2342
|
-
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined,
|
|
2329
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2343
2330
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2344
2331
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2345
2332
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
@@ -2371,8 +2358,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2371
2358
|
protected processGetSchemaInstanceElements(response: Response): Promise<SchemaInstanceElementDto[]>;
|
|
2372
2359
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2373
2360
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2374
|
-
importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2375
|
-
protected processImportMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2376
2361
|
}
|
|
2377
2362
|
export interface IElectricalClient {
|
|
2378
2363
|
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
@@ -12194,22 +12179,6 @@ export interface IUploadRequest {
|
|
|
12194
12179
|
uploadKey: string;
|
|
12195
12180
|
filename: string;
|
|
12196
12181
|
}
|
|
12197
|
-
export declare class MeasurementFormImportStatusDto implements IMeasurementFormImportStatusDto {
|
|
12198
|
-
progress: number;
|
|
12199
|
-
totalElements: number;
|
|
12200
|
-
errorMessage: string;
|
|
12201
|
-
timestamp: Date;
|
|
12202
|
-
constructor(data?: IMeasurementFormImportStatusDto);
|
|
12203
|
-
init(_data?: any): void;
|
|
12204
|
-
static fromJS(data: any): MeasurementFormImportStatusDto;
|
|
12205
|
-
toJSON(data?: any): any;
|
|
12206
|
-
}
|
|
12207
|
-
export interface IMeasurementFormImportStatusDto {
|
|
12208
|
-
progress: number;
|
|
12209
|
-
totalElements: number;
|
|
12210
|
-
errorMessage: string;
|
|
12211
|
-
timestamp: Date;
|
|
12212
|
-
}
|
|
12213
12182
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12214
12183
|
schemaId: string;
|
|
12215
12184
|
pageSize?: number | null;
|
|
@@ -12428,184 +12397,6 @@ export interface IMeasurementFormMappingSuggestionDto {
|
|
|
12428
12397
|
sourceBalloons: MeasurementFormBalloonMappingDto[];
|
|
12429
12398
|
targetBalloons: MeasurementFormBalloonMappingDto[];
|
|
12430
12399
|
}
|
|
12431
|
-
export declare class ImportMeasurementFormSchema implements IImportMeasurementFormSchema {
|
|
12432
|
-
customerId?: string | null;
|
|
12433
|
-
customerName?: string | null;
|
|
12434
|
-
partNumber: string;
|
|
12435
|
-
partName?: string | null;
|
|
12436
|
-
partRevision?: string | null;
|
|
12437
|
-
drawing?: string | null;
|
|
12438
|
-
drawingRevision?: string | null;
|
|
12439
|
-
includeToolsInReport: boolean;
|
|
12440
|
-
created?: Date;
|
|
12441
|
-
createdBy?: string | null;
|
|
12442
|
-
updatedBy?: string | null;
|
|
12443
|
-
excludeFromCustomerDocumentation: boolean;
|
|
12444
|
-
source: MeasurementFormSource;
|
|
12445
|
-
extraSchemas?: MeasurementFormImportLinkedSchemaDto[] | null;
|
|
12446
|
-
versions: MeasurementFormVersionImportDto[];
|
|
12447
|
-
constructor(data?: IImportMeasurementFormSchema);
|
|
12448
|
-
init(_data?: any): void;
|
|
12449
|
-
static fromJS(data: any): ImportMeasurementFormSchema;
|
|
12450
|
-
toJSON(data?: any): any;
|
|
12451
|
-
}
|
|
12452
|
-
export interface IImportMeasurementFormSchema {
|
|
12453
|
-
customerId?: string | null;
|
|
12454
|
-
customerName?: string | null;
|
|
12455
|
-
partNumber: string;
|
|
12456
|
-
partName?: string | null;
|
|
12457
|
-
partRevision?: string | null;
|
|
12458
|
-
drawing?: string | null;
|
|
12459
|
-
drawingRevision?: string | null;
|
|
12460
|
-
includeToolsInReport: boolean;
|
|
12461
|
-
created?: Date;
|
|
12462
|
-
createdBy?: string | null;
|
|
12463
|
-
updatedBy?: string | null;
|
|
12464
|
-
excludeFromCustomerDocumentation: boolean;
|
|
12465
|
-
source: MeasurementFormSource;
|
|
12466
|
-
extraSchemas?: MeasurementFormImportLinkedSchemaDto[] | null;
|
|
12467
|
-
versions: MeasurementFormVersionImportDto[];
|
|
12468
|
-
}
|
|
12469
|
-
export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
|
|
12470
|
-
customerId?: string | null;
|
|
12471
|
-
partNumber?: string | null;
|
|
12472
|
-
partName?: string | null;
|
|
12473
|
-
partRevision?: string | null;
|
|
12474
|
-
drawing: string;
|
|
12475
|
-
drawingRevision?: string | null;
|
|
12476
|
-
schemaId?: string | null;
|
|
12477
|
-
constructor(data?: IMeasurementFormImportLinkedSchemaDto);
|
|
12478
|
-
init(_data?: any): void;
|
|
12479
|
-
static fromJS(data: any): MeasurementFormImportLinkedSchemaDto;
|
|
12480
|
-
toJSON(data?: any): any;
|
|
12481
|
-
}
|
|
12482
|
-
export interface IMeasurementFormImportLinkedSchemaDto {
|
|
12483
|
-
customerId?: string | null;
|
|
12484
|
-
partNumber?: string | null;
|
|
12485
|
-
partName?: string | null;
|
|
12486
|
-
partRevision?: string | null;
|
|
12487
|
-
drawing: string;
|
|
12488
|
-
drawingRevision?: string | null;
|
|
12489
|
-
schemaId?: string | null;
|
|
12490
|
-
}
|
|
12491
|
-
export declare class MeasurementFormVersionImportDto implements IMeasurementFormVersionImportDto {
|
|
12492
|
-
version: number;
|
|
12493
|
-
specification?: string | null;
|
|
12494
|
-
drawingUrl?: string | null;
|
|
12495
|
-
markedDrawingUrl?: string | null;
|
|
12496
|
-
xmlUrl?: string | null;
|
|
12497
|
-
inspectionXpertProjectUrl?: string | null;
|
|
12498
|
-
created: Date;
|
|
12499
|
-
createdBy: string;
|
|
12500
|
-
updated?: Date | null;
|
|
12501
|
-
updatedBy?: string | null;
|
|
12502
|
-
elements: MeasurementFormElementImportDto[];
|
|
12503
|
-
isUsed: boolean;
|
|
12504
|
-
constructor(data?: IMeasurementFormVersionImportDto);
|
|
12505
|
-
init(_data?: any): void;
|
|
12506
|
-
static fromJS(data: any): MeasurementFormVersionImportDto;
|
|
12507
|
-
toJSON(data?: any): any;
|
|
12508
|
-
}
|
|
12509
|
-
export interface IMeasurementFormVersionImportDto {
|
|
12510
|
-
version: number;
|
|
12511
|
-
specification?: string | null;
|
|
12512
|
-
drawingUrl?: string | null;
|
|
12513
|
-
markedDrawingUrl?: string | null;
|
|
12514
|
-
xmlUrl?: string | null;
|
|
12515
|
-
inspectionXpertProjectUrl?: string | null;
|
|
12516
|
-
created: Date;
|
|
12517
|
-
createdBy: string;
|
|
12518
|
-
updated?: Date | null;
|
|
12519
|
-
updatedBy?: string | null;
|
|
12520
|
-
elements: MeasurementFormElementImportDto[];
|
|
12521
|
-
isUsed: boolean;
|
|
12522
|
-
}
|
|
12523
|
-
export declare class MeasurementFormElementImportDto implements IMeasurementFormElementImportDto {
|
|
12524
|
-
id?: string | null;
|
|
12525
|
-
imageUrl?: string | null;
|
|
12526
|
-
thumbnailUrl?: string | null;
|
|
12527
|
-
balloonId?: string | null;
|
|
12528
|
-
section?: string | null;
|
|
12529
|
-
pageNumber?: number;
|
|
12530
|
-
sheetZone?: string | null;
|
|
12531
|
-
places?: number | null;
|
|
12532
|
-
nominal?: number | null;
|
|
12533
|
-
nominalText?: string | null;
|
|
12534
|
-
type?: string | null;
|
|
12535
|
-
subType?: string | null;
|
|
12536
|
-
unitOfMeasure?: string | null;
|
|
12537
|
-
typeCharacter?: string | null;
|
|
12538
|
-
plusTolerance?: number | null;
|
|
12539
|
-
minusTolerance?: number | null;
|
|
12540
|
-
upperLimit?: number | null;
|
|
12541
|
-
lowerLimit?: number | null;
|
|
12542
|
-
comments?: string | null;
|
|
12543
|
-
updatedByUser?: string | null;
|
|
12544
|
-
updatedDate?: Date | null;
|
|
12545
|
-
createdByUser?: string | null;
|
|
12546
|
-
createdDate?: Date;
|
|
12547
|
-
frequency?: MeasurementFrequency;
|
|
12548
|
-
frequencyParameter?: number | null;
|
|
12549
|
-
includeInCustomerDocumentation?: boolean;
|
|
12550
|
-
balloonSequence?: number | null;
|
|
12551
|
-
balloonQuantity?: number | null;
|
|
12552
|
-
plusToleranceText?: string | null;
|
|
12553
|
-
minusToleranceText?: string | null;
|
|
12554
|
-
coatingThickness?: number | null;
|
|
12555
|
-
canCopy?: boolean;
|
|
12556
|
-
valueType?: MeasurementFormValueType;
|
|
12557
|
-
inspectionMethod?: string | null;
|
|
12558
|
-
process?: string | null;
|
|
12559
|
-
classification?: string | null;
|
|
12560
|
-
fitGrade?: string | null;
|
|
12561
|
-
fitType?: number | null;
|
|
12562
|
-
forReference?: boolean;
|
|
12563
|
-
constructor(data?: IMeasurementFormElementImportDto);
|
|
12564
|
-
init(_data?: any): void;
|
|
12565
|
-
static fromJS(data: any): MeasurementFormElementImportDto;
|
|
12566
|
-
toJSON(data?: any): any;
|
|
12567
|
-
}
|
|
12568
|
-
export interface IMeasurementFormElementImportDto {
|
|
12569
|
-
id?: string | null;
|
|
12570
|
-
imageUrl?: string | null;
|
|
12571
|
-
thumbnailUrl?: string | null;
|
|
12572
|
-
balloonId?: string | null;
|
|
12573
|
-
section?: string | null;
|
|
12574
|
-
pageNumber?: number;
|
|
12575
|
-
sheetZone?: string | null;
|
|
12576
|
-
places?: number | null;
|
|
12577
|
-
nominal?: number | null;
|
|
12578
|
-
nominalText?: string | null;
|
|
12579
|
-
type?: string | null;
|
|
12580
|
-
subType?: string | null;
|
|
12581
|
-
unitOfMeasure?: string | null;
|
|
12582
|
-
typeCharacter?: string | null;
|
|
12583
|
-
plusTolerance?: number | null;
|
|
12584
|
-
minusTolerance?: number | null;
|
|
12585
|
-
upperLimit?: number | null;
|
|
12586
|
-
lowerLimit?: number | null;
|
|
12587
|
-
comments?: string | null;
|
|
12588
|
-
updatedByUser?: string | null;
|
|
12589
|
-
updatedDate?: Date | null;
|
|
12590
|
-
createdByUser?: string | null;
|
|
12591
|
-
createdDate?: Date;
|
|
12592
|
-
frequency?: MeasurementFrequency;
|
|
12593
|
-
frequencyParameter?: number | null;
|
|
12594
|
-
includeInCustomerDocumentation?: boolean;
|
|
12595
|
-
balloonSequence?: number | null;
|
|
12596
|
-
balloonQuantity?: number | null;
|
|
12597
|
-
plusToleranceText?: string | null;
|
|
12598
|
-
minusToleranceText?: string | null;
|
|
12599
|
-
coatingThickness?: number | null;
|
|
12600
|
-
canCopy?: boolean;
|
|
12601
|
-
valueType?: MeasurementFormValueType;
|
|
12602
|
-
inspectionMethod?: string | null;
|
|
12603
|
-
process?: string | null;
|
|
12604
|
-
classification?: string | null;
|
|
12605
|
-
fitGrade?: string | null;
|
|
12606
|
-
fitType?: number | null;
|
|
12607
|
-
forReference?: boolean;
|
|
12608
|
-
}
|
|
12609
12400
|
export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
|
|
12610
12401
|
results: MeasurementFormNeedDto[];
|
|
12611
12402
|
continuationToken?: string | null;
|
|
@@ -13054,7 +12845,8 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
13054
12845
|
status: MeasurementFormInstanceStatus;
|
|
13055
12846
|
statusChangedDate?: Date | null;
|
|
13056
12847
|
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
13057
|
-
sequences
|
|
12848
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
12849
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13058
12850
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13059
12851
|
progress: MeasurementFormProgressDto;
|
|
13060
12852
|
approvedReportUrl?: string | null;
|
|
@@ -13078,7 +12870,8 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13078
12870
|
status: MeasurementFormInstanceStatus;
|
|
13079
12871
|
statusChangedDate?: Date | null;
|
|
13080
12872
|
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
13081
|
-
sequences
|
|
12873
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
12874
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13082
12875
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13083
12876
|
progress: MeasurementFormProgressDto;
|
|
13084
12877
|
approvedReportUrl?: string | null;
|
|
@@ -13130,6 +12923,20 @@ export interface IMeasurementFormWorkorderSequenceDto {
|
|
|
13130
12923
|
sequence: string;
|
|
13131
12924
|
serialNumber?: string | null;
|
|
13132
12925
|
}
|
|
12926
|
+
export declare class MeasurementFormWorkorderSerialNumberDto implements IMeasurementFormWorkorderSerialNumberDto {
|
|
12927
|
+
lot?: string | null;
|
|
12928
|
+
serialNumber: string;
|
|
12929
|
+
customerSerialNumber?: string | null;
|
|
12930
|
+
constructor(data?: IMeasurementFormWorkorderSerialNumberDto);
|
|
12931
|
+
init(_data?: any): void;
|
|
12932
|
+
static fromJS(data: any): MeasurementFormWorkorderSerialNumberDto;
|
|
12933
|
+
toJSON(data?: any): any;
|
|
12934
|
+
}
|
|
12935
|
+
export interface IMeasurementFormWorkorderSerialNumberDto {
|
|
12936
|
+
lot?: string | null;
|
|
12937
|
+
serialNumber: string;
|
|
12938
|
+
customerSerialNumber?: string | null;
|
|
12939
|
+
}
|
|
13133
12940
|
export declare class MeasurementFormWorkorderSupplierDto implements IMeasurementFormWorkorderSupplierDto {
|
|
13134
12941
|
supplierId: string;
|
|
13135
12942
|
supplierName?: string | null;
|
|
@@ -13202,6 +13009,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
|
|
|
13202
13009
|
customerName?: string | null;
|
|
13203
13010
|
purchaseOrder?: string | null;
|
|
13204
13011
|
sequences: CreateMeasurementFormInstanceRequestSequence[];
|
|
13012
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13205
13013
|
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13206
13014
|
init(_data?: any): void;
|
|
13207
13015
|
static fromJS(data: any): CreateMeasurementFormInstanceRequest;
|
|
@@ -13213,6 +13021,7 @@ export interface ICreateMeasurementFormInstanceRequest {
|
|
|
13213
13021
|
customerName?: string | null;
|
|
13214
13022
|
purchaseOrder?: string | null;
|
|
13215
13023
|
sequences: CreateMeasurementFormInstanceRequestSequence[];
|
|
13024
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13216
13025
|
}
|
|
13217
13026
|
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
13218
13027
|
sequenceNumber: string;
|
|
@@ -13226,8 +13035,21 @@ export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
|
13226
13035
|
sequenceNumber: string;
|
|
13227
13036
|
serialNumber?: string | null;
|
|
13228
13037
|
}
|
|
13038
|
+
export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13039
|
+
serialNumber: string;
|
|
13040
|
+
customerSerialNumber?: string | null;
|
|
13041
|
+
constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
|
|
13042
|
+
init(_data?: any): void;
|
|
13043
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
|
|
13044
|
+
toJSON(data?: any): any;
|
|
13045
|
+
}
|
|
13046
|
+
export interface ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13047
|
+
serialNumber: string;
|
|
13048
|
+
customerSerialNumber?: string | null;
|
|
13049
|
+
}
|
|
13229
13050
|
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
13230
|
-
sequences
|
|
13051
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13052
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13231
13053
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13232
13054
|
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
13233
13055
|
init(_data?: any): void;
|
|
@@ -13235,7 +13057,8 @@ export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeas
|
|
|
13235
13057
|
toJSON(data?: any): any;
|
|
13236
13058
|
}
|
|
13237
13059
|
export interface IUpdateMeasurementFormInstanceRequest {
|
|
13238
|
-
sequences
|
|
13060
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13061
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13239
13062
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13240
13063
|
}
|
|
13241
13064
|
export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
|
|
@@ -13345,7 +13168,8 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13345
13168
|
export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
|
|
13346
13169
|
bonus?: string | null;
|
|
13347
13170
|
completed: boolean;
|
|
13348
|
-
sequence
|
|
13171
|
+
sequence?: string | null;
|
|
13172
|
+
serialNumber: string;
|
|
13349
13173
|
value?: string | null;
|
|
13350
13174
|
updatedByUser: string;
|
|
13351
13175
|
updatedDate: Date;
|
|
@@ -13361,7 +13185,8 @@ export declare class MeasurementFormElementValueDto implements IMeasurementFormE
|
|
|
13361
13185
|
export interface IMeasurementFormElementValueDto {
|
|
13362
13186
|
bonus?: string | null;
|
|
13363
13187
|
completed: boolean;
|
|
13364
|
-
sequence
|
|
13188
|
+
sequence?: string | null;
|
|
13189
|
+
serialNumber: string;
|
|
13365
13190
|
value?: string | null;
|
|
13366
13191
|
updatedByUser: string;
|
|
13367
13192
|
updatedDate: Date;
|
|
@@ -13403,7 +13228,8 @@ export declare class MeasurementFormElementValueAuditDto implements IMeasurement
|
|
|
13403
13228
|
schemaId: string;
|
|
13404
13229
|
value?: string | null;
|
|
13405
13230
|
bonus?: number | null;
|
|
13406
|
-
sequence
|
|
13231
|
+
sequence?: string | null;
|
|
13232
|
+
serialNumber: string;
|
|
13407
13233
|
elementId: string;
|
|
13408
13234
|
updatedByUser: string;
|
|
13409
13235
|
updatedDate: Date;
|
|
@@ -13420,7 +13246,8 @@ export interface IMeasurementFormElementValueAuditDto {
|
|
|
13420
13246
|
schemaId: string;
|
|
13421
13247
|
value?: string | null;
|
|
13422
13248
|
bonus?: number | null;
|
|
13423
|
-
sequence
|
|
13249
|
+
sequence?: string | null;
|
|
13250
|
+
serialNumber: string;
|
|
13424
13251
|
elementId: string;
|
|
13425
13252
|
updatedByUser: string;
|
|
13426
13253
|
updatedDate: Date;
|
|
@@ -13461,7 +13288,8 @@ export declare class SaveValueRequest implements ISaveValueRequest {
|
|
|
13461
13288
|
resourceName?: string | null;
|
|
13462
13289
|
schemaId: string;
|
|
13463
13290
|
elementId: string;
|
|
13464
|
-
sequence
|
|
13291
|
+
sequence?: string | null;
|
|
13292
|
+
serialNumber: string;
|
|
13465
13293
|
value?: string | null;
|
|
13466
13294
|
bonus?: string | null;
|
|
13467
13295
|
constructor(data?: ISaveValueRequest);
|
|
@@ -13474,14 +13302,16 @@ export interface ISaveValueRequest {
|
|
|
13474
13302
|
resourceName?: string | null;
|
|
13475
13303
|
schemaId: string;
|
|
13476
13304
|
elementId: string;
|
|
13477
|
-
sequence
|
|
13305
|
+
sequence?: string | null;
|
|
13306
|
+
serialNumber: string;
|
|
13478
13307
|
value?: string | null;
|
|
13479
13308
|
bonus?: string | null;
|
|
13480
13309
|
}
|
|
13481
13310
|
export declare class SaveToolRequest implements ISaveToolRequest {
|
|
13482
13311
|
schemaId: string;
|
|
13483
13312
|
elementId: string;
|
|
13484
|
-
sequence
|
|
13313
|
+
sequence?: string | null;
|
|
13314
|
+
serialNumber: string;
|
|
13485
13315
|
tools?: string[] | null;
|
|
13486
13316
|
force?: boolean;
|
|
13487
13317
|
constructor(data?: ISaveToolRequest);
|
|
@@ -13492,14 +13322,16 @@ export declare class SaveToolRequest implements ISaveToolRequest {
|
|
|
13492
13322
|
export interface ISaveToolRequest {
|
|
13493
13323
|
schemaId: string;
|
|
13494
13324
|
elementId: string;
|
|
13495
|
-
sequence
|
|
13325
|
+
sequence?: string | null;
|
|
13326
|
+
serialNumber: string;
|
|
13496
13327
|
tools?: string[] | null;
|
|
13497
13328
|
force?: boolean;
|
|
13498
13329
|
}
|
|
13499
13330
|
export declare class SaveCommentRequest implements ISaveCommentRequest {
|
|
13500
13331
|
schemaId: string;
|
|
13501
13332
|
elementId: string;
|
|
13502
|
-
sequence
|
|
13333
|
+
sequence?: string | null;
|
|
13334
|
+
serialNumber: string;
|
|
13503
13335
|
comment?: string | null;
|
|
13504
13336
|
constructor(data?: ISaveCommentRequest);
|
|
13505
13337
|
init(_data?: any): void;
|
|
@@ -13509,7 +13341,8 @@ export declare class SaveCommentRequest implements ISaveCommentRequest {
|
|
|
13509
13341
|
export interface ISaveCommentRequest {
|
|
13510
13342
|
schemaId: string;
|
|
13511
13343
|
elementId: string;
|
|
13512
|
-
sequence
|
|
13344
|
+
sequence?: string | null;
|
|
13345
|
+
serialNumber: string;
|
|
13513
13346
|
comment?: string | null;
|
|
13514
13347
|
}
|
|
13515
13348
|
export declare class BatchInsertValuesResponseDto implements IBatchInsertValuesResponseDto {
|
|
@@ -13640,6 +13473,7 @@ export declare class ExportDimensionReportRequest implements IExportDimensionRep
|
|
|
13640
13473
|
includeAllSchemasAndElements?: boolean | null;
|
|
13641
13474
|
createBlankReport?: boolean | null;
|
|
13642
13475
|
sequences?: string[] | null;
|
|
13476
|
+
serialNumbers?: string[] | null;
|
|
13643
13477
|
customerPO?: string | null;
|
|
13644
13478
|
workOrder?: string | null;
|
|
13645
13479
|
comment?: string | null;
|
|
@@ -13654,6 +13488,7 @@ export interface IExportDimensionReportRequest {
|
|
|
13654
13488
|
includeAllSchemasAndElements?: boolean | null;
|
|
13655
13489
|
createBlankReport?: boolean | null;
|
|
13656
13490
|
sequences?: string[] | null;
|
|
13491
|
+
serialNumbers?: string[] | null;
|
|
13657
13492
|
customerPO?: string | null;
|
|
13658
13493
|
workOrder?: string | null;
|
|
13659
13494
|
comment?: string | null;
|
|
@@ -13682,88 +13517,6 @@ export interface ISchemaInstanceElementDto {
|
|
|
13682
13517
|
balloonId: string;
|
|
13683
13518
|
disabled: boolean;
|
|
13684
13519
|
}
|
|
13685
|
-
export declare class ImportMeasurementFormInstanceRequest implements IImportMeasurementFormInstanceRequest {
|
|
13686
|
-
partInfo: ImportMeasurementFormPartDto;
|
|
13687
|
-
customerId?: string | null;
|
|
13688
|
-
customerGroupId?: string | null;
|
|
13689
|
-
customerName?: string | null;
|
|
13690
|
-
externalOrderNumber?: string | null;
|
|
13691
|
-
quantity: number;
|
|
13692
|
-
sequences: WorkorderImportTraceItemDto[];
|
|
13693
|
-
status: MeasurementFormInstanceStatus;
|
|
13694
|
-
statusChangedBy?: string | null;
|
|
13695
|
-
statusChangedDate?: Date | null;
|
|
13696
|
-
created: Date;
|
|
13697
|
-
createdBy?: string | null;
|
|
13698
|
-
updatedBy?: string | null;
|
|
13699
|
-
schemas: ImportMeasurementSchemaInstanceDto[];
|
|
13700
|
-
constructor(data?: IImportMeasurementFormInstanceRequest);
|
|
13701
|
-
init(_data?: any): void;
|
|
13702
|
-
static fromJS(data: any): ImportMeasurementFormInstanceRequest;
|
|
13703
|
-
toJSON(data?: any): any;
|
|
13704
|
-
}
|
|
13705
|
-
export interface IImportMeasurementFormInstanceRequest {
|
|
13706
|
-
partInfo: ImportMeasurementFormPartDto;
|
|
13707
|
-
customerId?: string | null;
|
|
13708
|
-
customerGroupId?: string | null;
|
|
13709
|
-
customerName?: string | null;
|
|
13710
|
-
externalOrderNumber?: string | null;
|
|
13711
|
-
quantity: number;
|
|
13712
|
-
sequences: WorkorderImportTraceItemDto[];
|
|
13713
|
-
status: MeasurementFormInstanceStatus;
|
|
13714
|
-
statusChangedBy?: string | null;
|
|
13715
|
-
statusChangedDate?: Date | null;
|
|
13716
|
-
created: Date;
|
|
13717
|
-
createdBy?: string | null;
|
|
13718
|
-
updatedBy?: string | null;
|
|
13719
|
-
schemas: ImportMeasurementSchemaInstanceDto[];
|
|
13720
|
-
}
|
|
13721
|
-
export declare class ImportMeasurementFormPartDto implements IImportMeasurementFormPartDto {
|
|
13722
|
-
partNumber?: string | null;
|
|
13723
|
-
partName?: string | null;
|
|
13724
|
-
partRevision?: string | null;
|
|
13725
|
-
drawing: string;
|
|
13726
|
-
drawingRevision?: string | null;
|
|
13727
|
-
constructor(data?: IImportMeasurementFormPartDto);
|
|
13728
|
-
init(_data?: any): void;
|
|
13729
|
-
static fromJS(data: any): ImportMeasurementFormPartDto;
|
|
13730
|
-
toJSON(data?: any): any;
|
|
13731
|
-
}
|
|
13732
|
-
export interface IImportMeasurementFormPartDto {
|
|
13733
|
-
partNumber?: string | null;
|
|
13734
|
-
partName?: string | null;
|
|
13735
|
-
partRevision?: string | null;
|
|
13736
|
-
drawing: string;
|
|
13737
|
-
drawingRevision?: string | null;
|
|
13738
|
-
}
|
|
13739
|
-
export declare class WorkorderImportTraceItemDto implements IWorkorderImportTraceItemDto {
|
|
13740
|
-
sequence: string;
|
|
13741
|
-
serialNumber?: string | null;
|
|
13742
|
-
lot?: string | null;
|
|
13743
|
-
active: boolean;
|
|
13744
|
-
constructor(data?: IWorkorderImportTraceItemDto);
|
|
13745
|
-
init(_data?: any): void;
|
|
13746
|
-
static fromJS(data: any): WorkorderImportTraceItemDto;
|
|
13747
|
-
toJSON(data?: any): any;
|
|
13748
|
-
}
|
|
13749
|
-
export interface IWorkorderImportTraceItemDto {
|
|
13750
|
-
sequence: string;
|
|
13751
|
-
serialNumber?: string | null;
|
|
13752
|
-
lot?: string | null;
|
|
13753
|
-
active: boolean;
|
|
13754
|
-
}
|
|
13755
|
-
export declare class ImportMeasurementSchemaInstanceDto implements IImportMeasurementSchemaInstanceDto {
|
|
13756
|
-
id: string;
|
|
13757
|
-
version: number;
|
|
13758
|
-
constructor(data?: IImportMeasurementSchemaInstanceDto);
|
|
13759
|
-
init(_data?: any): void;
|
|
13760
|
-
static fromJS(data: any): ImportMeasurementSchemaInstanceDto;
|
|
13761
|
-
toJSON(data?: any): any;
|
|
13762
|
-
}
|
|
13763
|
-
export interface IImportMeasurementSchemaInstanceDto {
|
|
13764
|
-
id: string;
|
|
13765
|
-
version: number;
|
|
13766
|
-
}
|
|
13767
13520
|
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
13768
13521
|
id: string;
|
|
13769
13522
|
name: string;
|