@ignos/api-client 20251106.0.13145-alpha → 20251110.0.13171
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 +161 -92
- package/lib/ignosportal-api.js +556 -313
- package/package.json +1 -1
- package/src/ignosportal-api.ts +675 -370
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -276,6 +276,8 @@ export interface IUserAppSettingsClient {
|
|
|
276
276
|
setRouteCardUserSettings(settings: RouteCardAppSettings): Promise<void>;
|
|
277
277
|
getMoveUserSettings(): Promise<MoveAppSettings>;
|
|
278
278
|
setMoveUserSettings(settings: MoveAppSettings): Promise<void>;
|
|
279
|
+
getEngageUserSettings(): Promise<EngageAppSettings>;
|
|
280
|
+
setEngageUserSettings(settings: EngageAppSettings): Promise<void>;
|
|
279
281
|
}
|
|
280
282
|
export declare class UserAppSettingsClient extends AuthorizedApiBase implements IUserAppSettingsClient {
|
|
281
283
|
private http;
|
|
@@ -292,6 +294,10 @@ export declare class UserAppSettingsClient extends AuthorizedApiBase implements
|
|
|
292
294
|
protected processGetMoveUserSettings(response: Response): Promise<MoveAppSettings>;
|
|
293
295
|
setMoveUserSettings(settings: MoveAppSettings): Promise<void>;
|
|
294
296
|
protected processSetMoveUserSettings(response: Response): Promise<void>;
|
|
297
|
+
getEngageUserSettings(): Promise<EngageAppSettings>;
|
|
298
|
+
protected processGetEngageUserSettings(response: Response): Promise<EngageAppSettings>;
|
|
299
|
+
setEngageUserSettings(settings: EngageAppSettings): Promise<void>;
|
|
300
|
+
protected processSetEngageUserSettings(response: Response): Promise<void>;
|
|
295
301
|
}
|
|
296
302
|
export interface IUploadClient {
|
|
297
303
|
createUploadInfo(): Promise<UploadInfoDto>;
|
|
@@ -1251,12 +1257,14 @@ export interface ICncSetupClient {
|
|
|
1251
1257
|
listCncToolByOperation(id: string): Promise<CncToolDto[]>;
|
|
1252
1258
|
updateCncMachineOperationTool(operationId: string, id: number, request: UpdateCncMachineOperationToolRequest): Promise<CncToolDto>;
|
|
1253
1259
|
deleteCncMachineOperationTool(operationId: string, id: number): Promise<void>;
|
|
1260
|
+
deleteCncMachineOperationToolMultiple(operationId: string, idsToDelete: number[]): Promise<void>;
|
|
1254
1261
|
uploadOperationCncToolImage(operationId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1255
1262
|
deleteCncMachineOperationToolImage(operationId: string, id: number, filename: string): Promise<void>;
|
|
1256
1263
|
createCncMachineTool(id: string, request: CreateCncMachineOperationToolRequest): Promise<CncToolDto>;
|
|
1257
1264
|
listCncToolByCncMachine(id: string): Promise<CncToolDto[]>;
|
|
1258
1265
|
updateCncMachineTool(cncMachineId: string, id: number, request: UpdateCncMachineToolRequest): Promise<CncToolDto>;
|
|
1259
1266
|
deleteCncMachineTool(cncMachineId: string, id: number): Promise<void>;
|
|
1267
|
+
deleteCncMachineToolMultiple(cncMachineId: string, idsToDelete: number[]): Promise<void>;
|
|
1260
1268
|
uploadCncMachineToolImage(machineId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1261
1269
|
deleteCncMachineToolImage(machineId: string, id: number, filename: string): Promise<void>;
|
|
1262
1270
|
importOperationWithTools(request: ImportOperationWithTool): Promise<void>;
|
|
@@ -1357,6 +1365,8 @@ export declare class CncSetupClient extends AuthorizedApiBase implements ICncSet
|
|
|
1357
1365
|
protected processUpdateCncMachineOperationTool(response: Response): Promise<CncToolDto>;
|
|
1358
1366
|
deleteCncMachineOperationTool(operationId: string, id: number): Promise<void>;
|
|
1359
1367
|
protected processDeleteCncMachineOperationTool(response: Response): Promise<void>;
|
|
1368
|
+
deleteCncMachineOperationToolMultiple(operationId: string, idsToDelete: number[]): Promise<void>;
|
|
1369
|
+
protected processDeleteCncMachineOperationToolMultiple(response: Response): Promise<void>;
|
|
1360
1370
|
uploadOperationCncToolImage(operationId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1361
1371
|
protected processUploadOperationCncToolImage(response: Response): Promise<ImageFileDto>;
|
|
1362
1372
|
deleteCncMachineOperationToolImage(operationId: string, id: number, filename: string): Promise<void>;
|
|
@@ -1369,6 +1379,8 @@ export declare class CncSetupClient extends AuthorizedApiBase implements ICncSet
|
|
|
1369
1379
|
protected processUpdateCncMachineTool(response: Response): Promise<CncToolDto>;
|
|
1370
1380
|
deleteCncMachineTool(cncMachineId: string, id: number): Promise<void>;
|
|
1371
1381
|
protected processDeleteCncMachineTool(response: Response): Promise<void>;
|
|
1382
|
+
deleteCncMachineToolMultiple(cncMachineId: string, idsToDelete: number[]): Promise<void>;
|
|
1383
|
+
protected processDeleteCncMachineToolMultiple(response: Response): Promise<void>;
|
|
1372
1384
|
uploadCncMachineToolImage(machineId: string, id: number, request: UploadCncToolImageRequest): Promise<ImageFileDto>;
|
|
1373
1385
|
protected processUploadCncMachineToolImage(response: Response): Promise<ImageFileDto>;
|
|
1374
1386
|
deleteCncMachineToolImage(machineId: string, id: number, filename: string): Promise<void>;
|
|
@@ -2122,14 +2134,11 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2122
2134
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2123
2135
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2124
2136
|
}
|
|
2125
|
-
export interface
|
|
2126
|
-
|
|
2137
|
+
export interface IMeasurementFormSchemasAdminClient {
|
|
2138
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2127
2139
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2128
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2129
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2130
2140
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2131
2141
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2132
|
-
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2133
2142
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2134
2143
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
2135
2144
|
updateSchemaRow(id: string, request: UpdateSchemaGroupedElementRowDto): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2194,27 +2203,21 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2194
2203
|
listMeasurmentFormSchemasWithHistory(pageSize: number | undefined, customerId: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, version: number | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2195
2204
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2196
2205
|
}
|
|
2197
|
-
export declare class
|
|
2206
|
+
export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase implements IMeasurementFormSchemasAdminClient {
|
|
2198
2207
|
private http;
|
|
2199
2208
|
private baseUrl;
|
|
2200
2209
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2201
2210
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2202
2211
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2203
2212
|
});
|
|
2204
|
-
|
|
2205
|
-
protected
|
|
2213
|
+
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2214
|
+
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2206
2215
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2207
2216
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
2208
|
-
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2209
|
-
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2210
|
-
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2211
|
-
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2212
2217
|
updateMeasurementFormSchema(id: string, request: UpdateMeasurementFormSchemaRequest): Promise<MeasurementFormSchemaDto>;
|
|
2213
2218
|
protected processUpdateMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2214
2219
|
deleteMeasurementForm(id: string): Promise<void>;
|
|
2215
2220
|
protected processDeleteMeasurementForm(response: Response): Promise<void>;
|
|
2216
|
-
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2217
|
-
protected processGetArchivedMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2218
2221
|
copyMeasurementFormSchema(id: string, request: CopyMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2219
2222
|
protected processCopyMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2220
2223
|
updateSchemaGroupedElements(id: string, request: UpdateSchemaGroupedElementsRequest): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2327,6 +2330,22 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2327
2330
|
postListMeasurementFormSchemasWithHistory(request: ListMeasurementFormSchemasWithHistoryRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2328
2331
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2329
2332
|
}
|
|
2333
|
+
export interface IMeasurementFormSchemasClient {
|
|
2334
|
+
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2335
|
+
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2336
|
+
}
|
|
2337
|
+
export declare class MeasurementFormSchemasClient extends AuthorizedApiBase implements IMeasurementFormSchemasClient {
|
|
2338
|
+
private http;
|
|
2339
|
+
private baseUrl;
|
|
2340
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2341
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2342
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2343
|
+
});
|
|
2344
|
+
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2345
|
+
protected processGetMeasurementFormSchema(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2346
|
+
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2347
|
+
protected processPostListMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2348
|
+
}
|
|
2330
2349
|
export interface IMeasurementFormSettingsClient {
|
|
2331
2350
|
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2332
2351
|
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
@@ -2684,6 +2703,7 @@ export interface IWorkordersClient {
|
|
|
2684
2703
|
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2685
2704
|
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2686
2705
|
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2706
|
+
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2687
2707
|
}
|
|
2688
2708
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2689
2709
|
private http;
|
|
@@ -2825,6 +2845,8 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2825
2845
|
protected processGetLastRead(response: Response): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2826
2846
|
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2827
2847
|
protected processSetLastRead(response: Response): Promise<void>;
|
|
2848
|
+
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2849
|
+
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2828
2850
|
}
|
|
2829
2851
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
2830
2852
|
displayName: string;
|
|
@@ -3406,6 +3428,16 @@ export interface IMoveAppSettings {
|
|
|
3406
3428
|
engageMoveAutoPrompt?: boolean;
|
|
3407
3429
|
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
3408
3430
|
}
|
|
3431
|
+
export declare class EngageAppSettings implements IEngageAppSettings {
|
|
3432
|
+
myResourceGroup?: string;
|
|
3433
|
+
constructor(data?: IEngageAppSettings);
|
|
3434
|
+
init(_data?: any): void;
|
|
3435
|
+
static fromJS(data: any): EngageAppSettings;
|
|
3436
|
+
toJSON(data?: any): any;
|
|
3437
|
+
}
|
|
3438
|
+
export interface IEngageAppSettings {
|
|
3439
|
+
myResourceGroup?: string;
|
|
3440
|
+
}
|
|
3409
3441
|
export declare class UploadInfoDto implements IUploadInfoDto {
|
|
3410
3442
|
baseUrl?: string | null;
|
|
3411
3443
|
key?: string | null;
|
|
@@ -5221,6 +5253,8 @@ export declare class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
5221
5253
|
unit?: string | null;
|
|
5222
5254
|
min?: number | null;
|
|
5223
5255
|
max?: number | null;
|
|
5256
|
+
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5257
|
+
lastUsedDate?: Date | null;
|
|
5224
5258
|
lastCalibrationDate?: Date | null;
|
|
5225
5259
|
nextCalibrationDate?: Date | null;
|
|
5226
5260
|
calibrationInterval?: number | null;
|
|
@@ -5248,6 +5282,8 @@ export interface IMeasuringToolDto {
|
|
|
5248
5282
|
unit?: string | null;
|
|
5249
5283
|
min?: number | null;
|
|
5250
5284
|
max?: number | null;
|
|
5285
|
+
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5286
|
+
lastUsedDate?: Date | null;
|
|
5251
5287
|
lastCalibrationDate?: Date | null;
|
|
5252
5288
|
nextCalibrationDate?: Date | null;
|
|
5253
5289
|
calibrationInterval?: number | null;
|
|
@@ -5259,6 +5295,20 @@ export interface IMeasuringToolDto {
|
|
|
5259
5295
|
usageSinceLastCalibration?: number | null;
|
|
5260
5296
|
calibrationStatus: CalibrationStatusDto;
|
|
5261
5297
|
}
|
|
5298
|
+
export declare class MeasuringToolLastUsedByDto implements IMeasuringToolLastUsedByDto {
|
|
5299
|
+
objectId?: string;
|
|
5300
|
+
userId?: string;
|
|
5301
|
+
displayName?: string | null;
|
|
5302
|
+
constructor(data?: IMeasuringToolLastUsedByDto);
|
|
5303
|
+
init(_data?: any): void;
|
|
5304
|
+
static fromJS(data: any): MeasuringToolLastUsedByDto;
|
|
5305
|
+
toJSON(data?: any): any;
|
|
5306
|
+
}
|
|
5307
|
+
export interface IMeasuringToolLastUsedByDto {
|
|
5308
|
+
objectId?: string;
|
|
5309
|
+
userId?: string;
|
|
5310
|
+
displayName?: string | null;
|
|
5311
|
+
}
|
|
5262
5312
|
export type CalibrationStatusDto = "Uncalibrated" | "Deprecated" | "Expired" | "SoonDue" | "Valid";
|
|
5263
5313
|
export declare class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
5264
5314
|
id: string;
|
|
@@ -5271,6 +5321,8 @@ export declare class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
|
5271
5321
|
defaultLocation?: string | null;
|
|
5272
5322
|
min?: number | null;
|
|
5273
5323
|
max?: number | null;
|
|
5324
|
+
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5325
|
+
lastUsedDate?: Date | null;
|
|
5274
5326
|
calibrationInterval?: number | null;
|
|
5275
5327
|
serialNumber?: string | null;
|
|
5276
5328
|
precision?: string | null;
|
|
@@ -5297,6 +5349,8 @@ export interface IMeasuringToolDetailDto {
|
|
|
5297
5349
|
defaultLocation?: string | null;
|
|
5298
5350
|
min?: number | null;
|
|
5299
5351
|
max?: number | null;
|
|
5352
|
+
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5353
|
+
lastUsedDate?: Date | null;
|
|
5300
5354
|
calibrationInterval?: number | null;
|
|
5301
5355
|
serialNumber?: string | null;
|
|
5302
5356
|
precision?: string | null;
|
|
@@ -12037,84 +12091,6 @@ export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
|
12037
12091
|
}
|
|
12038
12092
|
export interface ICreateWeldingIotConfig {
|
|
12039
12093
|
}
|
|
12040
|
-
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12041
|
-
results: MeasurementFormListDto[];
|
|
12042
|
-
continuationToken?: string | null;
|
|
12043
|
-
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12044
|
-
init(_data?: any): void;
|
|
12045
|
-
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12046
|
-
toJSON(data?: any): any;
|
|
12047
|
-
}
|
|
12048
|
-
export interface IPagedResultOfMeasurementFormListDto {
|
|
12049
|
-
results: MeasurementFormListDto[];
|
|
12050
|
-
continuationToken?: string | null;
|
|
12051
|
-
}
|
|
12052
|
-
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12053
|
-
id: string;
|
|
12054
|
-
schemaId: string;
|
|
12055
|
-
versionId: number;
|
|
12056
|
-
customerId?: string | null;
|
|
12057
|
-
customerName?: string | null;
|
|
12058
|
-
partNumber?: string | null;
|
|
12059
|
-
partRevision?: string | null;
|
|
12060
|
-
partName?: string | null;
|
|
12061
|
-
drawing: string;
|
|
12062
|
-
drawingRevision?: string | null;
|
|
12063
|
-
createdBy: string;
|
|
12064
|
-
created: Date;
|
|
12065
|
-
status: MeasurementFormStatus;
|
|
12066
|
-
source: MeasurementFormSource;
|
|
12067
|
-
constructor(data?: IMeasurementFormListDto);
|
|
12068
|
-
init(_data?: any): void;
|
|
12069
|
-
static fromJS(data: any): MeasurementFormListDto;
|
|
12070
|
-
toJSON(data?: any): any;
|
|
12071
|
-
}
|
|
12072
|
-
export interface IMeasurementFormListDto {
|
|
12073
|
-
id: string;
|
|
12074
|
-
schemaId: string;
|
|
12075
|
-
versionId: number;
|
|
12076
|
-
customerId?: string | null;
|
|
12077
|
-
customerName?: string | null;
|
|
12078
|
-
partNumber?: string | null;
|
|
12079
|
-
partRevision?: string | null;
|
|
12080
|
-
partName?: string | null;
|
|
12081
|
-
drawing: string;
|
|
12082
|
-
drawingRevision?: string | null;
|
|
12083
|
-
createdBy: string;
|
|
12084
|
-
created: Date;
|
|
12085
|
-
status: MeasurementFormStatus;
|
|
12086
|
-
source: MeasurementFormSource;
|
|
12087
|
-
}
|
|
12088
|
-
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12089
|
-
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12090
|
-
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
12091
|
-
pageSize?: number | null;
|
|
12092
|
-
customerId?: string | null;
|
|
12093
|
-
customerName?: string | null;
|
|
12094
|
-
partName?: string | null;
|
|
12095
|
-
partNumber?: string | null;
|
|
12096
|
-
partRevision?: string | null;
|
|
12097
|
-
drawing?: string | null;
|
|
12098
|
-
drawingRevision?: string | null;
|
|
12099
|
-
filter?: string | null;
|
|
12100
|
-
continuationToken?: string | null;
|
|
12101
|
-
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
12102
|
-
init(_data?: any): void;
|
|
12103
|
-
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
12104
|
-
toJSON(data?: any): any;
|
|
12105
|
-
}
|
|
12106
|
-
export interface IListMeasurementFormSchemasRequest {
|
|
12107
|
-
pageSize?: number | null;
|
|
12108
|
-
customerId?: string | null;
|
|
12109
|
-
customerName?: string | null;
|
|
12110
|
-
partName?: string | null;
|
|
12111
|
-
partNumber?: string | null;
|
|
12112
|
-
partRevision?: string | null;
|
|
12113
|
-
drawing?: string | null;
|
|
12114
|
-
drawingRevision?: string | null;
|
|
12115
|
-
filter?: string | null;
|
|
12116
|
-
continuationToken?: string | null;
|
|
12117
|
-
}
|
|
12118
12094
|
export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
12119
12095
|
id: string;
|
|
12120
12096
|
versionId: number;
|
|
@@ -12175,6 +12151,8 @@ export interface IMeasurementFormSchemaDto {
|
|
|
12175
12151
|
groupedElements: MeasurementFormGroupedElementDto[];
|
|
12176
12152
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
12177
12153
|
}
|
|
12154
|
+
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12155
|
+
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12178
12156
|
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
12179
12157
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
12180
12158
|
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
@@ -12573,6 +12551,54 @@ export interface IMeasurementFormImportStatusDto {
|
|
|
12573
12551
|
errorMessage: string;
|
|
12574
12552
|
timestamp: Date;
|
|
12575
12553
|
}
|
|
12554
|
+
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12555
|
+
results: MeasurementFormListDto[];
|
|
12556
|
+
continuationToken?: string | null;
|
|
12557
|
+
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12558
|
+
init(_data?: any): void;
|
|
12559
|
+
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12560
|
+
toJSON(data?: any): any;
|
|
12561
|
+
}
|
|
12562
|
+
export interface IPagedResultOfMeasurementFormListDto {
|
|
12563
|
+
results: MeasurementFormListDto[];
|
|
12564
|
+
continuationToken?: string | null;
|
|
12565
|
+
}
|
|
12566
|
+
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12567
|
+
id: string;
|
|
12568
|
+
schemaId: string;
|
|
12569
|
+
versionId: number;
|
|
12570
|
+
customerId?: string | null;
|
|
12571
|
+
customerName?: string | null;
|
|
12572
|
+
partNumber?: string | null;
|
|
12573
|
+
partRevision?: string | null;
|
|
12574
|
+
partName?: string | null;
|
|
12575
|
+
drawing: string;
|
|
12576
|
+
drawingRevision?: string | null;
|
|
12577
|
+
createdBy: string;
|
|
12578
|
+
created: Date;
|
|
12579
|
+
status: MeasurementFormStatus;
|
|
12580
|
+
source: MeasurementFormSource;
|
|
12581
|
+
constructor(data?: IMeasurementFormListDto);
|
|
12582
|
+
init(_data?: any): void;
|
|
12583
|
+
static fromJS(data: any): MeasurementFormListDto;
|
|
12584
|
+
toJSON(data?: any): any;
|
|
12585
|
+
}
|
|
12586
|
+
export interface IMeasurementFormListDto {
|
|
12587
|
+
id: string;
|
|
12588
|
+
schemaId: string;
|
|
12589
|
+
versionId: number;
|
|
12590
|
+
customerId?: string | null;
|
|
12591
|
+
customerName?: string | null;
|
|
12592
|
+
partNumber?: string | null;
|
|
12593
|
+
partRevision?: string | null;
|
|
12594
|
+
partName?: string | null;
|
|
12595
|
+
drawing: string;
|
|
12596
|
+
drawingRevision?: string | null;
|
|
12597
|
+
createdBy: string;
|
|
12598
|
+
created: Date;
|
|
12599
|
+
status: MeasurementFormStatus;
|
|
12600
|
+
source: MeasurementFormSource;
|
|
12601
|
+
}
|
|
12576
12602
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12577
12603
|
schemaId: string;
|
|
12578
12604
|
pageSize?: number | null;
|
|
@@ -13114,6 +13140,34 @@ export interface IListMeasurementFormSchemasWithHistoryRequest {
|
|
|
13114
13140
|
version?: number | null;
|
|
13115
13141
|
continuationToken?: string | null;
|
|
13116
13142
|
}
|
|
13143
|
+
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
13144
|
+
pageSize?: number | null;
|
|
13145
|
+
customerId?: string | null;
|
|
13146
|
+
customerName?: string | null;
|
|
13147
|
+
partName?: string | null;
|
|
13148
|
+
partNumber?: string | null;
|
|
13149
|
+
partRevision?: string | null;
|
|
13150
|
+
drawing?: string | null;
|
|
13151
|
+
drawingRevision?: string | null;
|
|
13152
|
+
filter?: string | null;
|
|
13153
|
+
continuationToken?: string | null;
|
|
13154
|
+
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
13155
|
+
init(_data?: any): void;
|
|
13156
|
+
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
13157
|
+
toJSON(data?: any): any;
|
|
13158
|
+
}
|
|
13159
|
+
export interface IListMeasurementFormSchemasRequest {
|
|
13160
|
+
pageSize?: number | null;
|
|
13161
|
+
customerId?: string | null;
|
|
13162
|
+
customerName?: string | null;
|
|
13163
|
+
partName?: string | null;
|
|
13164
|
+
partNumber?: string | null;
|
|
13165
|
+
partRevision?: string | null;
|
|
13166
|
+
drawing?: string | null;
|
|
13167
|
+
drawingRevision?: string | null;
|
|
13168
|
+
filter?: string | null;
|
|
13169
|
+
continuationToken?: string | null;
|
|
13170
|
+
}
|
|
13117
13171
|
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13118
13172
|
results: MeasurementFormInstanceOverviewDto[];
|
|
13119
13173
|
continuationToken?: string | null;
|
|
@@ -14549,6 +14603,7 @@ export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussi
|
|
|
14549
14603
|
workorderId?: string;
|
|
14550
14604
|
companyId?: string;
|
|
14551
14605
|
content?: string;
|
|
14606
|
+
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
14552
14607
|
senderUpn?: string;
|
|
14553
14608
|
senderName?: string;
|
|
14554
14609
|
operationId?: string | null;
|
|
@@ -14565,6 +14620,7 @@ export interface IWorkorderDiscussionMessageDto {
|
|
|
14565
14620
|
workorderId?: string;
|
|
14566
14621
|
companyId?: string;
|
|
14567
14622
|
content?: string;
|
|
14623
|
+
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
14568
14624
|
senderUpn?: string;
|
|
14569
14625
|
senderName?: string;
|
|
14570
14626
|
operationId?: string | null;
|
|
@@ -14572,6 +14628,19 @@ export interface IWorkorderDiscussionMessageDto {
|
|
|
14572
14628
|
resourceId?: string | null;
|
|
14573
14629
|
created?: Date;
|
|
14574
14630
|
}
|
|
14631
|
+
export declare class WorkOrderDiscussionContent implements IWorkOrderDiscussionContent {
|
|
14632
|
+
type?: WorkOrderDiscussionContentType;
|
|
14633
|
+
value?: string;
|
|
14634
|
+
constructor(data?: IWorkOrderDiscussionContent);
|
|
14635
|
+
init(_data?: any): void;
|
|
14636
|
+
static fromJS(data: any): WorkOrderDiscussionContent;
|
|
14637
|
+
toJSON(data?: any): any;
|
|
14638
|
+
}
|
|
14639
|
+
export interface IWorkOrderDiscussionContent {
|
|
14640
|
+
type?: WorkOrderDiscussionContentType;
|
|
14641
|
+
value?: string;
|
|
14642
|
+
}
|
|
14643
|
+
export type WorkOrderDiscussionContentType = 0 | 1;
|
|
14575
14644
|
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14576
14645
|
message: string;
|
|
14577
14646
|
operationId?: string | null;
|