@ignos/api-client 20250806.0.12310-alpha → 20250808.0.12338
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 +70 -24
- package/lib/ignosportal-api.js +236 -15
- package/package.json +1 -1
- package/src/ignosportal-api.ts +292 -35
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -226,6 +226,9 @@ export interface IMeClient {
|
|
|
226
226
|
getCurrentUser(): Promise<UserDetailsDto>;
|
|
227
227
|
setIsBetaTester(request: SetIsBetaTesterRequest): Promise<UserDto>;
|
|
228
228
|
updateCurrentUserLastSeen(): Promise<void>;
|
|
229
|
+
getRoles(): Promise<string[]>;
|
|
230
|
+
setTestRoles(roles: string[]): Promise<void>;
|
|
231
|
+
removeAllTestRoles(): Promise<void>;
|
|
229
232
|
}
|
|
230
233
|
export declare class MeClient extends AuthorizedApiBase implements IMeClient {
|
|
231
234
|
private http;
|
|
@@ -242,6 +245,12 @@ export declare class MeClient extends AuthorizedApiBase implements IMeClient {
|
|
|
242
245
|
protected processSetIsBetaTester(response: Response): Promise<UserDto>;
|
|
243
246
|
updateCurrentUserLastSeen(): Promise<void>;
|
|
244
247
|
protected processUpdateCurrentUserLastSeen(response: Response): Promise<void>;
|
|
248
|
+
getRoles(): Promise<string[]>;
|
|
249
|
+
protected processGetRoles(response: Response): Promise<string[]>;
|
|
250
|
+
setTestRoles(roles: string[]): Promise<void>;
|
|
251
|
+
protected processSetTestRoles(response: Response): Promise<void>;
|
|
252
|
+
removeAllTestRoles(): Promise<void>;
|
|
253
|
+
protected processRemoveAllTestRoles(response: Response): Promise<void>;
|
|
245
254
|
}
|
|
246
255
|
export interface IUsersClient {
|
|
247
256
|
listUsers(pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfUserDto>;
|
|
@@ -847,6 +856,7 @@ export interface IMachinesClient {
|
|
|
847
856
|
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
848
857
|
listMachineErpData(): Promise<MachineErpDataListDto>;
|
|
849
858
|
getMachineErpData(id: number): Promise<MachineErpDataDto>;
|
|
859
|
+
getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
|
|
850
860
|
getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
851
861
|
getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
|
|
852
862
|
listCurrentMachineOperators(machineExternalId: string | null | undefined, operatorNameQuery: string | null | undefined): Promise<OperatorAndMachineDto[]>;
|
|
@@ -886,6 +896,8 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
886
896
|
protected processListMachineErpData(response: Response): Promise<MachineErpDataListDto>;
|
|
887
897
|
getMachineErpData(id: number): Promise<MachineErpDataDto>;
|
|
888
898
|
protected processGetMachineErpData(response: Response): Promise<MachineErpDataDto>;
|
|
899
|
+
getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
|
|
900
|
+
protected processGetWorkOrderTimeline(response: Response): Promise<WorkOrderDatapoint[]>;
|
|
889
901
|
getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
890
902
|
protected processGetMachineUtilizationSummary(response: Response): Promise<UtilizationSummaryDto>;
|
|
891
903
|
getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
|
|
@@ -2027,7 +2039,7 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2027
2039
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2028
2040
|
}
|
|
2029
2041
|
export interface IMeasurementFormSchemasClient {
|
|
2030
|
-
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2042
|
+
listMeasurmentFormSchemas(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): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2031
2043
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2032
2044
|
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2033
2045
|
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2077,13 +2089,13 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2077
2089
|
* Custom api for initial import. Not to be used more than once per customer.
|
|
2078
2090
|
*/
|
|
2079
2091
|
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2080
|
-
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: 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>;
|
|
2092
|
+
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>;
|
|
2081
2093
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2082
2094
|
setMeasurementFormNeedUser(id: string, request: SetMeasurementFormNeedUserRequest): Promise<void>;
|
|
2083
2095
|
setMeasurementFormNeedAsNotNeeded(id: string, request: SetMeasurementFormNeedAsNotNeededRequest): Promise<MeasurementFormSchemaNotNeededDto>;
|
|
2084
2096
|
createMeasurementFormSchemaFromNeed(id: string): Promise<MeasurementFormDto>;
|
|
2085
2097
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2086
|
-
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2098
|
+
listMeasurmentFormSchemasNotNeeded(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): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2087
2099
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2088
2100
|
deleteMeasurmentFormSchemasNotNeeded(id: string): Promise<void>;
|
|
2089
2101
|
listResourceTypesForNeedsGenerator(): Promise<MeasurementFormResourceTypeGeneratorDto[]>;
|
|
@@ -2105,7 +2117,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2105
2117
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2106
2118
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2107
2119
|
});
|
|
2108
|
-
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2120
|
+
listMeasurmentFormSchemas(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): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2109
2121
|
protected processListMeasurmentFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2110
2122
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2111
2123
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
@@ -2190,7 +2202,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2190
2202
|
*/
|
|
2191
2203
|
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2192
2204
|
protected processImportMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2193
|
-
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: 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>;
|
|
2205
|
+
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>;
|
|
2194
2206
|
protected processListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2195
2207
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2196
2208
|
protected processPostListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2202,7 +2214,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2202
2214
|
protected processCreateMeasurementFormSchemaFromNeed(response: Response): Promise<MeasurementFormDto>;
|
|
2203
2215
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2204
2216
|
protected processUploadNeedDrawing(response: Response): Promise<MeasurementFormNeedDto>;
|
|
2205
|
-
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2217
|
+
listMeasurmentFormSchemasNotNeeded(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): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2206
2218
|
protected processListMeasurmentFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2207
2219
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2208
2220
|
protected processPostListMeasurementFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
@@ -2628,7 +2640,7 @@ export interface IWorkordersClient {
|
|
|
2628
2640
|
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2629
2641
|
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2630
2642
|
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2631
|
-
setLastRead(id: string, request:
|
|
2643
|
+
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2632
2644
|
}
|
|
2633
2645
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2634
2646
|
private http;
|
|
@@ -2768,7 +2780,7 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2768
2780
|
protected processDeleteMessage(response: Response): Promise<FileResponse>;
|
|
2769
2781
|
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2770
2782
|
protected processGetLastRead(response: Response): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2771
|
-
setLastRead(id: string, request:
|
|
2783
|
+
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2772
2784
|
protected processSetLastRead(response: Response): Promise<void>;
|
|
2773
2785
|
}
|
|
2774
2786
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
@@ -6298,6 +6310,32 @@ export interface IWorkOrderProjectDto {
|
|
|
6298
6310
|
name?: string | null;
|
|
6299
6311
|
projectManager?: string | null;
|
|
6300
6312
|
}
|
|
6313
|
+
export declare class WorkOrderDatapoint implements IWorkOrderDatapoint {
|
|
6314
|
+
workOrder: string;
|
|
6315
|
+
id: number;
|
|
6316
|
+
externalId: string;
|
|
6317
|
+
subType?: string | null;
|
|
6318
|
+
startTime: number;
|
|
6319
|
+
endTime?: number | null;
|
|
6320
|
+
metaData?: {
|
|
6321
|
+
[key: string]: string;
|
|
6322
|
+
} | null;
|
|
6323
|
+
constructor(data?: IWorkOrderDatapoint);
|
|
6324
|
+
init(_data?: any): void;
|
|
6325
|
+
static fromJS(data: any): WorkOrderDatapoint;
|
|
6326
|
+
toJSON(data?: any): any;
|
|
6327
|
+
}
|
|
6328
|
+
export interface IWorkOrderDatapoint {
|
|
6329
|
+
workOrder: string;
|
|
6330
|
+
id: number;
|
|
6331
|
+
externalId: string;
|
|
6332
|
+
subType?: string | null;
|
|
6333
|
+
startTime: number;
|
|
6334
|
+
endTime?: number | null;
|
|
6335
|
+
metaData?: {
|
|
6336
|
+
[key: string]: string;
|
|
6337
|
+
} | null;
|
|
6338
|
+
}
|
|
6301
6339
|
export declare class UtilizationSummaryDto implements IUtilizationSummaryDto {
|
|
6302
6340
|
factory: FactoryUtilizationDto;
|
|
6303
6341
|
groups: MachineGroupUtilizationDto[];
|
|
@@ -11704,6 +11742,7 @@ export declare class ListMeasurementFormSchemasRequest implements IListMeasureme
|
|
|
11704
11742
|
pageSize?: number | null;
|
|
11705
11743
|
customerId?: string | null;
|
|
11706
11744
|
customerName?: string | null;
|
|
11745
|
+
partName?: string | null;
|
|
11707
11746
|
partNumber?: string | null;
|
|
11708
11747
|
partRevision?: string | null;
|
|
11709
11748
|
drawing?: string | null;
|
|
@@ -11719,6 +11758,7 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
11719
11758
|
pageSize?: number | null;
|
|
11720
11759
|
customerId?: string | null;
|
|
11721
11760
|
customerName?: string | null;
|
|
11761
|
+
partName?: string | null;
|
|
11722
11762
|
partNumber?: string | null;
|
|
11723
11763
|
partRevision?: string | null;
|
|
11724
11764
|
drawing?: string | null;
|
|
@@ -12392,6 +12432,7 @@ export declare class ImportMeasurementFormSchema implements IImportMeasurementFo
|
|
|
12392
12432
|
customerId?: string | null;
|
|
12393
12433
|
customerName?: string | null;
|
|
12394
12434
|
partNumber: string;
|
|
12435
|
+
partName?: string | null;
|
|
12395
12436
|
partRevision?: string | null;
|
|
12396
12437
|
drawing?: string | null;
|
|
12397
12438
|
drawingRevision?: string | null;
|
|
@@ -12412,6 +12453,7 @@ export interface IImportMeasurementFormSchema {
|
|
|
12412
12453
|
customerId?: string | null;
|
|
12413
12454
|
customerName?: string | null;
|
|
12414
12455
|
partNumber: string;
|
|
12456
|
+
partName?: string | null;
|
|
12415
12457
|
partRevision?: string | null;
|
|
12416
12458
|
drawing?: string | null;
|
|
12417
12459
|
drawingRevision?: string | null;
|
|
@@ -12427,6 +12469,7 @@ export interface IImportMeasurementFormSchema {
|
|
|
12427
12469
|
export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
|
|
12428
12470
|
customerId?: string | null;
|
|
12429
12471
|
partNumber?: string | null;
|
|
12472
|
+
partName?: string | null;
|
|
12430
12473
|
partRevision?: string | null;
|
|
12431
12474
|
drawing: string;
|
|
12432
12475
|
drawingRevision?: string | null;
|
|
@@ -12439,6 +12482,7 @@ export declare class MeasurementFormImportLinkedSchemaDto implements IMeasuremen
|
|
|
12439
12482
|
export interface IMeasurementFormImportLinkedSchemaDto {
|
|
12440
12483
|
customerId?: string | null;
|
|
12441
12484
|
partNumber?: string | null;
|
|
12485
|
+
partName?: string | null;
|
|
12442
12486
|
partRevision?: string | null;
|
|
12443
12487
|
drawing: string;
|
|
12444
12488
|
drawingRevision?: string | null;
|
|
@@ -12581,6 +12625,7 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
12581
12625
|
customerName?: string | null;
|
|
12582
12626
|
partNumber?: string | null;
|
|
12583
12627
|
partRevision?: string | null;
|
|
12628
|
+
partName?: string | null;
|
|
12584
12629
|
drawing?: string | null;
|
|
12585
12630
|
drawingRevision?: string | null;
|
|
12586
12631
|
workorder?: string | null;
|
|
@@ -12604,6 +12649,7 @@ export interface IMeasurementFormNeedDto {
|
|
|
12604
12649
|
customerName?: string | null;
|
|
12605
12650
|
partNumber?: string | null;
|
|
12606
12651
|
partRevision?: string | null;
|
|
12652
|
+
partName?: string | null;
|
|
12607
12653
|
drawing?: string | null;
|
|
12608
12654
|
drawingRevision?: string | null;
|
|
12609
12655
|
workorder?: string | null;
|
|
@@ -12620,6 +12666,7 @@ export declare class ListMeasurementFormNeedsRequest implements IListMeasurement
|
|
|
12620
12666
|
pageSize?: number | null;
|
|
12621
12667
|
customerId?: string | null;
|
|
12622
12668
|
customerName?: string | null;
|
|
12669
|
+
partName?: string | null;
|
|
12623
12670
|
partNumber?: string | null;
|
|
12624
12671
|
partRevision?: string | null;
|
|
12625
12672
|
drawing?: string | null;
|
|
@@ -12636,6 +12683,7 @@ export interface IListMeasurementFormNeedsRequest {
|
|
|
12636
12683
|
pageSize?: number | null;
|
|
12637
12684
|
customerId?: string | null;
|
|
12638
12685
|
customerName?: string | null;
|
|
12686
|
+
partName?: string | null;
|
|
12639
12687
|
partNumber?: string | null;
|
|
12640
12688
|
partRevision?: string | null;
|
|
12641
12689
|
drawing?: string | null;
|
|
@@ -12705,6 +12753,7 @@ export declare class ListMeasurementFormSchemasNotNeededRequest implements IList
|
|
|
12705
12753
|
customerId?: string | null;
|
|
12706
12754
|
customerName?: string | null;
|
|
12707
12755
|
partNumber?: string | null;
|
|
12756
|
+
partName?: string | null;
|
|
12708
12757
|
partRevision?: string | null;
|
|
12709
12758
|
drawing?: string | null;
|
|
12710
12759
|
drawingRevision?: string | null;
|
|
@@ -12720,6 +12769,7 @@ export interface IListMeasurementFormSchemasNotNeededRequest {
|
|
|
12720
12769
|
customerId?: string | null;
|
|
12721
12770
|
customerName?: string | null;
|
|
12722
12771
|
partNumber?: string | null;
|
|
12772
|
+
partName?: string | null;
|
|
12723
12773
|
partRevision?: string | null;
|
|
12724
12774
|
drawing?: string | null;
|
|
12725
12775
|
drawingRevision?: string | null;
|
|
@@ -12785,6 +12835,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12785
12835
|
latestSchemaDefinitionId?: string | null;
|
|
12786
12836
|
partNumber?: string | null;
|
|
12787
12837
|
partRevision?: string | null;
|
|
12838
|
+
partName?: string | null;
|
|
12788
12839
|
drawing?: string | null;
|
|
12789
12840
|
drawingRevision?: string | null;
|
|
12790
12841
|
constructor(data?: ISchemaFeedbackDto);
|
|
@@ -12807,6 +12858,7 @@ export interface ISchemaFeedbackDto {
|
|
|
12807
12858
|
latestSchemaDefinitionId?: string | null;
|
|
12808
12859
|
partNumber?: string | null;
|
|
12809
12860
|
partRevision?: string | null;
|
|
12861
|
+
partName?: string | null;
|
|
12810
12862
|
drawing?: string | null;
|
|
12811
12863
|
drawingRevision?: string | null;
|
|
12812
12864
|
}
|
|
@@ -12874,6 +12926,7 @@ export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
|
12874
12926
|
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
12875
12927
|
id: string;
|
|
12876
12928
|
readonly: boolean;
|
|
12929
|
+
partName?: string | null;
|
|
12877
12930
|
partNumber?: string | null;
|
|
12878
12931
|
partRevision?: string | null;
|
|
12879
12932
|
drawing?: string | null;
|
|
@@ -12894,6 +12947,7 @@ export declare class MeasurementFormInstanceOverviewDto implements IMeasurementF
|
|
|
12894
12947
|
export interface IMeasurementFormInstanceOverviewDto {
|
|
12895
12948
|
id: string;
|
|
12896
12949
|
readonly: boolean;
|
|
12950
|
+
partName?: string | null;
|
|
12897
12951
|
partNumber?: string | null;
|
|
12898
12952
|
partRevision?: string | null;
|
|
12899
12953
|
drawing?: string | null;
|
|
@@ -12990,6 +13044,7 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
12990
13044
|
id: string;
|
|
12991
13045
|
readonly: boolean;
|
|
12992
13046
|
partNumber?: string | null;
|
|
13047
|
+
partName?: string | null;
|
|
12993
13048
|
partRevision?: string | null;
|
|
12994
13049
|
drawing?: string | null;
|
|
12995
13050
|
drawingRevision?: string | null;
|
|
@@ -13013,6 +13068,7 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13013
13068
|
id: string;
|
|
13014
13069
|
readonly: boolean;
|
|
13015
13070
|
partNumber?: string | null;
|
|
13071
|
+
partName?: string | null;
|
|
13016
13072
|
partRevision?: string | null;
|
|
13017
13073
|
drawing?: string | null;
|
|
13018
13074
|
drawingRevision?: string | null;
|
|
@@ -14457,10 +14513,7 @@ export interface IWorkorderDiscussionMessageDto {
|
|
|
14457
14513
|
created?: Date;
|
|
14458
14514
|
}
|
|
14459
14515
|
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14460
|
-
|
|
14461
|
-
message?: string;
|
|
14462
|
-
senderUpn?: string;
|
|
14463
|
-
senderName?: string;
|
|
14516
|
+
message: string;
|
|
14464
14517
|
operationId?: string | null;
|
|
14465
14518
|
operationName?: string | null;
|
|
14466
14519
|
resourceId?: string | null;
|
|
@@ -14470,10 +14523,7 @@ export declare class AddDiscussionMessageRequest implements IAddDiscussionMessag
|
|
|
14470
14523
|
toJSON(data?: any): any;
|
|
14471
14524
|
}
|
|
14472
14525
|
export interface IAddDiscussionMessageRequest {
|
|
14473
|
-
|
|
14474
|
-
message?: string;
|
|
14475
|
-
senderUpn?: string;
|
|
14476
|
-
senderName?: string;
|
|
14526
|
+
message: string;
|
|
14477
14527
|
operationId?: string | null;
|
|
14478
14528
|
operationName?: string | null;
|
|
14479
14529
|
resourceId?: string | null;
|
|
@@ -14496,21 +14546,17 @@ export interface IWorkorderDiscussionReadStatusDto {
|
|
|
14496
14546
|
userUpn?: string;
|
|
14497
14547
|
lastRead?: Date;
|
|
14498
14548
|
}
|
|
14499
|
-
export declare class
|
|
14500
|
-
workorderId?: string;
|
|
14549
|
+
export declare class SetDiscussionLastReadRequest implements ISetDiscussionLastReadRequest {
|
|
14501
14550
|
operationId?: string | null;
|
|
14502
14551
|
resourceId?: string | null;
|
|
14503
|
-
|
|
14504
|
-
constructor(data?: ISetDiscussionLastRead);
|
|
14552
|
+
constructor(data?: ISetDiscussionLastReadRequest);
|
|
14505
14553
|
init(_data?: any): void;
|
|
14506
|
-
static fromJS(data: any):
|
|
14554
|
+
static fromJS(data: any): SetDiscussionLastReadRequest;
|
|
14507
14555
|
toJSON(data?: any): any;
|
|
14508
14556
|
}
|
|
14509
|
-
export interface
|
|
14510
|
-
workorderId?: string;
|
|
14557
|
+
export interface ISetDiscussionLastReadRequest {
|
|
14511
14558
|
operationId?: string | null;
|
|
14512
14559
|
resourceId?: string | null;
|
|
14513
|
-
userUpn?: string;
|
|
14514
14560
|
}
|
|
14515
14561
|
export interface FileParameter {
|
|
14516
14562
|
data: any;
|