@ignos/api-client 20250711.0.12192-alpha → 20250725.0.12210-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.
- package/lib/ignosportal-api.d.ts +185 -52
- package/lib/ignosportal-api.js +455 -82
- package/package.json +1 -1
- package/src/ignosportal-api.ts +633 -132
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2268,9 +2268,9 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2268
2268
|
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2269
2269
|
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2270
2270
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2271
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string,
|
|
2271
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, sequence: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2272
2272
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2273
|
-
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined,
|
|
2273
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, sequence: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2274
2274
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2275
2275
|
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2276
2276
|
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
@@ -2286,6 +2286,7 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2286
2286
|
updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
|
|
2287
2287
|
getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
|
|
2288
2288
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2289
|
+
importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2289
2290
|
}
|
|
2290
2291
|
export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
2291
2292
|
private http;
|
|
@@ -2322,11 +2323,11 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2322
2323
|
protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2323
2324
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2324
2325
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2325
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string,
|
|
2326
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, sequence: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2326
2327
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2327
2328
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2328
2329
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2329
|
-
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined,
|
|
2330
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, sequence: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2330
2331
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2331
2332
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2332
2333
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
@@ -2358,6 +2359,8 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2358
2359
|
protected processGetSchemaInstanceElements(response: Response): Promise<SchemaInstanceElementDto[]>;
|
|
2359
2360
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2360
2361
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2362
|
+
importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2363
|
+
protected processImportMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2361
2364
|
}
|
|
2362
2365
|
export interface IElectricalClient {
|
|
2363
2366
|
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
@@ -2620,6 +2623,8 @@ export interface IWorkordersClient {
|
|
|
2620
2623
|
* Deleteds existing work order mappings.
|
|
2621
2624
|
*/
|
|
2622
2625
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2626
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessage[]>;
|
|
2627
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessage>;
|
|
2623
2628
|
}
|
|
2624
2629
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2625
2630
|
private http;
|
|
@@ -2749,6 +2754,10 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2749
2754
|
*/
|
|
2750
2755
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2751
2756
|
protected processDeleteWorkOrderMappings(response: Response): Promise<void>;
|
|
2757
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessage[]>;
|
|
2758
|
+
protected processGetDiscussionMessages(response: Response): Promise<WorkorderDiscussionMessage[]>;
|
|
2759
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessage>;
|
|
2760
|
+
protected processAddDiscussionMessage(response: Response): Promise<WorkorderDiscussionMessage>;
|
|
2752
2761
|
}
|
|
2753
2762
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
2754
2763
|
displayName: string;
|
|
@@ -12978,8 +12987,7 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
12978
12987
|
status: MeasurementFormInstanceStatus;
|
|
12979
12988
|
statusChangedDate?: Date | null;
|
|
12980
12989
|
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
12981
|
-
sequences
|
|
12982
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
12990
|
+
sequences: MeasurementFormWorkorderSequenceDto[];
|
|
12983
12991
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
12984
12992
|
progress: MeasurementFormProgressDto;
|
|
12985
12993
|
approvedReportUrl?: string | null;
|
|
@@ -13002,8 +13010,7 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13002
13010
|
status: MeasurementFormInstanceStatus;
|
|
13003
13011
|
statusChangedDate?: Date | null;
|
|
13004
13012
|
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
13005
|
-
sequences
|
|
13006
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13013
|
+
sequences: MeasurementFormWorkorderSequenceDto[];
|
|
13007
13014
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13008
13015
|
progress: MeasurementFormProgressDto;
|
|
13009
13016
|
approvedReportUrl?: string | null;
|
|
@@ -13055,20 +13062,6 @@ export interface IMeasurementFormWorkorderSequenceDto {
|
|
|
13055
13062
|
sequence: string;
|
|
13056
13063
|
serialNumber?: string | null;
|
|
13057
13064
|
}
|
|
13058
|
-
export declare class MeasurementFormWorkorderSerialNumberDto implements IMeasurementFormWorkorderSerialNumberDto {
|
|
13059
|
-
lot?: string | null;
|
|
13060
|
-
serialNumber: string;
|
|
13061
|
-
customerSerialNumber?: string | null;
|
|
13062
|
-
constructor(data?: IMeasurementFormWorkorderSerialNumberDto);
|
|
13063
|
-
init(_data?: any): void;
|
|
13064
|
-
static fromJS(data: any): MeasurementFormWorkorderSerialNumberDto;
|
|
13065
|
-
toJSON(data?: any): any;
|
|
13066
|
-
}
|
|
13067
|
-
export interface IMeasurementFormWorkorderSerialNumberDto {
|
|
13068
|
-
lot?: string | null;
|
|
13069
|
-
serialNumber: string;
|
|
13070
|
-
customerSerialNumber?: string | null;
|
|
13071
|
-
}
|
|
13072
13065
|
export declare class MeasurementFormWorkorderSupplierDto implements IMeasurementFormWorkorderSupplierDto {
|
|
13073
13066
|
supplierId: string;
|
|
13074
13067
|
supplierName?: string | null;
|
|
@@ -13166,8 +13159,7 @@ export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
|
13166
13159
|
serialNumber?: string | null;
|
|
13167
13160
|
}
|
|
13168
13161
|
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
13169
|
-
sequences
|
|
13170
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13162
|
+
sequences: MeasurementFormWorkorderSequenceDto[];
|
|
13171
13163
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13172
13164
|
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
13173
13165
|
init(_data?: any): void;
|
|
@@ -13175,8 +13167,7 @@ export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeas
|
|
|
13175
13167
|
toJSON(data?: any): any;
|
|
13176
13168
|
}
|
|
13177
13169
|
export interface IUpdateMeasurementFormInstanceRequest {
|
|
13178
|
-
sequences
|
|
13179
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13170
|
+
sequences: MeasurementFormWorkorderSequenceDto[];
|
|
13180
13171
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13181
13172
|
}
|
|
13182
13173
|
export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
|
|
@@ -13286,8 +13277,7 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13286
13277
|
export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
|
|
13287
13278
|
bonus?: string | null;
|
|
13288
13279
|
completed: boolean;
|
|
13289
|
-
sequence
|
|
13290
|
-
serialNumber: string;
|
|
13280
|
+
sequence: string;
|
|
13291
13281
|
value?: string | null;
|
|
13292
13282
|
updatedByUser: string;
|
|
13293
13283
|
updatedDate: Date;
|
|
@@ -13303,8 +13293,7 @@ export declare class MeasurementFormElementValueDto implements IMeasurementFormE
|
|
|
13303
13293
|
export interface IMeasurementFormElementValueDto {
|
|
13304
13294
|
bonus?: string | null;
|
|
13305
13295
|
completed: boolean;
|
|
13306
|
-
sequence
|
|
13307
|
-
serialNumber: string;
|
|
13296
|
+
sequence: string;
|
|
13308
13297
|
value?: string | null;
|
|
13309
13298
|
updatedByUser: string;
|
|
13310
13299
|
updatedDate: Date;
|
|
@@ -13346,8 +13335,7 @@ export declare class MeasurementFormElementValueAuditDto implements IMeasurement
|
|
|
13346
13335
|
schemaId: string;
|
|
13347
13336
|
value?: string | null;
|
|
13348
13337
|
bonus?: number | null;
|
|
13349
|
-
sequence
|
|
13350
|
-
serialNumber: string;
|
|
13338
|
+
sequence: string;
|
|
13351
13339
|
elementId: string;
|
|
13352
13340
|
updatedByUser: string;
|
|
13353
13341
|
updatedDate: Date;
|
|
@@ -13364,8 +13352,7 @@ export interface IMeasurementFormElementValueAuditDto {
|
|
|
13364
13352
|
schemaId: string;
|
|
13365
13353
|
value?: string | null;
|
|
13366
13354
|
bonus?: number | null;
|
|
13367
|
-
sequence
|
|
13368
|
-
serialNumber: string;
|
|
13355
|
+
sequence: string;
|
|
13369
13356
|
elementId: string;
|
|
13370
13357
|
updatedByUser: string;
|
|
13371
13358
|
updatedDate: Date;
|
|
@@ -13406,8 +13393,7 @@ export declare class SaveValueRequest implements ISaveValueRequest {
|
|
|
13406
13393
|
resourceName?: string | null;
|
|
13407
13394
|
schemaId: string;
|
|
13408
13395
|
elementId: string;
|
|
13409
|
-
sequence
|
|
13410
|
-
serialNumber: string;
|
|
13396
|
+
sequence: string;
|
|
13411
13397
|
value?: string | null;
|
|
13412
13398
|
bonus?: string | null;
|
|
13413
13399
|
constructor(data?: ISaveValueRequest);
|
|
@@ -13420,16 +13406,14 @@ export interface ISaveValueRequest {
|
|
|
13420
13406
|
resourceName?: string | null;
|
|
13421
13407
|
schemaId: string;
|
|
13422
13408
|
elementId: string;
|
|
13423
|
-
sequence
|
|
13424
|
-
serialNumber: string;
|
|
13409
|
+
sequence: string;
|
|
13425
13410
|
value?: string | null;
|
|
13426
13411
|
bonus?: string | null;
|
|
13427
13412
|
}
|
|
13428
13413
|
export declare class SaveToolRequest implements ISaveToolRequest {
|
|
13429
13414
|
schemaId: string;
|
|
13430
13415
|
elementId: string;
|
|
13431
|
-
sequence
|
|
13432
|
-
serialNumber: string;
|
|
13416
|
+
sequence: string;
|
|
13433
13417
|
tools?: string[] | null;
|
|
13434
13418
|
force?: boolean;
|
|
13435
13419
|
constructor(data?: ISaveToolRequest);
|
|
@@ -13440,16 +13424,14 @@ export declare class SaveToolRequest implements ISaveToolRequest {
|
|
|
13440
13424
|
export interface ISaveToolRequest {
|
|
13441
13425
|
schemaId: string;
|
|
13442
13426
|
elementId: string;
|
|
13443
|
-
sequence
|
|
13444
|
-
serialNumber: string;
|
|
13427
|
+
sequence: string;
|
|
13445
13428
|
tools?: string[] | null;
|
|
13446
13429
|
force?: boolean;
|
|
13447
13430
|
}
|
|
13448
13431
|
export declare class SaveCommentRequest implements ISaveCommentRequest {
|
|
13449
13432
|
schemaId: string;
|
|
13450
13433
|
elementId: string;
|
|
13451
|
-
sequence
|
|
13452
|
-
serialNumber: string;
|
|
13434
|
+
sequence: string;
|
|
13453
13435
|
comment?: string | null;
|
|
13454
13436
|
constructor(data?: ISaveCommentRequest);
|
|
13455
13437
|
init(_data?: any): void;
|
|
@@ -13459,8 +13441,7 @@ export declare class SaveCommentRequest implements ISaveCommentRequest {
|
|
|
13459
13441
|
export interface ISaveCommentRequest {
|
|
13460
13442
|
schemaId: string;
|
|
13461
13443
|
elementId: string;
|
|
13462
|
-
sequence
|
|
13463
|
-
serialNumber: string;
|
|
13444
|
+
sequence: string;
|
|
13464
13445
|
comment?: string | null;
|
|
13465
13446
|
}
|
|
13466
13447
|
export declare class BatchInsertValuesResponseDto implements IBatchInsertValuesResponseDto {
|
|
@@ -13591,7 +13572,6 @@ export declare class ExportDimensionReportRequest implements IExportDimensionRep
|
|
|
13591
13572
|
includeAllSchemasAndElements?: boolean | null;
|
|
13592
13573
|
createBlankReport?: boolean | null;
|
|
13593
13574
|
sequences?: string[] | null;
|
|
13594
|
-
serialNumbers?: string[] | null;
|
|
13595
13575
|
customerPO?: string | null;
|
|
13596
13576
|
workOrder?: string | null;
|
|
13597
13577
|
comment?: string | null;
|
|
@@ -13606,7 +13586,6 @@ export interface IExportDimensionReportRequest {
|
|
|
13606
13586
|
includeAllSchemasAndElements?: boolean | null;
|
|
13607
13587
|
createBlankReport?: boolean | null;
|
|
13608
13588
|
sequences?: string[] | null;
|
|
13609
|
-
serialNumbers?: string[] | null;
|
|
13610
13589
|
customerPO?: string | null;
|
|
13611
13590
|
workOrder?: string | null;
|
|
13612
13591
|
comment?: string | null;
|
|
@@ -13635,6 +13614,88 @@ export interface ISchemaInstanceElementDto {
|
|
|
13635
13614
|
balloonId: string;
|
|
13636
13615
|
disabled: boolean;
|
|
13637
13616
|
}
|
|
13617
|
+
export declare class ImportMeasurementFormInstanceRequest implements IImportMeasurementFormInstanceRequest {
|
|
13618
|
+
partInfo: ImportMeasurementFormPartDto;
|
|
13619
|
+
customerId?: string | null;
|
|
13620
|
+
customerGroupId?: string | null;
|
|
13621
|
+
customerName?: string | null;
|
|
13622
|
+
externalOrderNumber?: string | null;
|
|
13623
|
+
quantity: number;
|
|
13624
|
+
sequences: WorkorderImportTraceItemDto[];
|
|
13625
|
+
status: MeasurementFormInstanceStatus;
|
|
13626
|
+
statusChangedBy?: string | null;
|
|
13627
|
+
statusChangedDate?: Date | null;
|
|
13628
|
+
created: Date;
|
|
13629
|
+
createdBy?: string | null;
|
|
13630
|
+
updatedBy?: string | null;
|
|
13631
|
+
schemas: ImportMeasurementSchemaInstanceDto[];
|
|
13632
|
+
constructor(data?: IImportMeasurementFormInstanceRequest);
|
|
13633
|
+
init(_data?: any): void;
|
|
13634
|
+
static fromJS(data: any): ImportMeasurementFormInstanceRequest;
|
|
13635
|
+
toJSON(data?: any): any;
|
|
13636
|
+
}
|
|
13637
|
+
export interface IImportMeasurementFormInstanceRequest {
|
|
13638
|
+
partInfo: ImportMeasurementFormPartDto;
|
|
13639
|
+
customerId?: string | null;
|
|
13640
|
+
customerGroupId?: string | null;
|
|
13641
|
+
customerName?: string | null;
|
|
13642
|
+
externalOrderNumber?: string | null;
|
|
13643
|
+
quantity: number;
|
|
13644
|
+
sequences: WorkorderImportTraceItemDto[];
|
|
13645
|
+
status: MeasurementFormInstanceStatus;
|
|
13646
|
+
statusChangedBy?: string | null;
|
|
13647
|
+
statusChangedDate?: Date | null;
|
|
13648
|
+
created: Date;
|
|
13649
|
+
createdBy?: string | null;
|
|
13650
|
+
updatedBy?: string | null;
|
|
13651
|
+
schemas: ImportMeasurementSchemaInstanceDto[];
|
|
13652
|
+
}
|
|
13653
|
+
export declare class ImportMeasurementFormPartDto implements IImportMeasurementFormPartDto {
|
|
13654
|
+
partNumber?: string | null;
|
|
13655
|
+
partName?: string | null;
|
|
13656
|
+
partRevision?: string | null;
|
|
13657
|
+
drawing: string;
|
|
13658
|
+
drawingRevision?: string | null;
|
|
13659
|
+
constructor(data?: IImportMeasurementFormPartDto);
|
|
13660
|
+
init(_data?: any): void;
|
|
13661
|
+
static fromJS(data: any): ImportMeasurementFormPartDto;
|
|
13662
|
+
toJSON(data?: any): any;
|
|
13663
|
+
}
|
|
13664
|
+
export interface IImportMeasurementFormPartDto {
|
|
13665
|
+
partNumber?: string | null;
|
|
13666
|
+
partName?: string | null;
|
|
13667
|
+
partRevision?: string | null;
|
|
13668
|
+
drawing: string;
|
|
13669
|
+
drawingRevision?: string | null;
|
|
13670
|
+
}
|
|
13671
|
+
export declare class WorkorderImportTraceItemDto implements IWorkorderImportTraceItemDto {
|
|
13672
|
+
sequence: string;
|
|
13673
|
+
serialNumber?: string | null;
|
|
13674
|
+
lot?: string | null;
|
|
13675
|
+
active: boolean;
|
|
13676
|
+
constructor(data?: IWorkorderImportTraceItemDto);
|
|
13677
|
+
init(_data?: any): void;
|
|
13678
|
+
static fromJS(data: any): WorkorderImportTraceItemDto;
|
|
13679
|
+
toJSON(data?: any): any;
|
|
13680
|
+
}
|
|
13681
|
+
export interface IWorkorderImportTraceItemDto {
|
|
13682
|
+
sequence: string;
|
|
13683
|
+
serialNumber?: string | null;
|
|
13684
|
+
lot?: string | null;
|
|
13685
|
+
active: boolean;
|
|
13686
|
+
}
|
|
13687
|
+
export declare class ImportMeasurementSchemaInstanceDto implements IImportMeasurementSchemaInstanceDto {
|
|
13688
|
+
id: string;
|
|
13689
|
+
version: number;
|
|
13690
|
+
constructor(data?: IImportMeasurementSchemaInstanceDto);
|
|
13691
|
+
init(_data?: any): void;
|
|
13692
|
+
static fromJS(data: any): ImportMeasurementSchemaInstanceDto;
|
|
13693
|
+
toJSON(data?: any): any;
|
|
13694
|
+
}
|
|
13695
|
+
export interface IImportMeasurementSchemaInstanceDto {
|
|
13696
|
+
id: string;
|
|
13697
|
+
version: number;
|
|
13698
|
+
}
|
|
13638
13699
|
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
13639
13700
|
id: string;
|
|
13640
13701
|
name: string;
|
|
@@ -14054,10 +14115,8 @@ export interface IUpsertWorkOrderTracesRequest {
|
|
|
14054
14115
|
export declare class WorkOrderTraceItemDto implements IWorkOrderTraceItemDto {
|
|
14055
14116
|
sequence: string;
|
|
14056
14117
|
serialNumber?: string | null;
|
|
14057
|
-
customerSerialNumber?: string | null;
|
|
14058
14118
|
lot?: string | null;
|
|
14059
14119
|
active: boolean;
|
|
14060
|
-
isLegacy?: boolean;
|
|
14061
14120
|
constructor(data?: IWorkOrderTraceItemDto);
|
|
14062
14121
|
init(_data?: any): void;
|
|
14063
14122
|
static fromJS(data: any): WorkOrderTraceItemDto;
|
|
@@ -14066,10 +14125,8 @@ export declare class WorkOrderTraceItemDto implements IWorkOrderTraceItemDto {
|
|
|
14066
14125
|
export interface IWorkOrderTraceItemDto {
|
|
14067
14126
|
sequence: string;
|
|
14068
14127
|
serialNumber?: string | null;
|
|
14069
|
-
customerSerialNumber?: string | null;
|
|
14070
14128
|
lot?: string | null;
|
|
14071
14129
|
active: boolean;
|
|
14072
|
-
isLegacy?: boolean;
|
|
14073
14130
|
}
|
|
14074
14131
|
export declare class ResourceExistDto implements IResourceExistDto {
|
|
14075
14132
|
exists: boolean;
|
|
@@ -14359,6 +14416,82 @@ export interface ICreateWorkOrderMapping {
|
|
|
14359
14416
|
existingWorkOrderId: string;
|
|
14360
14417
|
newWorkOrderId: string;
|
|
14361
14418
|
}
|
|
14419
|
+
export declare class TableEntityBase implements ITableEntityBase {
|
|
14420
|
+
partitionKey?: string;
|
|
14421
|
+
rowKey?: string;
|
|
14422
|
+
timestamp?: Date | null;
|
|
14423
|
+
eTag?: ETag;
|
|
14424
|
+
created?: Date | null;
|
|
14425
|
+
createdBy?: string | null;
|
|
14426
|
+
createdById?: string | null;
|
|
14427
|
+
updatedBy?: string | null;
|
|
14428
|
+
updatedById?: string | null;
|
|
14429
|
+
insertAuditInfo?: AuditInfo;
|
|
14430
|
+
constructor(data?: ITableEntityBase);
|
|
14431
|
+
init(_data?: any): void;
|
|
14432
|
+
static fromJS(data: any): TableEntityBase;
|
|
14433
|
+
toJSON(data?: any): any;
|
|
14434
|
+
}
|
|
14435
|
+
export interface ITableEntityBase {
|
|
14436
|
+
partitionKey?: string;
|
|
14437
|
+
rowKey?: string;
|
|
14438
|
+
timestamp?: Date | null;
|
|
14439
|
+
eTag?: ETag;
|
|
14440
|
+
created?: Date | null;
|
|
14441
|
+
createdBy?: string | null;
|
|
14442
|
+
createdById?: string | null;
|
|
14443
|
+
updatedBy?: string | null;
|
|
14444
|
+
updatedById?: string | null;
|
|
14445
|
+
insertAuditInfo?: AuditInfo;
|
|
14446
|
+
}
|
|
14447
|
+
export declare class WorkorderDiscussionMessage extends TableEntityBase implements IWorkorderDiscussionMessage {
|
|
14448
|
+
content?: string;
|
|
14449
|
+
senderUpn?: string;
|
|
14450
|
+
senderName?: string;
|
|
14451
|
+
constructor(data?: IWorkorderDiscussionMessage);
|
|
14452
|
+
init(_data?: any): void;
|
|
14453
|
+
static fromJS(data: any): WorkorderDiscussionMessage;
|
|
14454
|
+
toJSON(data?: any): any;
|
|
14455
|
+
}
|
|
14456
|
+
export interface IWorkorderDiscussionMessage extends ITableEntityBase {
|
|
14457
|
+
content?: string;
|
|
14458
|
+
senderUpn?: string;
|
|
14459
|
+
senderName?: string;
|
|
14460
|
+
}
|
|
14461
|
+
/** Represents an HTTP ETag. */
|
|
14462
|
+
export declare class ETag implements IETag {
|
|
14463
|
+
constructor(data?: IETag);
|
|
14464
|
+
init(_data?: any): void;
|
|
14465
|
+
static fromJS(data: any): ETag;
|
|
14466
|
+
toJSON(data?: any): any;
|
|
14467
|
+
}
|
|
14468
|
+
/** Represents an HTTP ETag. */
|
|
14469
|
+
export interface IETag {
|
|
14470
|
+
}
|
|
14471
|
+
export declare class AuditInfo implements IAuditInfo {
|
|
14472
|
+
objectId?: string;
|
|
14473
|
+
userId?: string;
|
|
14474
|
+
userFullName?: string | null;
|
|
14475
|
+
constructor(data?: IAuditInfo);
|
|
14476
|
+
init(_data?: any): void;
|
|
14477
|
+
static fromJS(data: any): AuditInfo;
|
|
14478
|
+
toJSON(data?: any): any;
|
|
14479
|
+
}
|
|
14480
|
+
export interface IAuditInfo {
|
|
14481
|
+
objectId?: string;
|
|
14482
|
+
userId?: string;
|
|
14483
|
+
userFullName?: string | null;
|
|
14484
|
+
}
|
|
14485
|
+
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14486
|
+
message?: string;
|
|
14487
|
+
constructor(data?: IAddDiscussionMessageRequest);
|
|
14488
|
+
init(_data?: any): void;
|
|
14489
|
+
static fromJS(data: any): AddDiscussionMessageRequest;
|
|
14490
|
+
toJSON(data?: any): any;
|
|
14491
|
+
}
|
|
14492
|
+
export interface IAddDiscussionMessageRequest {
|
|
14493
|
+
message?: string;
|
|
14494
|
+
}
|
|
14362
14495
|
export interface FileParameter {
|
|
14363
14496
|
data: any;
|
|
14364
14497
|
fileName: string;
|