@ignos/api-client 20250711.0.12192-alpha → 20250728.0.12218-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.
@@ -2268,9 +2268,9 @@ export interface IMeasurementFormsInstancesClient {
2268
2268
  approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2269
2269
  disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2270
2270
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2271
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2271
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, sequence: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2272
2272
  getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2273
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2273
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, sequence: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2274
2274
  getValidationRules(): Promise<ValidationRuleDto[]>;
2275
2275
  saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2276
2276
  saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
@@ -2286,6 +2286,7 @@ export interface IMeasurementFormsInstancesClient {
2286
2286
  updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
2287
2287
  getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
2288
2288
  toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2289
+ importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2289
2290
  }
2290
2291
  export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
2291
2292
  private http;
@@ -2322,11 +2323,11 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2322
2323
  protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2323
2324
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2324
2325
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2325
- getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2326
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, sequence: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2326
2327
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2327
2328
  getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2328
2329
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2329
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2330
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, sequence: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2330
2331
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2331
2332
  getValidationRules(): Promise<ValidationRuleDto[]>;
2332
2333
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
@@ -2358,6 +2359,8 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2358
2359
  protected processGetSchemaInstanceElements(response: Response): Promise<SchemaInstanceElementDto[]>;
2359
2360
  toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2360
2361
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2362
+ importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2363
+ protected processImportMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2361
2364
  }
2362
2365
  export interface IElectricalClient {
2363
2366
  listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
@@ -2620,6 +2623,10 @@ export interface IWorkordersClient {
2620
2623
  * Deleteds existing work order mappings.
2621
2624
  */
2622
2625
  deleteWorkOrderMappings(): Promise<void>;
2626
+ getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessage[]>;
2627
+ addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessage>;
2628
+ updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
2629
+ deleteMessage(id: string, messageId: string): Promise<FileResponse>;
2623
2630
  }
2624
2631
  export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
2625
2632
  private http;
@@ -2749,6 +2756,14 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
2749
2756
  */
2750
2757
  deleteWorkOrderMappings(): Promise<void>;
2751
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>;
2752
2767
  }
2753
2768
  export declare class AzureRegionDto implements IAzureRegionDto {
2754
2769
  displayName: string;
@@ -12978,8 +12993,7 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
12978
12993
  status: MeasurementFormInstanceStatus;
12979
12994
  statusChangedDate?: Date | null;
12980
12995
  schemas: MeasurementFormWorkorderSchemaDto[];
12981
- sequences?: MeasurementFormWorkorderSequenceDto[] | null;
12982
- serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
12996
+ sequences: MeasurementFormWorkorderSequenceDto[];
12983
12997
  suppliers: MeasurementFormWorkorderSupplierDto[];
12984
12998
  progress: MeasurementFormProgressDto;
12985
12999
  approvedReportUrl?: string | null;
@@ -13002,8 +13016,7 @@ export interface IMeasurementFormInstanceDto {
13002
13016
  status: MeasurementFormInstanceStatus;
13003
13017
  statusChangedDate?: Date | null;
13004
13018
  schemas: MeasurementFormWorkorderSchemaDto[];
13005
- sequences?: MeasurementFormWorkorderSequenceDto[] | null;
13006
- serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13019
+ sequences: MeasurementFormWorkorderSequenceDto[];
13007
13020
  suppliers: MeasurementFormWorkorderSupplierDto[];
13008
13021
  progress: MeasurementFormProgressDto;
13009
13022
  approvedReportUrl?: string | null;
@@ -13055,20 +13068,6 @@ export interface IMeasurementFormWorkorderSequenceDto {
13055
13068
  sequence: string;
13056
13069
  serialNumber?: string | null;
13057
13070
  }
13058
- export declare class MeasurementFormWorkorderSerialNumberDto implements IMeasurementFormWorkorderSerialNumberDto {
13059
- lot?: string | null;
13060
- serialNumber: string;
13061
- customerSerialNumber?: string | null;
13062
- constructor(data?: IMeasurementFormWorkorderSerialNumberDto);
13063
- init(_data?: any): void;
13064
- static fromJS(data: any): MeasurementFormWorkorderSerialNumberDto;
13065
- toJSON(data?: any): any;
13066
- }
13067
- export interface IMeasurementFormWorkorderSerialNumberDto {
13068
- lot?: string | null;
13069
- serialNumber: string;
13070
- customerSerialNumber?: string | null;
13071
- }
13072
13071
  export declare class MeasurementFormWorkorderSupplierDto implements IMeasurementFormWorkorderSupplierDto {
13073
13072
  supplierId: string;
13074
13073
  supplierName?: string | null;
@@ -13166,8 +13165,7 @@ export interface ICreateMeasurementFormInstanceRequestSequence {
13166
13165
  serialNumber?: string | null;
13167
13166
  }
13168
13167
  export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
13169
- sequences?: MeasurementFormWorkorderSequenceDto[] | null;
13170
- serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13168
+ sequences: MeasurementFormWorkorderSequenceDto[];
13171
13169
  suppliers: MeasurementFormWorkorderSupplierDto[];
13172
13170
  constructor(data?: IUpdateMeasurementFormInstanceRequest);
13173
13171
  init(_data?: any): void;
@@ -13175,8 +13173,7 @@ export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeas
13175
13173
  toJSON(data?: any): any;
13176
13174
  }
13177
13175
  export interface IUpdateMeasurementFormInstanceRequest {
13178
- sequences?: MeasurementFormWorkorderSequenceDto[] | null;
13179
- serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13176
+ sequences: MeasurementFormWorkorderSequenceDto[];
13180
13177
  suppliers: MeasurementFormWorkorderSupplierDto[];
13181
13178
  }
13182
13179
  export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
@@ -13286,8 +13283,7 @@ export interface IMeasurementFormInstanceElementDto {
13286
13283
  export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
13287
13284
  bonus?: string | null;
13288
13285
  completed: boolean;
13289
- sequence?: string | null;
13290
- serialNumber: string;
13286
+ sequence: string;
13291
13287
  value?: string | null;
13292
13288
  updatedByUser: string;
13293
13289
  updatedDate: Date;
@@ -13303,8 +13299,7 @@ export declare class MeasurementFormElementValueDto implements IMeasurementFormE
13303
13299
  export interface IMeasurementFormElementValueDto {
13304
13300
  bonus?: string | null;
13305
13301
  completed: boolean;
13306
- sequence?: string | null;
13307
- serialNumber: string;
13302
+ sequence: string;
13308
13303
  value?: string | null;
13309
13304
  updatedByUser: string;
13310
13305
  updatedDate: Date;
@@ -13346,8 +13341,7 @@ export declare class MeasurementFormElementValueAuditDto implements IMeasurement
13346
13341
  schemaId: string;
13347
13342
  value?: string | null;
13348
13343
  bonus?: number | null;
13349
- sequence?: string | null;
13350
- serialNumber: string;
13344
+ sequence: string;
13351
13345
  elementId: string;
13352
13346
  updatedByUser: string;
13353
13347
  updatedDate: Date;
@@ -13364,8 +13358,7 @@ export interface IMeasurementFormElementValueAuditDto {
13364
13358
  schemaId: string;
13365
13359
  value?: string | null;
13366
13360
  bonus?: number | null;
13367
- sequence?: string | null;
13368
- serialNumber: string;
13361
+ sequence: string;
13369
13362
  elementId: string;
13370
13363
  updatedByUser: string;
13371
13364
  updatedDate: Date;
@@ -13406,8 +13399,7 @@ export declare class SaveValueRequest implements ISaveValueRequest {
13406
13399
  resourceName?: string | null;
13407
13400
  schemaId: string;
13408
13401
  elementId: string;
13409
- sequence?: string | null;
13410
- serialNumber: string;
13402
+ sequence: string;
13411
13403
  value?: string | null;
13412
13404
  bonus?: string | null;
13413
13405
  constructor(data?: ISaveValueRequest);
@@ -13420,16 +13412,14 @@ export interface ISaveValueRequest {
13420
13412
  resourceName?: string | null;
13421
13413
  schemaId: string;
13422
13414
  elementId: string;
13423
- sequence?: string | null;
13424
- serialNumber: string;
13415
+ sequence: string;
13425
13416
  value?: string | null;
13426
13417
  bonus?: string | null;
13427
13418
  }
13428
13419
  export declare class SaveToolRequest implements ISaveToolRequest {
13429
13420
  schemaId: string;
13430
13421
  elementId: string;
13431
- sequence?: string | null;
13432
- serialNumber: string;
13422
+ sequence: string;
13433
13423
  tools?: string[] | null;
13434
13424
  force?: boolean;
13435
13425
  constructor(data?: ISaveToolRequest);
@@ -13440,16 +13430,14 @@ export declare class SaveToolRequest implements ISaveToolRequest {
13440
13430
  export interface ISaveToolRequest {
13441
13431
  schemaId: string;
13442
13432
  elementId: string;
13443
- sequence?: string | null;
13444
- serialNumber: string;
13433
+ sequence: string;
13445
13434
  tools?: string[] | null;
13446
13435
  force?: boolean;
13447
13436
  }
13448
13437
  export declare class SaveCommentRequest implements ISaveCommentRequest {
13449
13438
  schemaId: string;
13450
13439
  elementId: string;
13451
- sequence?: string | null;
13452
- serialNumber: string;
13440
+ sequence: string;
13453
13441
  comment?: string | null;
13454
13442
  constructor(data?: ISaveCommentRequest);
13455
13443
  init(_data?: any): void;
@@ -13459,8 +13447,7 @@ export declare class SaveCommentRequest implements ISaveCommentRequest {
13459
13447
  export interface ISaveCommentRequest {
13460
13448
  schemaId: string;
13461
13449
  elementId: string;
13462
- sequence?: string | null;
13463
- serialNumber: string;
13450
+ sequence: string;
13464
13451
  comment?: string | null;
13465
13452
  }
13466
13453
  export declare class BatchInsertValuesResponseDto implements IBatchInsertValuesResponseDto {
@@ -13591,7 +13578,6 @@ export declare class ExportDimensionReportRequest implements IExportDimensionRep
13591
13578
  includeAllSchemasAndElements?: boolean | null;
13592
13579
  createBlankReport?: boolean | null;
13593
13580
  sequences?: string[] | null;
13594
- serialNumbers?: string[] | null;
13595
13581
  customerPO?: string | null;
13596
13582
  workOrder?: string | null;
13597
13583
  comment?: string | null;
@@ -13606,7 +13592,6 @@ export interface IExportDimensionReportRequest {
13606
13592
  includeAllSchemasAndElements?: boolean | null;
13607
13593
  createBlankReport?: boolean | null;
13608
13594
  sequences?: string[] | null;
13609
- serialNumbers?: string[] | null;
13610
13595
  customerPO?: string | null;
13611
13596
  workOrder?: string | null;
13612
13597
  comment?: string | null;
@@ -13635,6 +13620,88 @@ export interface ISchemaInstanceElementDto {
13635
13620
  balloonId: string;
13636
13621
  disabled: boolean;
13637
13622
  }
13623
+ export declare class ImportMeasurementFormInstanceRequest implements IImportMeasurementFormInstanceRequest {
13624
+ partInfo: ImportMeasurementFormPartDto;
13625
+ customerId?: string | null;
13626
+ customerGroupId?: string | null;
13627
+ customerName?: string | null;
13628
+ externalOrderNumber?: string | null;
13629
+ quantity: number;
13630
+ sequences: WorkorderImportTraceItemDto[];
13631
+ status: MeasurementFormInstanceStatus;
13632
+ statusChangedBy?: string | null;
13633
+ statusChangedDate?: Date | null;
13634
+ created: Date;
13635
+ createdBy?: string | null;
13636
+ updatedBy?: string | null;
13637
+ schemas: ImportMeasurementSchemaInstanceDto[];
13638
+ constructor(data?: IImportMeasurementFormInstanceRequest);
13639
+ init(_data?: any): void;
13640
+ static fromJS(data: any): ImportMeasurementFormInstanceRequest;
13641
+ toJSON(data?: any): any;
13642
+ }
13643
+ export interface IImportMeasurementFormInstanceRequest {
13644
+ partInfo: ImportMeasurementFormPartDto;
13645
+ customerId?: string | null;
13646
+ customerGroupId?: string | null;
13647
+ customerName?: string | null;
13648
+ externalOrderNumber?: string | null;
13649
+ quantity: number;
13650
+ sequences: WorkorderImportTraceItemDto[];
13651
+ status: MeasurementFormInstanceStatus;
13652
+ statusChangedBy?: string | null;
13653
+ statusChangedDate?: Date | null;
13654
+ created: Date;
13655
+ createdBy?: string | null;
13656
+ updatedBy?: string | null;
13657
+ schemas: ImportMeasurementSchemaInstanceDto[];
13658
+ }
13659
+ export declare class ImportMeasurementFormPartDto implements IImportMeasurementFormPartDto {
13660
+ partNumber?: string | null;
13661
+ partName?: string | null;
13662
+ partRevision?: string | null;
13663
+ drawing: string;
13664
+ drawingRevision?: string | null;
13665
+ constructor(data?: IImportMeasurementFormPartDto);
13666
+ init(_data?: any): void;
13667
+ static fromJS(data: any): ImportMeasurementFormPartDto;
13668
+ toJSON(data?: any): any;
13669
+ }
13670
+ export interface IImportMeasurementFormPartDto {
13671
+ partNumber?: string | null;
13672
+ partName?: string | null;
13673
+ partRevision?: string | null;
13674
+ drawing: string;
13675
+ drawingRevision?: string | null;
13676
+ }
13677
+ export declare class WorkorderImportTraceItemDto implements IWorkorderImportTraceItemDto {
13678
+ sequence: string;
13679
+ serialNumber?: string | null;
13680
+ lot?: string | null;
13681
+ active: boolean;
13682
+ constructor(data?: IWorkorderImportTraceItemDto);
13683
+ init(_data?: any): void;
13684
+ static fromJS(data: any): WorkorderImportTraceItemDto;
13685
+ toJSON(data?: any): any;
13686
+ }
13687
+ export interface IWorkorderImportTraceItemDto {
13688
+ sequence: string;
13689
+ serialNumber?: string | null;
13690
+ lot?: string | null;
13691
+ active: boolean;
13692
+ }
13693
+ export declare class ImportMeasurementSchemaInstanceDto implements IImportMeasurementSchemaInstanceDto {
13694
+ id: string;
13695
+ version: number;
13696
+ constructor(data?: IImportMeasurementSchemaInstanceDto);
13697
+ init(_data?: any): void;
13698
+ static fromJS(data: any): ImportMeasurementSchemaInstanceDto;
13699
+ toJSON(data?: any): any;
13700
+ }
13701
+ export interface IImportMeasurementSchemaInstanceDto {
13702
+ id: string;
13703
+ version: number;
13704
+ }
13638
13705
  export declare class IotTypeSourceDto implements IIotTypeSourceDto {
13639
13706
  id: string;
13640
13707
  name: string;
@@ -14054,10 +14121,8 @@ export interface IUpsertWorkOrderTracesRequest {
14054
14121
  export declare class WorkOrderTraceItemDto implements IWorkOrderTraceItemDto {
14055
14122
  sequence: string;
14056
14123
  serialNumber?: string | null;
14057
- customerSerialNumber?: string | null;
14058
14124
  lot?: string | null;
14059
14125
  active: boolean;
14060
- isLegacy?: boolean;
14061
14126
  constructor(data?: IWorkOrderTraceItemDto);
14062
14127
  init(_data?: any): void;
14063
14128
  static fromJS(data: any): WorkOrderTraceItemDto;
@@ -14066,10 +14131,8 @@ export declare class WorkOrderTraceItemDto implements IWorkOrderTraceItemDto {
14066
14131
  export interface IWorkOrderTraceItemDto {
14067
14132
  sequence: string;
14068
14133
  serialNumber?: string | null;
14069
- customerSerialNumber?: string | null;
14070
14134
  lot?: string | null;
14071
14135
  active: boolean;
14072
- isLegacy?: boolean;
14073
14136
  }
14074
14137
  export declare class ResourceExistDto implements IResourceExistDto {
14075
14138
  exists: boolean;
@@ -14359,6 +14422,90 @@ export interface ICreateWorkOrderMapping {
14359
14422
  existingWorkOrderId: string;
14360
14423
  newWorkOrderId: string;
14361
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
+ resourceId?: string | null;
14459
+ constructor(data?: IWorkorderDiscussionMessage);
14460
+ init(_data?: any): void;
14461
+ static fromJS(data: any): WorkorderDiscussionMessage;
14462
+ toJSON(data?: any): any;
14463
+ }
14464
+ export interface IWorkorderDiscussionMessage extends ITableEntityBase {
14465
+ content?: string;
14466
+ senderUpn?: string;
14467
+ senderName?: string;
14468
+ operationId?: string | null;
14469
+ resourceId?: string | null;
14470
+ }
14471
+ /** Represents an HTTP ETag. */
14472
+ export declare class ETag implements IETag {
14473
+ constructor(data?: IETag);
14474
+ init(_data?: any): void;
14475
+ static fromJS(data: any): ETag;
14476
+ toJSON(data?: any): any;
14477
+ }
14478
+ /** Represents an HTTP ETag. */
14479
+ export interface IETag {
14480
+ }
14481
+ export declare class AuditInfo implements IAuditInfo {
14482
+ objectId?: string;
14483
+ userId?: string;
14484
+ userFullName?: string | null;
14485
+ constructor(data?: IAuditInfo);
14486
+ init(_data?: any): void;
14487
+ static fromJS(data: any): AuditInfo;
14488
+ toJSON(data?: any): any;
14489
+ }
14490
+ export interface IAuditInfo {
14491
+ objectId?: string;
14492
+ userId?: string;
14493
+ userFullName?: string | null;
14494
+ }
14495
+ export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
14496
+ message?: string;
14497
+ operationId?: string | null;
14498
+ resourceId?: string | null;
14499
+ constructor(data?: IAddDiscussionMessageRequest);
14500
+ init(_data?: any): void;
14501
+ static fromJS(data: any): AddDiscussionMessageRequest;
14502
+ toJSON(data?: any): any;
14503
+ }
14504
+ export interface IAddDiscussionMessageRequest {
14505
+ message?: string;
14506
+ operationId?: string | null;
14507
+ resourceId?: string | null;
14508
+ }
14362
14509
  export interface FileParameter {
14363
14510
  data: any;
14364
14511
  fileName: string;