@ignos/api-client 20250807.0.12317 → 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 +116 -6
- package/lib/ignosportal-api.js +434 -3
- package/package.json +1 -1
- package/src/ignosportal-api.ts +536 -6
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2039,7 +2039,7 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2039
2039
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2040
2040
|
}
|
|
2041
2041
|
export interface IMeasurementFormSchemasClient {
|
|
2042
|
-
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>;
|
|
2043
2043
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2044
2044
|
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2045
2045
|
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2089,13 +2089,13 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2089
2089
|
* Custom api for initial import. Not to be used more than once per customer.
|
|
2090
2090
|
*/
|
|
2091
2091
|
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2092
|
-
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>;
|
|
2093
2093
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2094
2094
|
setMeasurementFormNeedUser(id: string, request: SetMeasurementFormNeedUserRequest): Promise<void>;
|
|
2095
2095
|
setMeasurementFormNeedAsNotNeeded(id: string, request: SetMeasurementFormNeedAsNotNeededRequest): Promise<MeasurementFormSchemaNotNeededDto>;
|
|
2096
2096
|
createMeasurementFormSchemaFromNeed(id: string): Promise<MeasurementFormDto>;
|
|
2097
2097
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2098
|
-
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>;
|
|
2099
2099
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2100
2100
|
deleteMeasurmentFormSchemasNotNeeded(id: string): Promise<void>;
|
|
2101
2101
|
listResourceTypesForNeedsGenerator(): Promise<MeasurementFormResourceTypeGeneratorDto[]>;
|
|
@@ -2117,7 +2117,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2117
2117
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2118
2118
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2119
2119
|
});
|
|
2120
|
-
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>;
|
|
2121
2121
|
protected processListMeasurmentFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2122
2122
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2123
2123
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
@@ -2202,7 +2202,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2202
2202
|
*/
|
|
2203
2203
|
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2204
2204
|
protected processImportMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2205
|
-
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>;
|
|
2206
2206
|
protected processListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2207
2207
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2208
2208
|
protected processPostListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2214,7 +2214,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2214
2214
|
protected processCreateMeasurementFormSchemaFromNeed(response: Response): Promise<MeasurementFormDto>;
|
|
2215
2215
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2216
2216
|
protected processUploadNeedDrawing(response: Response): Promise<MeasurementFormNeedDto>;
|
|
2217
|
-
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>;
|
|
2218
2218
|
protected processListMeasurmentFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2219
2219
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2220
2220
|
protected processPostListMeasurementFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
@@ -2635,6 +2635,12 @@ export interface IWorkordersClient {
|
|
|
2635
2635
|
* Deleteds existing work order mappings.
|
|
2636
2636
|
*/
|
|
2637
2637
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2638
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2639
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessageDto>;
|
|
2640
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2641
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2642
|
+
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2643
|
+
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2638
2644
|
}
|
|
2639
2645
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2640
2646
|
private http;
|
|
@@ -2764,6 +2770,18 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2764
2770
|
*/
|
|
2765
2771
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2766
2772
|
protected processDeleteWorkOrderMappings(response: Response): Promise<void>;
|
|
2773
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2774
|
+
protected processGetDiscussionMessages(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2775
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessageDto>;
|
|
2776
|
+
protected processAddDiscussionMessage(response: Response): Promise<WorkorderDiscussionMessageDto>;
|
|
2777
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2778
|
+
protected processUpdateMessage(response: Response): Promise<FileResponse>;
|
|
2779
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2780
|
+
protected processDeleteMessage(response: Response): Promise<FileResponse>;
|
|
2781
|
+
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2782
|
+
protected processGetLastRead(response: Response): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2783
|
+
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2784
|
+
protected processSetLastRead(response: Response): Promise<void>;
|
|
2767
2785
|
}
|
|
2768
2786
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
2769
2787
|
displayName: string;
|
|
@@ -11724,6 +11742,7 @@ export declare class ListMeasurementFormSchemasRequest implements IListMeasureme
|
|
|
11724
11742
|
pageSize?: number | null;
|
|
11725
11743
|
customerId?: string | null;
|
|
11726
11744
|
customerName?: string | null;
|
|
11745
|
+
partName?: string | null;
|
|
11727
11746
|
partNumber?: string | null;
|
|
11728
11747
|
partRevision?: string | null;
|
|
11729
11748
|
drawing?: string | null;
|
|
@@ -11739,6 +11758,7 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
11739
11758
|
pageSize?: number | null;
|
|
11740
11759
|
customerId?: string | null;
|
|
11741
11760
|
customerName?: string | null;
|
|
11761
|
+
partName?: string | null;
|
|
11742
11762
|
partNumber?: string | null;
|
|
11743
11763
|
partRevision?: string | null;
|
|
11744
11764
|
drawing?: string | null;
|
|
@@ -12412,6 +12432,7 @@ export declare class ImportMeasurementFormSchema implements IImportMeasurementFo
|
|
|
12412
12432
|
customerId?: string | null;
|
|
12413
12433
|
customerName?: string | null;
|
|
12414
12434
|
partNumber: string;
|
|
12435
|
+
partName?: string | null;
|
|
12415
12436
|
partRevision?: string | null;
|
|
12416
12437
|
drawing?: string | null;
|
|
12417
12438
|
drawingRevision?: string | null;
|
|
@@ -12432,6 +12453,7 @@ export interface IImportMeasurementFormSchema {
|
|
|
12432
12453
|
customerId?: string | null;
|
|
12433
12454
|
customerName?: string | null;
|
|
12434
12455
|
partNumber: string;
|
|
12456
|
+
partName?: string | null;
|
|
12435
12457
|
partRevision?: string | null;
|
|
12436
12458
|
drawing?: string | null;
|
|
12437
12459
|
drawingRevision?: string | null;
|
|
@@ -12447,6 +12469,7 @@ export interface IImportMeasurementFormSchema {
|
|
|
12447
12469
|
export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
|
|
12448
12470
|
customerId?: string | null;
|
|
12449
12471
|
partNumber?: string | null;
|
|
12472
|
+
partName?: string | null;
|
|
12450
12473
|
partRevision?: string | null;
|
|
12451
12474
|
drawing: string;
|
|
12452
12475
|
drawingRevision?: string | null;
|
|
@@ -12459,6 +12482,7 @@ export declare class MeasurementFormImportLinkedSchemaDto implements IMeasuremen
|
|
|
12459
12482
|
export interface IMeasurementFormImportLinkedSchemaDto {
|
|
12460
12483
|
customerId?: string | null;
|
|
12461
12484
|
partNumber?: string | null;
|
|
12485
|
+
partName?: string | null;
|
|
12462
12486
|
partRevision?: string | null;
|
|
12463
12487
|
drawing: string;
|
|
12464
12488
|
drawingRevision?: string | null;
|
|
@@ -12601,6 +12625,7 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
12601
12625
|
customerName?: string | null;
|
|
12602
12626
|
partNumber?: string | null;
|
|
12603
12627
|
partRevision?: string | null;
|
|
12628
|
+
partName?: string | null;
|
|
12604
12629
|
drawing?: string | null;
|
|
12605
12630
|
drawingRevision?: string | null;
|
|
12606
12631
|
workorder?: string | null;
|
|
@@ -12624,6 +12649,7 @@ export interface IMeasurementFormNeedDto {
|
|
|
12624
12649
|
customerName?: string | null;
|
|
12625
12650
|
partNumber?: string | null;
|
|
12626
12651
|
partRevision?: string | null;
|
|
12652
|
+
partName?: string | null;
|
|
12627
12653
|
drawing?: string | null;
|
|
12628
12654
|
drawingRevision?: string | null;
|
|
12629
12655
|
workorder?: string | null;
|
|
@@ -12640,6 +12666,7 @@ export declare class ListMeasurementFormNeedsRequest implements IListMeasurement
|
|
|
12640
12666
|
pageSize?: number | null;
|
|
12641
12667
|
customerId?: string | null;
|
|
12642
12668
|
customerName?: string | null;
|
|
12669
|
+
partName?: string | null;
|
|
12643
12670
|
partNumber?: string | null;
|
|
12644
12671
|
partRevision?: string | null;
|
|
12645
12672
|
drawing?: string | null;
|
|
@@ -12656,6 +12683,7 @@ export interface IListMeasurementFormNeedsRequest {
|
|
|
12656
12683
|
pageSize?: number | null;
|
|
12657
12684
|
customerId?: string | null;
|
|
12658
12685
|
customerName?: string | null;
|
|
12686
|
+
partName?: string | null;
|
|
12659
12687
|
partNumber?: string | null;
|
|
12660
12688
|
partRevision?: string | null;
|
|
12661
12689
|
drawing?: string | null;
|
|
@@ -12725,6 +12753,7 @@ export declare class ListMeasurementFormSchemasNotNeededRequest implements IList
|
|
|
12725
12753
|
customerId?: string | null;
|
|
12726
12754
|
customerName?: string | null;
|
|
12727
12755
|
partNumber?: string | null;
|
|
12756
|
+
partName?: string | null;
|
|
12728
12757
|
partRevision?: string | null;
|
|
12729
12758
|
drawing?: string | null;
|
|
12730
12759
|
drawingRevision?: string | null;
|
|
@@ -12740,6 +12769,7 @@ export interface IListMeasurementFormSchemasNotNeededRequest {
|
|
|
12740
12769
|
customerId?: string | null;
|
|
12741
12770
|
customerName?: string | null;
|
|
12742
12771
|
partNumber?: string | null;
|
|
12772
|
+
partName?: string | null;
|
|
12743
12773
|
partRevision?: string | null;
|
|
12744
12774
|
drawing?: string | null;
|
|
12745
12775
|
drawingRevision?: string | null;
|
|
@@ -12805,6 +12835,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12805
12835
|
latestSchemaDefinitionId?: string | null;
|
|
12806
12836
|
partNumber?: string | null;
|
|
12807
12837
|
partRevision?: string | null;
|
|
12838
|
+
partName?: string | null;
|
|
12808
12839
|
drawing?: string | null;
|
|
12809
12840
|
drawingRevision?: string | null;
|
|
12810
12841
|
constructor(data?: ISchemaFeedbackDto);
|
|
@@ -12827,6 +12858,7 @@ export interface ISchemaFeedbackDto {
|
|
|
12827
12858
|
latestSchemaDefinitionId?: string | null;
|
|
12828
12859
|
partNumber?: string | null;
|
|
12829
12860
|
partRevision?: string | null;
|
|
12861
|
+
partName?: string | null;
|
|
12830
12862
|
drawing?: string | null;
|
|
12831
12863
|
drawingRevision?: string | null;
|
|
12832
12864
|
}
|
|
@@ -12894,6 +12926,7 @@ export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
|
12894
12926
|
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
12895
12927
|
id: string;
|
|
12896
12928
|
readonly: boolean;
|
|
12929
|
+
partName?: string | null;
|
|
12897
12930
|
partNumber?: string | null;
|
|
12898
12931
|
partRevision?: string | null;
|
|
12899
12932
|
drawing?: string | null;
|
|
@@ -12914,6 +12947,7 @@ export declare class MeasurementFormInstanceOverviewDto implements IMeasurementF
|
|
|
12914
12947
|
export interface IMeasurementFormInstanceOverviewDto {
|
|
12915
12948
|
id: string;
|
|
12916
12949
|
readonly: boolean;
|
|
12950
|
+
partName?: string | null;
|
|
12917
12951
|
partNumber?: string | null;
|
|
12918
12952
|
partRevision?: string | null;
|
|
12919
12953
|
drawing?: string | null;
|
|
@@ -13010,6 +13044,7 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
13010
13044
|
id: string;
|
|
13011
13045
|
readonly: boolean;
|
|
13012
13046
|
partNumber?: string | null;
|
|
13047
|
+
partName?: string | null;
|
|
13013
13048
|
partRevision?: string | null;
|
|
13014
13049
|
drawing?: string | null;
|
|
13015
13050
|
drawingRevision?: string | null;
|
|
@@ -13033,6 +13068,7 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13033
13068
|
id: string;
|
|
13034
13069
|
readonly: boolean;
|
|
13035
13070
|
partNumber?: string | null;
|
|
13071
|
+
partName?: string | null;
|
|
13036
13072
|
partRevision?: string | null;
|
|
13037
13073
|
drawing?: string | null;
|
|
13038
13074
|
drawingRevision?: string | null;
|
|
@@ -14448,6 +14484,80 @@ export interface ICreateWorkOrderMapping {
|
|
|
14448
14484
|
existingWorkOrderId: string;
|
|
14449
14485
|
newWorkOrderId: string;
|
|
14450
14486
|
}
|
|
14487
|
+
export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessageDto {
|
|
14488
|
+
id?: string;
|
|
14489
|
+
workorderId?: string;
|
|
14490
|
+
companyId?: string;
|
|
14491
|
+
content?: string;
|
|
14492
|
+
senderUpn?: string;
|
|
14493
|
+
senderName?: string;
|
|
14494
|
+
operationId?: string | null;
|
|
14495
|
+
operationName?: string | null;
|
|
14496
|
+
resourceId?: string | null;
|
|
14497
|
+
created?: Date;
|
|
14498
|
+
constructor(data?: IWorkorderDiscussionMessageDto);
|
|
14499
|
+
init(_data?: any): void;
|
|
14500
|
+
static fromJS(data: any): WorkorderDiscussionMessageDto;
|
|
14501
|
+
toJSON(data?: any): any;
|
|
14502
|
+
}
|
|
14503
|
+
export interface IWorkorderDiscussionMessageDto {
|
|
14504
|
+
id?: string;
|
|
14505
|
+
workorderId?: string;
|
|
14506
|
+
companyId?: string;
|
|
14507
|
+
content?: string;
|
|
14508
|
+
senderUpn?: string;
|
|
14509
|
+
senderName?: string;
|
|
14510
|
+
operationId?: string | null;
|
|
14511
|
+
operationName?: string | null;
|
|
14512
|
+
resourceId?: string | null;
|
|
14513
|
+
created?: Date;
|
|
14514
|
+
}
|
|
14515
|
+
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14516
|
+
message: string;
|
|
14517
|
+
operationId?: string | null;
|
|
14518
|
+
operationName?: string | null;
|
|
14519
|
+
resourceId?: string | null;
|
|
14520
|
+
constructor(data?: IAddDiscussionMessageRequest);
|
|
14521
|
+
init(_data?: any): void;
|
|
14522
|
+
static fromJS(data: any): AddDiscussionMessageRequest;
|
|
14523
|
+
toJSON(data?: any): any;
|
|
14524
|
+
}
|
|
14525
|
+
export interface IAddDiscussionMessageRequest {
|
|
14526
|
+
message: string;
|
|
14527
|
+
operationId?: string | null;
|
|
14528
|
+
operationName?: string | null;
|
|
14529
|
+
resourceId?: string | null;
|
|
14530
|
+
}
|
|
14531
|
+
export declare class WorkorderDiscussionReadStatusDto implements IWorkorderDiscussionReadStatusDto {
|
|
14532
|
+
workorderId?: string;
|
|
14533
|
+
operationId?: string | null;
|
|
14534
|
+
resourceId?: string | null;
|
|
14535
|
+
userUpn?: string;
|
|
14536
|
+
lastRead?: Date;
|
|
14537
|
+
constructor(data?: IWorkorderDiscussionReadStatusDto);
|
|
14538
|
+
init(_data?: any): void;
|
|
14539
|
+
static fromJS(data: any): WorkorderDiscussionReadStatusDto;
|
|
14540
|
+
toJSON(data?: any): any;
|
|
14541
|
+
}
|
|
14542
|
+
export interface IWorkorderDiscussionReadStatusDto {
|
|
14543
|
+
workorderId?: string;
|
|
14544
|
+
operationId?: string | null;
|
|
14545
|
+
resourceId?: string | null;
|
|
14546
|
+
userUpn?: string;
|
|
14547
|
+
lastRead?: Date;
|
|
14548
|
+
}
|
|
14549
|
+
export declare class SetDiscussionLastReadRequest implements ISetDiscussionLastReadRequest {
|
|
14550
|
+
operationId?: string | null;
|
|
14551
|
+
resourceId?: string | null;
|
|
14552
|
+
constructor(data?: ISetDiscussionLastReadRequest);
|
|
14553
|
+
init(_data?: any): void;
|
|
14554
|
+
static fromJS(data: any): SetDiscussionLastReadRequest;
|
|
14555
|
+
toJSON(data?: any): any;
|
|
14556
|
+
}
|
|
14557
|
+
export interface ISetDiscussionLastReadRequest {
|
|
14558
|
+
operationId?: string | null;
|
|
14559
|
+
resourceId?: string | null;
|
|
14560
|
+
}
|
|
14451
14561
|
export interface FileParameter {
|
|
14452
14562
|
data: any;
|
|
14453
14563
|
fileName: string;
|