@ignos/api-client 20260205.41.1-alpha → 20260205.43.1
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 +16 -0
- package/lib/ignosportal-api.js +8 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +16 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1048,6 +1048,10 @@ export interface IMeasuringToolsClient {
|
|
|
1048
1048
|
restoreTool(id: string): Promise<void>;
|
|
1049
1049
|
getCalibrationList(status: CalibrationListStatus | undefined): Promise<CalibrationListToolDto[]>;
|
|
1050
1050
|
importMeasuringTool(request: ImportMeasuringTool): Promise<MeasuringToolDetailDto>;
|
|
1051
|
+
/**
|
|
1052
|
+
* Import measuring tool calibration results
|
|
1053
|
+
* @param request (optional)
|
|
1054
|
+
*/
|
|
1051
1055
|
importMeasuringTools(request: FileParameter | null | undefined): Promise<MeasuringToolImportResultDto>;
|
|
1052
1056
|
updateMeasuringToolSettings(settings: UpdateMeasuringToolSettings): Promise<void>;
|
|
1053
1057
|
getMeasuringToolSettings(): Promise<MeasuringToolSettingsDto>;
|
|
@@ -1119,6 +1123,10 @@ export declare class MeasuringToolsClient extends AuthorizedApiBase implements I
|
|
|
1119
1123
|
protected processGetCalibrationList(response: Response): Promise<CalibrationListToolDto[]>;
|
|
1120
1124
|
importMeasuringTool(request: ImportMeasuringTool): Promise<MeasuringToolDetailDto>;
|
|
1121
1125
|
protected processImportMeasuringTool(response: Response): Promise<MeasuringToolDetailDto>;
|
|
1126
|
+
/**
|
|
1127
|
+
* Import measuring tool calibration results
|
|
1128
|
+
* @param request (optional)
|
|
1129
|
+
*/
|
|
1122
1130
|
importMeasuringTools(request: FileParameter | null | undefined): Promise<MeasuringToolImportResultDto>;
|
|
1123
1131
|
protected processImportMeasuringTools(response: Response): Promise<MeasuringToolImportResultDto>;
|
|
1124
1132
|
updateMeasuringToolSettings(settings: UpdateMeasuringToolSettings): Promise<void>;
|
|
@@ -2147,6 +2155,10 @@ export interface IMoveMaterialsClient {
|
|
|
2147
2155
|
addMaterial(update: MaterialUpdateDto): Promise<MaterialDesciptionDto>;
|
|
2148
2156
|
removeMaterial(materialId: string): Promise<void>;
|
|
2149
2157
|
updateMaterial(materialId: string, update: MaterialUpdateDto): Promise<MaterialDesciptionDto>;
|
|
2158
|
+
/**
|
|
2159
|
+
* Import materials in CSV format
|
|
2160
|
+
* @param request (optional)
|
|
2161
|
+
*/
|
|
2150
2162
|
importMaterials(request: FileParameter | null | undefined): Promise<void>;
|
|
2151
2163
|
}
|
|
2152
2164
|
export declare class MoveMaterialsClient extends AuthorizedApiBase implements IMoveMaterialsClient {
|
|
@@ -2164,6 +2176,10 @@ export declare class MoveMaterialsClient extends AuthorizedApiBase implements IM
|
|
|
2164
2176
|
protected processRemoveMaterial(response: Response): Promise<void>;
|
|
2165
2177
|
updateMaterial(materialId: string, update: MaterialUpdateDto): Promise<MaterialDesciptionDto>;
|
|
2166
2178
|
protected processUpdateMaterial(response: Response): Promise<MaterialDesciptionDto>;
|
|
2179
|
+
/**
|
|
2180
|
+
* Import materials in CSV format
|
|
2181
|
+
* @param request (optional)
|
|
2182
|
+
*/
|
|
2167
2183
|
importMaterials(request: FileParameter | null | undefined): Promise<void>;
|
|
2168
2184
|
protected processImportMaterials(response: Response): Promise<void>;
|
|
2169
2185
|
}
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -8554,6 +8554,10 @@ export class MeasuringToolsClient extends AuthorizedApiBase {
|
|
|
8554
8554
|
}
|
|
8555
8555
|
return Promise.resolve(null);
|
|
8556
8556
|
}
|
|
8557
|
+
/**
|
|
8558
|
+
* Import measuring tool calibration results
|
|
8559
|
+
* @param request (optional)
|
|
8560
|
+
*/
|
|
8557
8561
|
importMeasuringTools(request) {
|
|
8558
8562
|
let url_ = this.baseUrl + "/measuringtools/importcalibrations";
|
|
8559
8563
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -18225,6 +18229,10 @@ export class MoveMaterialsClient extends AuthorizedApiBase {
|
|
|
18225
18229
|
}
|
|
18226
18230
|
return Promise.resolve(null);
|
|
18227
18231
|
}
|
|
18232
|
+
/**
|
|
18233
|
+
* Import materials in CSV format
|
|
18234
|
+
* @param request (optional)
|
|
18235
|
+
*/
|
|
18228
18236
|
importMaterials(request) {
|
|
18229
18237
|
let url_ = this.baseUrl + "/move/materials/csv";
|
|
18230
18238
|
url_ = url_.replace(/[?&]$/, "");
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -7901,6 +7901,10 @@ export interface IMeasuringToolsClient {
|
|
|
7901
7901
|
|
|
7902
7902
|
importMeasuringTool(request: ImportMeasuringTool): Promise<MeasuringToolDetailDto>;
|
|
7903
7903
|
|
|
7904
|
+
/**
|
|
7905
|
+
* Import measuring tool calibration results
|
|
7906
|
+
* @param request (optional)
|
|
7907
|
+
*/
|
|
7904
7908
|
importMeasuringTools(request: FileParameter | null | undefined): Promise<MeasuringToolImportResultDto>;
|
|
7905
7909
|
|
|
7906
7910
|
updateMeasuringToolSettings(settings: UpdateMeasuringToolSettings): Promise<void>;
|
|
@@ -9161,6 +9165,10 @@ export class MeasuringToolsClient extends AuthorizedApiBase implements IMeasurin
|
|
|
9161
9165
|
return Promise.resolve<MeasuringToolDetailDto>(null as any);
|
|
9162
9166
|
}
|
|
9163
9167
|
|
|
9168
|
+
/**
|
|
9169
|
+
* Import measuring tool calibration results
|
|
9170
|
+
* @param request (optional)
|
|
9171
|
+
*/
|
|
9164
9172
|
importMeasuringTools(request: FileParameter | null | undefined): Promise<MeasuringToolImportResultDto> {
|
|
9165
9173
|
let url_ = this.baseUrl + "/measuringtools/importcalibrations";
|
|
9166
9174
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -19249,6 +19257,10 @@ export interface IMoveMaterialsClient {
|
|
|
19249
19257
|
|
|
19250
19258
|
updateMaterial(materialId: string, update: MaterialUpdateDto): Promise<MaterialDesciptionDto>;
|
|
19251
19259
|
|
|
19260
|
+
/**
|
|
19261
|
+
* Import materials in CSV format
|
|
19262
|
+
* @param request (optional)
|
|
19263
|
+
*/
|
|
19252
19264
|
importMaterials(request: FileParameter | null | undefined): Promise<void>;
|
|
19253
19265
|
}
|
|
19254
19266
|
|
|
@@ -19421,6 +19433,10 @@ export class MoveMaterialsClient extends AuthorizedApiBase implements IMoveMater
|
|
|
19421
19433
|
return Promise.resolve<MaterialDesciptionDto>(null as any);
|
|
19422
19434
|
}
|
|
19423
19435
|
|
|
19436
|
+
/**
|
|
19437
|
+
* Import materials in CSV format
|
|
19438
|
+
* @param request (optional)
|
|
19439
|
+
*/
|
|
19424
19440
|
importMaterials(request: FileParameter | null | undefined): Promise<void> {
|
|
19425
19441
|
let url_ = this.baseUrl + "/move/materials/csv";
|
|
19426
19442
|
url_ = url_.replace(/[?&]$/, "");
|