@ignos/api-client 20250729.0.12224-alpha → 20250805.0.12267-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 +106 -24
- package/lib/ignosportal-api.js +416 -27
- package/package.json +1 -1
- package/src/ignosportal-api.ts +508 -48
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2027,7 +2027,7 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2027
2027
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2028
2028
|
}
|
|
2029
2029
|
export interface IMeasurementFormSchemasClient {
|
|
2030
|
-
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined,
|
|
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>;
|
|
2031
2031
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2032
2032
|
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2033
2033
|
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2077,13 +2077,13 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2077
2077
|
* Custom api for initial import. Not to be used more than once per customer.
|
|
2078
2078
|
*/
|
|
2079
2079
|
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2080
|
-
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined,
|
|
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>;
|
|
2081
2081
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2082
2082
|
setMeasurementFormNeedUser(id: string, request: SetMeasurementFormNeedUserRequest): Promise<void>;
|
|
2083
2083
|
setMeasurementFormNeedAsNotNeeded(id: string, request: SetMeasurementFormNeedAsNotNeededRequest): Promise<MeasurementFormSchemaNotNeededDto>;
|
|
2084
2084
|
createMeasurementFormSchemaFromNeed(id: string): Promise<MeasurementFormDto>;
|
|
2085
2085
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2086
|
-
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined,
|
|
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>;
|
|
2087
2087
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2088
2088
|
deleteMeasurmentFormSchemasNotNeeded(id: string): Promise<void>;
|
|
2089
2089
|
listResourceTypesForNeedsGenerator(): Promise<MeasurementFormResourceTypeGeneratorDto[]>;
|
|
@@ -2105,7 +2105,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2105
2105
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2106
2106
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2107
2107
|
});
|
|
2108
|
-
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined,
|
|
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>;
|
|
2109
2109
|
protected processListMeasurmentFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2110
2110
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2111
2111
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
@@ -2190,7 +2190,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2190
2190
|
*/
|
|
2191
2191
|
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2192
2192
|
protected processImportMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2193
|
-
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined,
|
|
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>;
|
|
2194
2194
|
protected processListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2195
2195
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2196
2196
|
protected processPostListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2202,7 +2202,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2202
2202
|
protected processCreateMeasurementFormSchemaFromNeed(response: Response): Promise<MeasurementFormDto>;
|
|
2203
2203
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2204
2204
|
protected processUploadNeedDrawing(response: Response): Promise<MeasurementFormNeedDto>;
|
|
2205
|
-
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined,
|
|
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>;
|
|
2206
2206
|
protected processListMeasurmentFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2207
2207
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2208
2208
|
protected processPostListMeasurementFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
@@ -2623,6 +2623,12 @@ export interface IWorkordersClient {
|
|
|
2623
2623
|
* Deleteds existing work order mappings.
|
|
2624
2624
|
*/
|
|
2625
2625
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2626
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2627
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<void>;
|
|
2628
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2629
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2630
|
+
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined, userUpn: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2631
|
+
setLastRead(id: string, request: SetDiscussionLastRead): Promise<void>;
|
|
2626
2632
|
}
|
|
2627
2633
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2628
2634
|
private http;
|
|
@@ -2752,6 +2758,18 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2752
2758
|
*/
|
|
2753
2759
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2754
2760
|
protected processDeleteWorkOrderMappings(response: Response): Promise<void>;
|
|
2761
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2762
|
+
protected processGetDiscussionMessages(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2763
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<void>;
|
|
2764
|
+
protected processAddDiscussionMessage(response: Response): Promise<void>;
|
|
2765
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2766
|
+
protected processUpdateMessage(response: Response): Promise<FileResponse>;
|
|
2767
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2768
|
+
protected processDeleteMessage(response: Response): Promise<FileResponse>;
|
|
2769
|
+
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined, userUpn: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2770
|
+
protected processGetLastRead(response: Response): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2771
|
+
setLastRead(id: string, request: SetDiscussionLastRead): Promise<void>;
|
|
2772
|
+
protected processSetLastRead(response: Response): Promise<void>;
|
|
2755
2773
|
}
|
|
2756
2774
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
2757
2775
|
displayName: string;
|
|
@@ -11686,7 +11704,6 @@ export declare class ListMeasurementFormSchemasRequest implements IListMeasureme
|
|
|
11686
11704
|
pageSize?: number | null;
|
|
11687
11705
|
customerId?: string | null;
|
|
11688
11706
|
customerName?: string | null;
|
|
11689
|
-
partName?: string | null;
|
|
11690
11707
|
partNumber?: string | null;
|
|
11691
11708
|
partRevision?: string | null;
|
|
11692
11709
|
drawing?: string | null;
|
|
@@ -11702,7 +11719,6 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
11702
11719
|
pageSize?: number | null;
|
|
11703
11720
|
customerId?: string | null;
|
|
11704
11721
|
customerName?: string | null;
|
|
11705
|
-
partName?: string | null;
|
|
11706
11722
|
partNumber?: string | null;
|
|
11707
11723
|
partRevision?: string | null;
|
|
11708
11724
|
drawing?: string | null;
|
|
@@ -12376,7 +12392,6 @@ export declare class ImportMeasurementFormSchema implements IImportMeasurementFo
|
|
|
12376
12392
|
customerId?: string | null;
|
|
12377
12393
|
customerName?: string | null;
|
|
12378
12394
|
partNumber: string;
|
|
12379
|
-
partName?: string | null;
|
|
12380
12395
|
partRevision?: string | null;
|
|
12381
12396
|
drawing?: string | null;
|
|
12382
12397
|
drawingRevision?: string | null;
|
|
@@ -12397,7 +12412,6 @@ export interface IImportMeasurementFormSchema {
|
|
|
12397
12412
|
customerId?: string | null;
|
|
12398
12413
|
customerName?: string | null;
|
|
12399
12414
|
partNumber: string;
|
|
12400
|
-
partName?: string | null;
|
|
12401
12415
|
partRevision?: string | null;
|
|
12402
12416
|
drawing?: string | null;
|
|
12403
12417
|
drawingRevision?: string | null;
|
|
@@ -12413,7 +12427,6 @@ export interface IImportMeasurementFormSchema {
|
|
|
12413
12427
|
export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
|
|
12414
12428
|
customerId?: string | null;
|
|
12415
12429
|
partNumber?: string | null;
|
|
12416
|
-
partName?: string | null;
|
|
12417
12430
|
partRevision?: string | null;
|
|
12418
12431
|
drawing: string;
|
|
12419
12432
|
drawingRevision?: string | null;
|
|
@@ -12426,7 +12439,6 @@ export declare class MeasurementFormImportLinkedSchemaDto implements IMeasuremen
|
|
|
12426
12439
|
export interface IMeasurementFormImportLinkedSchemaDto {
|
|
12427
12440
|
customerId?: string | null;
|
|
12428
12441
|
partNumber?: string | null;
|
|
12429
|
-
partName?: string | null;
|
|
12430
12442
|
partRevision?: string | null;
|
|
12431
12443
|
drawing: string;
|
|
12432
12444
|
drawingRevision?: string | null;
|
|
@@ -12569,7 +12581,6 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
12569
12581
|
customerName?: string | null;
|
|
12570
12582
|
partNumber?: string | null;
|
|
12571
12583
|
partRevision?: string | null;
|
|
12572
|
-
partName?: string | null;
|
|
12573
12584
|
drawing?: string | null;
|
|
12574
12585
|
drawingRevision?: string | null;
|
|
12575
12586
|
workorder?: string | null;
|
|
@@ -12593,7 +12604,6 @@ export interface IMeasurementFormNeedDto {
|
|
|
12593
12604
|
customerName?: string | null;
|
|
12594
12605
|
partNumber?: string | null;
|
|
12595
12606
|
partRevision?: string | null;
|
|
12596
|
-
partName?: string | null;
|
|
12597
12607
|
drawing?: string | null;
|
|
12598
12608
|
drawingRevision?: string | null;
|
|
12599
12609
|
workorder?: string | null;
|
|
@@ -12610,7 +12620,6 @@ export declare class ListMeasurementFormNeedsRequest implements IListMeasurement
|
|
|
12610
12620
|
pageSize?: number | null;
|
|
12611
12621
|
customerId?: string | null;
|
|
12612
12622
|
customerName?: string | null;
|
|
12613
|
-
partName?: string | null;
|
|
12614
12623
|
partNumber?: string | null;
|
|
12615
12624
|
partRevision?: string | null;
|
|
12616
12625
|
drawing?: string | null;
|
|
@@ -12627,7 +12636,6 @@ export interface IListMeasurementFormNeedsRequest {
|
|
|
12627
12636
|
pageSize?: number | null;
|
|
12628
12637
|
customerId?: string | null;
|
|
12629
12638
|
customerName?: string | null;
|
|
12630
|
-
partName?: string | null;
|
|
12631
12639
|
partNumber?: string | null;
|
|
12632
12640
|
partRevision?: string | null;
|
|
12633
12641
|
drawing?: string | null;
|
|
@@ -12697,7 +12705,6 @@ export declare class ListMeasurementFormSchemasNotNeededRequest implements IList
|
|
|
12697
12705
|
customerId?: string | null;
|
|
12698
12706
|
customerName?: string | null;
|
|
12699
12707
|
partNumber?: string | null;
|
|
12700
|
-
partName?: string | null;
|
|
12701
12708
|
partRevision?: string | null;
|
|
12702
12709
|
drawing?: string | null;
|
|
12703
12710
|
drawingRevision?: string | null;
|
|
@@ -12713,7 +12720,6 @@ export interface IListMeasurementFormSchemasNotNeededRequest {
|
|
|
12713
12720
|
customerId?: string | null;
|
|
12714
12721
|
customerName?: string | null;
|
|
12715
12722
|
partNumber?: string | null;
|
|
12716
|
-
partName?: string | null;
|
|
12717
12723
|
partRevision?: string | null;
|
|
12718
12724
|
drawing?: string | null;
|
|
12719
12725
|
drawingRevision?: string | null;
|
|
@@ -12779,7 +12785,6 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12779
12785
|
latestSchemaDefinitionId?: string | null;
|
|
12780
12786
|
partNumber?: string | null;
|
|
12781
12787
|
partRevision?: string | null;
|
|
12782
|
-
partName?: string | null;
|
|
12783
12788
|
drawing?: string | null;
|
|
12784
12789
|
drawingRevision?: string | null;
|
|
12785
12790
|
constructor(data?: ISchemaFeedbackDto);
|
|
@@ -12802,7 +12807,6 @@ export interface ISchemaFeedbackDto {
|
|
|
12802
12807
|
latestSchemaDefinitionId?: string | null;
|
|
12803
12808
|
partNumber?: string | null;
|
|
12804
12809
|
partRevision?: string | null;
|
|
12805
|
-
partName?: string | null;
|
|
12806
12810
|
drawing?: string | null;
|
|
12807
12811
|
drawingRevision?: string | null;
|
|
12808
12812
|
}
|
|
@@ -12870,7 +12874,6 @@ export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
|
12870
12874
|
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
12871
12875
|
id: string;
|
|
12872
12876
|
readonly: boolean;
|
|
12873
|
-
partName?: string | null;
|
|
12874
12877
|
partNumber?: string | null;
|
|
12875
12878
|
partRevision?: string | null;
|
|
12876
12879
|
drawing?: string | null;
|
|
@@ -12891,7 +12894,6 @@ export declare class MeasurementFormInstanceOverviewDto implements IMeasurementF
|
|
|
12891
12894
|
export interface IMeasurementFormInstanceOverviewDto {
|
|
12892
12895
|
id: string;
|
|
12893
12896
|
readonly: boolean;
|
|
12894
|
-
partName?: string | null;
|
|
12895
12897
|
partNumber?: string | null;
|
|
12896
12898
|
partRevision?: string | null;
|
|
12897
12899
|
drawing?: string | null;
|
|
@@ -12988,7 +12990,6 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
12988
12990
|
id: string;
|
|
12989
12991
|
readonly: boolean;
|
|
12990
12992
|
partNumber?: string | null;
|
|
12991
|
-
partName?: string | null;
|
|
12992
12993
|
partRevision?: string | null;
|
|
12993
12994
|
drawing?: string | null;
|
|
12994
12995
|
drawingRevision?: string | null;
|
|
@@ -13012,7 +13013,6 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13012
13013
|
id: string;
|
|
13013
13014
|
readonly: boolean;
|
|
13014
13015
|
partNumber?: string | null;
|
|
13015
|
-
partName?: string | null;
|
|
13016
13016
|
partRevision?: string | null;
|
|
13017
13017
|
drawing?: string | null;
|
|
13018
13018
|
drawingRevision?: string | null;
|
|
@@ -14428,6 +14428,88 @@ export interface ICreateWorkOrderMapping {
|
|
|
14428
14428
|
existingWorkOrderId: string;
|
|
14429
14429
|
newWorkOrderId: string;
|
|
14430
14430
|
}
|
|
14431
|
+
export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessageDto {
|
|
14432
|
+
workorderId?: string;
|
|
14433
|
+
companyId?: string;
|
|
14434
|
+
content?: string;
|
|
14435
|
+
senderUpn?: string;
|
|
14436
|
+
senderName?: string;
|
|
14437
|
+
operationId?: string | null;
|
|
14438
|
+
operationName?: string | null;
|
|
14439
|
+
resourceId?: string | null;
|
|
14440
|
+
created?: Date;
|
|
14441
|
+
constructor(data?: IWorkorderDiscussionMessageDto);
|
|
14442
|
+
init(_data?: any): void;
|
|
14443
|
+
static fromJS(data: any): WorkorderDiscussionMessageDto;
|
|
14444
|
+
toJSON(data?: any): any;
|
|
14445
|
+
}
|
|
14446
|
+
export interface IWorkorderDiscussionMessageDto {
|
|
14447
|
+
workorderId?: string;
|
|
14448
|
+
companyId?: string;
|
|
14449
|
+
content?: string;
|
|
14450
|
+
senderUpn?: string;
|
|
14451
|
+
senderName?: string;
|
|
14452
|
+
operationId?: string | null;
|
|
14453
|
+
operationName?: string | null;
|
|
14454
|
+
resourceId?: string | null;
|
|
14455
|
+
created?: Date;
|
|
14456
|
+
}
|
|
14457
|
+
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14458
|
+
companyId?: string;
|
|
14459
|
+
message?: string;
|
|
14460
|
+
senderUpn?: string;
|
|
14461
|
+
senderName?: string;
|
|
14462
|
+
operationId?: string | null;
|
|
14463
|
+
operationName?: string | null;
|
|
14464
|
+
resourceId?: string | null;
|
|
14465
|
+
constructor(data?: IAddDiscussionMessageRequest);
|
|
14466
|
+
init(_data?: any): void;
|
|
14467
|
+
static fromJS(data: any): AddDiscussionMessageRequest;
|
|
14468
|
+
toJSON(data?: any): any;
|
|
14469
|
+
}
|
|
14470
|
+
export interface IAddDiscussionMessageRequest {
|
|
14471
|
+
companyId?: string;
|
|
14472
|
+
message?: string;
|
|
14473
|
+
senderUpn?: string;
|
|
14474
|
+
senderName?: string;
|
|
14475
|
+
operationId?: string | null;
|
|
14476
|
+
operationName?: string | null;
|
|
14477
|
+
resourceId?: string | null;
|
|
14478
|
+
}
|
|
14479
|
+
export declare class WorkorderDiscussionReadStatusDto implements IWorkorderDiscussionReadStatusDto {
|
|
14480
|
+
workorderId?: string;
|
|
14481
|
+
operationId?: string | null;
|
|
14482
|
+
resourceId?: string | null;
|
|
14483
|
+
userUpn?: string;
|
|
14484
|
+
lastRead?: Date;
|
|
14485
|
+
constructor(data?: IWorkorderDiscussionReadStatusDto);
|
|
14486
|
+
init(_data?: any): void;
|
|
14487
|
+
static fromJS(data: any): WorkorderDiscussionReadStatusDto;
|
|
14488
|
+
toJSON(data?: any): any;
|
|
14489
|
+
}
|
|
14490
|
+
export interface IWorkorderDiscussionReadStatusDto {
|
|
14491
|
+
workorderId?: string;
|
|
14492
|
+
operationId?: string | null;
|
|
14493
|
+
resourceId?: string | null;
|
|
14494
|
+
userUpn?: string;
|
|
14495
|
+
lastRead?: Date;
|
|
14496
|
+
}
|
|
14497
|
+
export declare class SetDiscussionLastRead implements ISetDiscussionLastRead {
|
|
14498
|
+
workorderId?: string;
|
|
14499
|
+
operationId?: string | null;
|
|
14500
|
+
resourceId?: string | null;
|
|
14501
|
+
userUpn?: string;
|
|
14502
|
+
constructor(data?: ISetDiscussionLastRead);
|
|
14503
|
+
init(_data?: any): void;
|
|
14504
|
+
static fromJS(data: any): SetDiscussionLastRead;
|
|
14505
|
+
toJSON(data?: any): any;
|
|
14506
|
+
}
|
|
14507
|
+
export interface ISetDiscussionLastRead {
|
|
14508
|
+
workorderId?: string;
|
|
14509
|
+
operationId?: string | null;
|
|
14510
|
+
resourceId?: string | null;
|
|
14511
|
+
userUpn?: string;
|
|
14512
|
+
}
|
|
14431
14513
|
export interface FileParameter {
|
|
14432
14514
|
data: any;
|
|
14433
14515
|
fileName: string;
|