@ignos/api-client 20250729.0.12224-alpha → 20250729.0.12229-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 +351 -27
- package/package.json +1 -1
- package/src/ignosportal-api.ts +445 -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,10 @@ export interface IWorkordersClient {
|
|
|
2623
2623
|
* Deleteds existing work order mappings.
|
|
2624
2624
|
*/
|
|
2625
2625
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2626
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessage[]>;
|
|
2627
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessage>;
|
|
2628
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2629
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2626
2630
|
}
|
|
2627
2631
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2628
2632
|
private http;
|
|
@@ -2752,6 +2756,14 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2752
2756
|
*/
|
|
2753
2757
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2754
2758
|
protected processDeleteWorkOrderMappings(response: Response): Promise<void>;
|
|
2759
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessage[]>;
|
|
2760
|
+
protected processGetDiscussionMessages(response: Response): Promise<WorkorderDiscussionMessage[]>;
|
|
2761
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessage>;
|
|
2762
|
+
protected processAddDiscussionMessage(response: Response): Promise<WorkorderDiscussionMessage>;
|
|
2763
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2764
|
+
protected processUpdateMessage(response: Response): Promise<FileResponse>;
|
|
2765
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2766
|
+
protected processDeleteMessage(response: Response): Promise<FileResponse>;
|
|
2755
2767
|
}
|
|
2756
2768
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
2757
2769
|
displayName: string;
|
|
@@ -11686,7 +11698,6 @@ export declare class ListMeasurementFormSchemasRequest implements IListMeasureme
|
|
|
11686
11698
|
pageSize?: number | null;
|
|
11687
11699
|
customerId?: string | null;
|
|
11688
11700
|
customerName?: string | null;
|
|
11689
|
-
partName?: string | null;
|
|
11690
11701
|
partNumber?: string | null;
|
|
11691
11702
|
partRevision?: string | null;
|
|
11692
11703
|
drawing?: string | null;
|
|
@@ -11702,7 +11713,6 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
11702
11713
|
pageSize?: number | null;
|
|
11703
11714
|
customerId?: string | null;
|
|
11704
11715
|
customerName?: string | null;
|
|
11705
|
-
partName?: string | null;
|
|
11706
11716
|
partNumber?: string | null;
|
|
11707
11717
|
partRevision?: string | null;
|
|
11708
11718
|
drawing?: string | null;
|
|
@@ -12376,7 +12386,6 @@ export declare class ImportMeasurementFormSchema implements IImportMeasurementFo
|
|
|
12376
12386
|
customerId?: string | null;
|
|
12377
12387
|
customerName?: string | null;
|
|
12378
12388
|
partNumber: string;
|
|
12379
|
-
partName?: string | null;
|
|
12380
12389
|
partRevision?: string | null;
|
|
12381
12390
|
drawing?: string | null;
|
|
12382
12391
|
drawingRevision?: string | null;
|
|
@@ -12397,7 +12406,6 @@ export interface IImportMeasurementFormSchema {
|
|
|
12397
12406
|
customerId?: string | null;
|
|
12398
12407
|
customerName?: string | null;
|
|
12399
12408
|
partNumber: string;
|
|
12400
|
-
partName?: string | null;
|
|
12401
12409
|
partRevision?: string | null;
|
|
12402
12410
|
drawing?: string | null;
|
|
12403
12411
|
drawingRevision?: string | null;
|
|
@@ -12413,7 +12421,6 @@ export interface IImportMeasurementFormSchema {
|
|
|
12413
12421
|
export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
|
|
12414
12422
|
customerId?: string | null;
|
|
12415
12423
|
partNumber?: string | null;
|
|
12416
|
-
partName?: string | null;
|
|
12417
12424
|
partRevision?: string | null;
|
|
12418
12425
|
drawing: string;
|
|
12419
12426
|
drawingRevision?: string | null;
|
|
@@ -12426,7 +12433,6 @@ export declare class MeasurementFormImportLinkedSchemaDto implements IMeasuremen
|
|
|
12426
12433
|
export interface IMeasurementFormImportLinkedSchemaDto {
|
|
12427
12434
|
customerId?: string | null;
|
|
12428
12435
|
partNumber?: string | null;
|
|
12429
|
-
partName?: string | null;
|
|
12430
12436
|
partRevision?: string | null;
|
|
12431
12437
|
drawing: string;
|
|
12432
12438
|
drawingRevision?: string | null;
|
|
@@ -12569,7 +12575,6 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
12569
12575
|
customerName?: string | null;
|
|
12570
12576
|
partNumber?: string | null;
|
|
12571
12577
|
partRevision?: string | null;
|
|
12572
|
-
partName?: string | null;
|
|
12573
12578
|
drawing?: string | null;
|
|
12574
12579
|
drawingRevision?: string | null;
|
|
12575
12580
|
workorder?: string | null;
|
|
@@ -12593,7 +12598,6 @@ export interface IMeasurementFormNeedDto {
|
|
|
12593
12598
|
customerName?: string | null;
|
|
12594
12599
|
partNumber?: string | null;
|
|
12595
12600
|
partRevision?: string | null;
|
|
12596
|
-
partName?: string | null;
|
|
12597
12601
|
drawing?: string | null;
|
|
12598
12602
|
drawingRevision?: string | null;
|
|
12599
12603
|
workorder?: string | null;
|
|
@@ -12610,7 +12614,6 @@ export declare class ListMeasurementFormNeedsRequest implements IListMeasurement
|
|
|
12610
12614
|
pageSize?: number | null;
|
|
12611
12615
|
customerId?: string | null;
|
|
12612
12616
|
customerName?: string | null;
|
|
12613
|
-
partName?: string | null;
|
|
12614
12617
|
partNumber?: string | null;
|
|
12615
12618
|
partRevision?: string | null;
|
|
12616
12619
|
drawing?: string | null;
|
|
@@ -12627,7 +12630,6 @@ export interface IListMeasurementFormNeedsRequest {
|
|
|
12627
12630
|
pageSize?: number | null;
|
|
12628
12631
|
customerId?: string | null;
|
|
12629
12632
|
customerName?: string | null;
|
|
12630
|
-
partName?: string | null;
|
|
12631
12633
|
partNumber?: string | null;
|
|
12632
12634
|
partRevision?: string | null;
|
|
12633
12635
|
drawing?: string | null;
|
|
@@ -12697,7 +12699,6 @@ export declare class ListMeasurementFormSchemasNotNeededRequest implements IList
|
|
|
12697
12699
|
customerId?: string | null;
|
|
12698
12700
|
customerName?: string | null;
|
|
12699
12701
|
partNumber?: string | null;
|
|
12700
|
-
partName?: string | null;
|
|
12701
12702
|
partRevision?: string | null;
|
|
12702
12703
|
drawing?: string | null;
|
|
12703
12704
|
drawingRevision?: string | null;
|
|
@@ -12713,7 +12714,6 @@ export interface IListMeasurementFormSchemasNotNeededRequest {
|
|
|
12713
12714
|
customerId?: string | null;
|
|
12714
12715
|
customerName?: string | null;
|
|
12715
12716
|
partNumber?: string | null;
|
|
12716
|
-
partName?: string | null;
|
|
12717
12717
|
partRevision?: string | null;
|
|
12718
12718
|
drawing?: string | null;
|
|
12719
12719
|
drawingRevision?: string | null;
|
|
@@ -12779,7 +12779,6 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12779
12779
|
latestSchemaDefinitionId?: string | null;
|
|
12780
12780
|
partNumber?: string | null;
|
|
12781
12781
|
partRevision?: string | null;
|
|
12782
|
-
partName?: string | null;
|
|
12783
12782
|
drawing?: string | null;
|
|
12784
12783
|
drawingRevision?: string | null;
|
|
12785
12784
|
constructor(data?: ISchemaFeedbackDto);
|
|
@@ -12802,7 +12801,6 @@ export interface ISchemaFeedbackDto {
|
|
|
12802
12801
|
latestSchemaDefinitionId?: string | null;
|
|
12803
12802
|
partNumber?: string | null;
|
|
12804
12803
|
partRevision?: string | null;
|
|
12805
|
-
partName?: string | null;
|
|
12806
12804
|
drawing?: string | null;
|
|
12807
12805
|
drawingRevision?: string | null;
|
|
12808
12806
|
}
|
|
@@ -12870,7 +12868,6 @@ export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
|
12870
12868
|
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
12871
12869
|
id: string;
|
|
12872
12870
|
readonly: boolean;
|
|
12873
|
-
partName?: string | null;
|
|
12874
12871
|
partNumber?: string | null;
|
|
12875
12872
|
partRevision?: string | null;
|
|
12876
12873
|
drawing?: string | null;
|
|
@@ -12891,7 +12888,6 @@ export declare class MeasurementFormInstanceOverviewDto implements IMeasurementF
|
|
|
12891
12888
|
export interface IMeasurementFormInstanceOverviewDto {
|
|
12892
12889
|
id: string;
|
|
12893
12890
|
readonly: boolean;
|
|
12894
|
-
partName?: string | null;
|
|
12895
12891
|
partNumber?: string | null;
|
|
12896
12892
|
partRevision?: string | null;
|
|
12897
12893
|
drawing?: string | null;
|
|
@@ -12988,7 +12984,6 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
12988
12984
|
id: string;
|
|
12989
12985
|
readonly: boolean;
|
|
12990
12986
|
partNumber?: string | null;
|
|
12991
|
-
partName?: string | null;
|
|
12992
12987
|
partRevision?: string | null;
|
|
12993
12988
|
drawing?: string | null;
|
|
12994
12989
|
drawingRevision?: string | null;
|
|
@@ -13012,7 +13007,6 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13012
13007
|
id: string;
|
|
13013
13008
|
readonly: boolean;
|
|
13014
13009
|
partNumber?: string | null;
|
|
13015
|
-
partName?: string | null;
|
|
13016
13010
|
partRevision?: string | null;
|
|
13017
13011
|
drawing?: string | null;
|
|
13018
13012
|
drawingRevision?: string | null;
|
|
@@ -14428,6 +14422,94 @@ export interface ICreateWorkOrderMapping {
|
|
|
14428
14422
|
existingWorkOrderId: string;
|
|
14429
14423
|
newWorkOrderId: string;
|
|
14430
14424
|
}
|
|
14425
|
+
export declare class TableEntityBase implements ITableEntityBase {
|
|
14426
|
+
partitionKey?: string;
|
|
14427
|
+
rowKey?: string;
|
|
14428
|
+
timestamp?: Date | null;
|
|
14429
|
+
eTag?: ETag;
|
|
14430
|
+
created?: Date | null;
|
|
14431
|
+
createdBy?: string | null;
|
|
14432
|
+
createdById?: string | null;
|
|
14433
|
+
updatedBy?: string | null;
|
|
14434
|
+
updatedById?: string | null;
|
|
14435
|
+
insertAuditInfo?: AuditInfo;
|
|
14436
|
+
constructor(data?: ITableEntityBase);
|
|
14437
|
+
init(_data?: any): void;
|
|
14438
|
+
static fromJS(data: any): TableEntityBase;
|
|
14439
|
+
toJSON(data?: any): any;
|
|
14440
|
+
}
|
|
14441
|
+
export interface ITableEntityBase {
|
|
14442
|
+
partitionKey?: string;
|
|
14443
|
+
rowKey?: string;
|
|
14444
|
+
timestamp?: Date | null;
|
|
14445
|
+
eTag?: ETag;
|
|
14446
|
+
created?: Date | null;
|
|
14447
|
+
createdBy?: string | null;
|
|
14448
|
+
createdById?: string | null;
|
|
14449
|
+
updatedBy?: string | null;
|
|
14450
|
+
updatedById?: string | null;
|
|
14451
|
+
insertAuditInfo?: AuditInfo;
|
|
14452
|
+
}
|
|
14453
|
+
export declare class WorkorderDiscussionMessage extends TableEntityBase implements IWorkorderDiscussionMessage {
|
|
14454
|
+
content?: string;
|
|
14455
|
+
senderUpn?: string;
|
|
14456
|
+
senderName?: string;
|
|
14457
|
+
operationId?: string | null;
|
|
14458
|
+
operationName?: string | null;
|
|
14459
|
+
resourceId?: string | null;
|
|
14460
|
+
constructor(data?: IWorkorderDiscussionMessage);
|
|
14461
|
+
init(_data?: any): void;
|
|
14462
|
+
static fromJS(data: any): WorkorderDiscussionMessage;
|
|
14463
|
+
toJSON(data?: any): any;
|
|
14464
|
+
}
|
|
14465
|
+
export interface IWorkorderDiscussionMessage extends ITableEntityBase {
|
|
14466
|
+
content?: string;
|
|
14467
|
+
senderUpn?: string;
|
|
14468
|
+
senderName?: string;
|
|
14469
|
+
operationId?: string | null;
|
|
14470
|
+
operationName?: string | null;
|
|
14471
|
+
resourceId?: string | null;
|
|
14472
|
+
}
|
|
14473
|
+
/** Represents an HTTP ETag. */
|
|
14474
|
+
export declare class ETag implements IETag {
|
|
14475
|
+
constructor(data?: IETag);
|
|
14476
|
+
init(_data?: any): void;
|
|
14477
|
+
static fromJS(data: any): ETag;
|
|
14478
|
+
toJSON(data?: any): any;
|
|
14479
|
+
}
|
|
14480
|
+
/** Represents an HTTP ETag. */
|
|
14481
|
+
export interface IETag {
|
|
14482
|
+
}
|
|
14483
|
+
export declare class AuditInfo implements IAuditInfo {
|
|
14484
|
+
objectId?: string;
|
|
14485
|
+
userId?: string;
|
|
14486
|
+
userFullName?: string | null;
|
|
14487
|
+
constructor(data?: IAuditInfo);
|
|
14488
|
+
init(_data?: any): void;
|
|
14489
|
+
static fromJS(data: any): AuditInfo;
|
|
14490
|
+
toJSON(data?: any): any;
|
|
14491
|
+
}
|
|
14492
|
+
export interface IAuditInfo {
|
|
14493
|
+
objectId?: string;
|
|
14494
|
+
userId?: string;
|
|
14495
|
+
userFullName?: string | null;
|
|
14496
|
+
}
|
|
14497
|
+
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14498
|
+
message?: string;
|
|
14499
|
+
operationId?: string | null;
|
|
14500
|
+
operationName?: string | null;
|
|
14501
|
+
resourceId?: string | null;
|
|
14502
|
+
constructor(data?: IAddDiscussionMessageRequest);
|
|
14503
|
+
init(_data?: any): void;
|
|
14504
|
+
static fromJS(data: any): AddDiscussionMessageRequest;
|
|
14505
|
+
toJSON(data?: any): any;
|
|
14506
|
+
}
|
|
14507
|
+
export interface IAddDiscussionMessageRequest {
|
|
14508
|
+
message?: string;
|
|
14509
|
+
operationId?: string | null;
|
|
14510
|
+
operationName?: string | null;
|
|
14511
|
+
resourceId?: string | null;
|
|
14512
|
+
}
|
|
14431
14513
|
export interface FileParameter {
|
|
14432
14514
|
data: any;
|
|
14433
14515
|
fileName: string;
|