@ignos/api-client 20250901.0.12482 → 20250910.0.12568
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 +94 -44
- package/lib/ignosportal-api.js +323 -162
- package/package.json +1 -1
- package/src/ignosportal-api.ts +412 -203
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -749,6 +749,10 @@ export interface IDowntimeReasonsAdminClient {
|
|
|
749
749
|
updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
|
|
750
750
|
deleteDowntimeReason(id: string): Promise<void>;
|
|
751
751
|
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
752
|
+
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
753
|
+
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
754
|
+
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
755
|
+
deleteParentTopic(id: string): Promise<void>;
|
|
752
756
|
}
|
|
753
757
|
export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
|
|
754
758
|
private http;
|
|
@@ -767,6 +771,14 @@ export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implem
|
|
|
767
771
|
protected processDeleteDowntimeReason(response: Response): Promise<void>;
|
|
768
772
|
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
769
773
|
protected processListMachineTypes(response: Response): Promise<MachineTypeDto[]>;
|
|
774
|
+
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
775
|
+
protected processListParentTopics(response: Response): Promise<ParentTopicDto[]>;
|
|
776
|
+
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
777
|
+
protected processCreateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
778
|
+
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
779
|
+
protected processUpdateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
780
|
+
deleteParentTopic(id: string): Promise<void>;
|
|
781
|
+
protected processDeleteParentTopic(response: Response): Promise<void>;
|
|
770
782
|
}
|
|
771
783
|
export interface IDowntimeReasonsClient {
|
|
772
784
|
createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
|
|
@@ -1367,8 +1379,8 @@ export interface ICncSetupFixturesClient {
|
|
|
1367
1379
|
createFixture(update: FixtureCreateDto): Promise<FixtureDto>;
|
|
1368
1380
|
deleteFixture(fixtureIds: string[]): Promise<void>;
|
|
1369
1381
|
updateFixtures(update: FixtureUpdateDto[]): Promise<FixtureDto[]>;
|
|
1370
|
-
getFixtureInterfaceSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1371
|
-
getFixtureLocationSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1382
|
+
getFixtureInterfaceSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | null | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1383
|
+
getFixtureLocationSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | null | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1372
1384
|
listFixtureAttachments(fixtureId: string): Promise<FileDto[]>;
|
|
1373
1385
|
uploadFixtureAttachments(fixtureId: string, attachments: UploadFixtureAttachmentDto[]): Promise<FileDto[]>;
|
|
1374
1386
|
deleteFixtureAttachments(fixtureId: string, filenames: string[]): Promise<void>;
|
|
@@ -1395,9 +1407,9 @@ export declare class CncSetupFixturesClient extends AuthorizedApiBase implements
|
|
|
1395
1407
|
protected processDeleteFixture(response: Response): Promise<void>;
|
|
1396
1408
|
updateFixtures(update: FixtureUpdateDto[]): Promise<FixtureDto[]>;
|
|
1397
1409
|
protected processUpdateFixtures(response: Response): Promise<FixtureDto[]>;
|
|
1398
|
-
getFixtureInterfaceSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1410
|
+
getFixtureInterfaceSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | null | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1399
1411
|
protected processGetFixtureInterfaceSuggestions(response: Response): Promise<FixtureSuggestionDto[]>;
|
|
1400
|
-
getFixtureLocationSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1412
|
+
getFixtureLocationSuggestions(input: string | undefined, fixtureType: FixtureTypeDto | null | undefined): Promise<FixtureSuggestionDto[]>;
|
|
1401
1413
|
protected processGetFixtureLocationSuggestions(response: Response): Promise<FixtureSuggestionDto[]>;
|
|
1402
1414
|
listFixtureAttachments(fixtureId: string): Promise<FileDto[]>;
|
|
1403
1415
|
protected processListFixtureAttachments(response: Response): Promise<FileDto[]>;
|
|
@@ -2349,8 +2361,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2349
2361
|
removeSupplierFromMeasurmentFormInstance(id: string, supplierId: string): Promise<void>;
|
|
2350
2362
|
exportDimensionReport(id: string, request: ExportDimensionReportRequest): Promise<DownloadDto>;
|
|
2351
2363
|
exportDimensionReportValues(id: string): Promise<DownloadDto>;
|
|
2352
|
-
updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
|
|
2353
|
-
getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
|
|
2354
2364
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2355
2365
|
}
|
|
2356
2366
|
export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
@@ -2418,10 +2428,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2418
2428
|
protected processExportDimensionReport(response: Response): Promise<DownloadDto>;
|
|
2419
2429
|
exportDimensionReportValues(id: string): Promise<DownloadDto>;
|
|
2420
2430
|
protected processExportDimensionReportValues(response: Response): Promise<DownloadDto>;
|
|
2421
|
-
updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
|
|
2422
|
-
protected processUpdateSchemaInstanceElements(response: Response): Promise<void>;
|
|
2423
|
-
getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
|
|
2424
|
-
protected processGetSchemaInstanceElements(response: Response): Promise<SchemaInstanceElementDto[]>;
|
|
2425
2431
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2426
2432
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2427
2433
|
}
|
|
@@ -3097,6 +3103,8 @@ export declare class WorkOrderDatapoint implements IWorkOrderDatapoint {
|
|
|
3097
3103
|
subType?: string | null;
|
|
3098
3104
|
startTime: number;
|
|
3099
3105
|
endTime?: number | null;
|
|
3106
|
+
partName?: string | null;
|
|
3107
|
+
partNumber?: string | null;
|
|
3100
3108
|
metaData?: {
|
|
3101
3109
|
[key: string]: string;
|
|
3102
3110
|
} | null;
|
|
@@ -3112,6 +3120,8 @@ export interface IWorkOrderDatapoint {
|
|
|
3112
3120
|
subType?: string | null;
|
|
3113
3121
|
startTime: number;
|
|
3114
3122
|
endTime?: number | null;
|
|
3123
|
+
partName?: string | null;
|
|
3124
|
+
partNumber?: string | null;
|
|
3115
3125
|
metaData?: {
|
|
3116
3126
|
[key: string]: string;
|
|
3117
3127
|
} | null;
|
|
@@ -5753,8 +5763,11 @@ export declare class DowntimeReasonDto implements IDowntimeReasonDto {
|
|
|
5753
5763
|
id: string;
|
|
5754
5764
|
reason: string;
|
|
5755
5765
|
machineTypes: string[];
|
|
5766
|
+
machineGroups: string[];
|
|
5756
5767
|
reasonType: DowntimeReasonTypeDto;
|
|
5757
5768
|
description?: string | null;
|
|
5769
|
+
parentId?: string | null;
|
|
5770
|
+
displayOrder?: number | null;
|
|
5758
5771
|
constructor(data?: IDowntimeReasonDto);
|
|
5759
5772
|
init(_data?: any): void;
|
|
5760
5773
|
static fromJS(data: any): DowntimeReasonDto;
|
|
@@ -5764,14 +5777,20 @@ export interface IDowntimeReasonDto {
|
|
|
5764
5777
|
id: string;
|
|
5765
5778
|
reason: string;
|
|
5766
5779
|
machineTypes: string[];
|
|
5780
|
+
machineGroups: string[];
|
|
5767
5781
|
reasonType: DowntimeReasonTypeDto;
|
|
5768
5782
|
description?: string | null;
|
|
5783
|
+
parentId?: string | null;
|
|
5784
|
+
displayOrder?: number | null;
|
|
5769
5785
|
}
|
|
5770
5786
|
export declare class CreateDowntimeReason implements ICreateDowntimeReason {
|
|
5771
5787
|
reason: string;
|
|
5772
5788
|
machineTypes: string[];
|
|
5789
|
+
machineGroups?: string[] | null;
|
|
5773
5790
|
reasonType: DowntimeReasonTypeDto;
|
|
5774
5791
|
description?: string | null;
|
|
5792
|
+
parentId?: string | null;
|
|
5793
|
+
displayOrder?: number | null;
|
|
5775
5794
|
constructor(data?: ICreateDowntimeReason);
|
|
5776
5795
|
init(_data?: any): void;
|
|
5777
5796
|
static fromJS(data: any): CreateDowntimeReason;
|
|
@@ -5780,14 +5799,20 @@ export declare class CreateDowntimeReason implements ICreateDowntimeReason {
|
|
|
5780
5799
|
export interface ICreateDowntimeReason {
|
|
5781
5800
|
reason: string;
|
|
5782
5801
|
machineTypes: string[];
|
|
5802
|
+
machineGroups?: string[] | null;
|
|
5783
5803
|
reasonType: DowntimeReasonTypeDto;
|
|
5784
5804
|
description?: string | null;
|
|
5805
|
+
parentId?: string | null;
|
|
5806
|
+
displayOrder?: number | null;
|
|
5785
5807
|
}
|
|
5786
5808
|
export declare class UpdateDowntimeReasonRequest implements IUpdateDowntimeReasonRequest {
|
|
5787
5809
|
reason: string;
|
|
5788
5810
|
machineTypes: string[];
|
|
5811
|
+
machineGroups?: string[] | null;
|
|
5789
5812
|
reasonType: DowntimeReasonTypeDto;
|
|
5790
5813
|
description?: string | null;
|
|
5814
|
+
parentId?: string | null;
|
|
5815
|
+
displayOrder?: number | null;
|
|
5791
5816
|
constructor(data?: IUpdateDowntimeReasonRequest);
|
|
5792
5817
|
init(_data?: any): void;
|
|
5793
5818
|
static fromJS(data: any): UpdateDowntimeReasonRequest;
|
|
@@ -5796,8 +5821,11 @@ export declare class UpdateDowntimeReasonRequest implements IUpdateDowntimeReaso
|
|
|
5796
5821
|
export interface IUpdateDowntimeReasonRequest {
|
|
5797
5822
|
reason: string;
|
|
5798
5823
|
machineTypes: string[];
|
|
5824
|
+
machineGroups?: string[] | null;
|
|
5799
5825
|
reasonType: DowntimeReasonTypeDto;
|
|
5800
5826
|
description?: string | null;
|
|
5827
|
+
parentId?: string | null;
|
|
5828
|
+
displayOrder?: number | null;
|
|
5801
5829
|
}
|
|
5802
5830
|
export declare class MachineTypeDto implements IMachineTypeDto {
|
|
5803
5831
|
machineType: string;
|
|
@@ -5809,6 +5837,52 @@ export declare class MachineTypeDto implements IMachineTypeDto {
|
|
|
5809
5837
|
export interface IMachineTypeDto {
|
|
5810
5838
|
machineType: string;
|
|
5811
5839
|
}
|
|
5840
|
+
export declare class ParentTopicDto implements IParentTopicDto {
|
|
5841
|
+
id: string;
|
|
5842
|
+
name: string;
|
|
5843
|
+
description?: string | null;
|
|
5844
|
+
displayOrder?: number;
|
|
5845
|
+
subReasons?: DowntimeReasonDto[];
|
|
5846
|
+
constructor(data?: IParentTopicDto);
|
|
5847
|
+
init(_data?: any): void;
|
|
5848
|
+
static fromJS(data: any): ParentTopicDto;
|
|
5849
|
+
toJSON(data?: any): any;
|
|
5850
|
+
}
|
|
5851
|
+
export interface IParentTopicDto {
|
|
5852
|
+
id: string;
|
|
5853
|
+
name: string;
|
|
5854
|
+
description?: string | null;
|
|
5855
|
+
displayOrder?: number;
|
|
5856
|
+
subReasons?: DowntimeReasonDto[];
|
|
5857
|
+
}
|
|
5858
|
+
export declare class CreateParentTopicRequest implements ICreateParentTopicRequest {
|
|
5859
|
+
name: string;
|
|
5860
|
+
description?: string | null;
|
|
5861
|
+
displayOrder?: number | null;
|
|
5862
|
+
constructor(data?: ICreateParentTopicRequest);
|
|
5863
|
+
init(_data?: any): void;
|
|
5864
|
+
static fromJS(data: any): CreateParentTopicRequest;
|
|
5865
|
+
toJSON(data?: any): any;
|
|
5866
|
+
}
|
|
5867
|
+
export interface ICreateParentTopicRequest {
|
|
5868
|
+
name: string;
|
|
5869
|
+
description?: string | null;
|
|
5870
|
+
displayOrder?: number | null;
|
|
5871
|
+
}
|
|
5872
|
+
export declare class UpdateParentTopicRequest implements IUpdateParentTopicRequest {
|
|
5873
|
+
name: string;
|
|
5874
|
+
description?: string | null;
|
|
5875
|
+
displayOrder?: number | null;
|
|
5876
|
+
constructor(data?: IUpdateParentTopicRequest);
|
|
5877
|
+
init(_data?: any): void;
|
|
5878
|
+
static fromJS(data: any): UpdateParentTopicRequest;
|
|
5879
|
+
toJSON(data?: any): any;
|
|
5880
|
+
}
|
|
5881
|
+
export interface IUpdateParentTopicRequest {
|
|
5882
|
+
name: string;
|
|
5883
|
+
description?: string | null;
|
|
5884
|
+
displayOrder?: number | null;
|
|
5885
|
+
}
|
|
5812
5886
|
export declare class CreateDowntimePeriodReason implements ICreateDowntimePeriodReason {
|
|
5813
5887
|
reasonId: string;
|
|
5814
5888
|
assetId: number;
|
|
@@ -8813,6 +8887,7 @@ export interface IFixtureUpdateDto {
|
|
|
8813
8887
|
}
|
|
8814
8888
|
export declare class FixtureSuggestionDto implements IFixtureSuggestionDto {
|
|
8815
8889
|
suggestion: string;
|
|
8890
|
+
fixtureTypes: FixtureTypeDto[];
|
|
8816
8891
|
constructor(data?: IFixtureSuggestionDto);
|
|
8817
8892
|
init(_data?: any): void;
|
|
8818
8893
|
static fromJS(data: any): FixtureSuggestionDto;
|
|
@@ -8820,6 +8895,7 @@ export declare class FixtureSuggestionDto implements IFixtureSuggestionDto {
|
|
|
8820
8895
|
}
|
|
8821
8896
|
export interface IFixtureSuggestionDto {
|
|
8822
8897
|
suggestion: string;
|
|
8898
|
+
fixtureTypes: FixtureTypeDto[];
|
|
8823
8899
|
}
|
|
8824
8900
|
export declare class UploadFixtureAttachmentDto implements IUploadFixtureAttachmentDto {
|
|
8825
8901
|
uploadKey?: string;
|
|
@@ -12208,8 +12284,8 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
12208
12284
|
coatingThickness?: number | null;
|
|
12209
12285
|
}
|
|
12210
12286
|
export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|
|
12211
|
-
id?: string;
|
|
12212
|
-
balloonId?: string;
|
|
12287
|
+
id?: string | null;
|
|
12288
|
+
balloonId?: string | null;
|
|
12213
12289
|
oldReference: number;
|
|
12214
12290
|
newReference: number;
|
|
12215
12291
|
section?: string | null;
|
|
@@ -12235,8 +12311,8 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
12235
12311
|
toJSON(data?: any): any;
|
|
12236
12312
|
}
|
|
12237
12313
|
export interface IUpdateSchemaGroupedElementRowDto {
|
|
12238
|
-
id?: string;
|
|
12239
|
-
balloonId?: string;
|
|
12314
|
+
id?: string | null;
|
|
12315
|
+
balloonId?: string | null;
|
|
12240
12316
|
oldReference: number;
|
|
12241
12317
|
newReference: number;
|
|
12242
12318
|
section?: string | null;
|
|
@@ -12272,7 +12348,7 @@ export interface IDeleteSchemaGroupedElementRowsDto {
|
|
|
12272
12348
|
export declare class UploadMeasurementImageRequest implements IUploadMeasurementImageRequest {
|
|
12273
12349
|
uploadKey: string;
|
|
12274
12350
|
filename: string;
|
|
12275
|
-
ballonId?: string;
|
|
12351
|
+
ballonId?: string | null;
|
|
12276
12352
|
reference: number;
|
|
12277
12353
|
constructor(data?: IUploadMeasurementImageRequest);
|
|
12278
12354
|
init(_data?: any): void;
|
|
@@ -12282,7 +12358,7 @@ export declare class UploadMeasurementImageRequest implements IUploadMeasurement
|
|
|
12282
12358
|
export interface IUploadMeasurementImageRequest {
|
|
12283
12359
|
uploadKey: string;
|
|
12284
12360
|
filename: string;
|
|
12285
|
-
ballonId?: string;
|
|
12361
|
+
ballonId?: string | null;
|
|
12286
12362
|
reference: number;
|
|
12287
12363
|
}
|
|
12288
12364
|
export declare class UpdateSchemaSettingsRequest implements IUpdateSchemaSettingsRequest {
|
|
@@ -13188,7 +13264,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
|
|
|
13188
13264
|
customerId?: string | null;
|
|
13189
13265
|
customerName?: string | null;
|
|
13190
13266
|
purchaseOrder?: string | null;
|
|
13191
|
-
sequences
|
|
13267
|
+
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13192
13268
|
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13193
13269
|
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13194
13270
|
init(_data?: any): void;
|
|
@@ -13200,7 +13276,7 @@ export interface ICreateMeasurementFormInstanceRequest {
|
|
|
13200
13276
|
customerId?: string | null;
|
|
13201
13277
|
customerName?: string | null;
|
|
13202
13278
|
purchaseOrder?: string | null;
|
|
13203
|
-
sequences
|
|
13279
|
+
sequences?: CreateMeasurementFormInstanceRequestSequence[];
|
|
13204
13280
|
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13205
13281
|
}
|
|
13206
13282
|
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
@@ -13683,32 +13759,6 @@ export interface IExportDimensionReportRequest {
|
|
|
13683
13759
|
workOrder?: string | null;
|
|
13684
13760
|
comment?: string | null;
|
|
13685
13761
|
}
|
|
13686
|
-
export declare class UpdateSchemaInstanceElementsRequest implements IUpdateSchemaInstanceElementsRequest {
|
|
13687
|
-
elements?: SchemaInstanceElementDto[] | null;
|
|
13688
|
-
constructor(data?: IUpdateSchemaInstanceElementsRequest);
|
|
13689
|
-
init(_data?: any): void;
|
|
13690
|
-
static fromJS(data: any): UpdateSchemaInstanceElementsRequest;
|
|
13691
|
-
toJSON(data?: any): any;
|
|
13692
|
-
}
|
|
13693
|
-
export interface IUpdateSchemaInstanceElementsRequest {
|
|
13694
|
-
elements?: SchemaInstanceElementDto[] | null;
|
|
13695
|
-
}
|
|
13696
|
-
export declare class SchemaInstanceElementDto implements ISchemaInstanceElementDto {
|
|
13697
|
-
elementId: string;
|
|
13698
|
-
balloonId?: string | null;
|
|
13699
|
-
reference: number;
|
|
13700
|
-
disabled: boolean;
|
|
13701
|
-
constructor(data?: ISchemaInstanceElementDto);
|
|
13702
|
-
init(_data?: any): void;
|
|
13703
|
-
static fromJS(data: any): SchemaInstanceElementDto;
|
|
13704
|
-
toJSON(data?: any): any;
|
|
13705
|
-
}
|
|
13706
|
-
export interface ISchemaInstanceElementDto {
|
|
13707
|
-
elementId: string;
|
|
13708
|
-
balloonId?: string | null;
|
|
13709
|
-
reference: number;
|
|
13710
|
-
disabled: boolean;
|
|
13711
|
-
}
|
|
13712
13762
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
13713
13763
|
id: string;
|
|
13714
13764
|
name: string;
|