@ignos/api-client 20251106.0.13145-alpha → 20251107.0.13168-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 +141 -92
- package/lib/ignosportal-api.js +520 -313
- package/package.json +1 -1
- package/src/ignosportal-api.ts +619 -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;
|
|
@@ -5272,6 +5304,7 @@ export declare class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
|
5272
5304
|
min?: number | null;
|
|
5273
5305
|
max?: number | null;
|
|
5274
5306
|
calibrationInterval?: number | null;
|
|
5307
|
+
overriddenCalibrationInterval?: number | null;
|
|
5275
5308
|
serialNumber?: string | null;
|
|
5276
5309
|
precision?: string | null;
|
|
5277
5310
|
lastCalibrationDate?: Date | null;
|
|
@@ -5298,6 +5331,7 @@ export interface IMeasuringToolDetailDto {
|
|
|
5298
5331
|
min?: number | null;
|
|
5299
5332
|
max?: number | null;
|
|
5300
5333
|
calibrationInterval?: number | null;
|
|
5334
|
+
overriddenCalibrationInterval?: number | null;
|
|
5301
5335
|
serialNumber?: string | null;
|
|
5302
5336
|
precision?: string | null;
|
|
5303
5337
|
lastCalibrationDate?: Date | null;
|
|
@@ -12037,84 +12071,6 @@ export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
|
12037
12071
|
}
|
|
12038
12072
|
export interface ICreateWeldingIotConfig {
|
|
12039
12073
|
}
|
|
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
12074
|
export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
12119
12075
|
id: string;
|
|
12120
12076
|
versionId: number;
|
|
@@ -12175,6 +12131,8 @@ export interface IMeasurementFormSchemaDto {
|
|
|
12175
12131
|
groupedElements: MeasurementFormGroupedElementDto[];
|
|
12176
12132
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
12177
12133
|
}
|
|
12134
|
+
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
12135
|
+
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
12178
12136
|
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
12179
12137
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
12180
12138
|
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
@@ -12573,6 +12531,54 @@ export interface IMeasurementFormImportStatusDto {
|
|
|
12573
12531
|
errorMessage: string;
|
|
12574
12532
|
timestamp: Date;
|
|
12575
12533
|
}
|
|
12534
|
+
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
12535
|
+
results: MeasurementFormListDto[];
|
|
12536
|
+
continuationToken?: string | null;
|
|
12537
|
+
constructor(data?: IPagedResultOfMeasurementFormListDto);
|
|
12538
|
+
init(_data?: any): void;
|
|
12539
|
+
static fromJS(data: any): PagedResultOfMeasurementFormListDto;
|
|
12540
|
+
toJSON(data?: any): any;
|
|
12541
|
+
}
|
|
12542
|
+
export interface IPagedResultOfMeasurementFormListDto {
|
|
12543
|
+
results: MeasurementFormListDto[];
|
|
12544
|
+
continuationToken?: string | null;
|
|
12545
|
+
}
|
|
12546
|
+
export declare class MeasurementFormListDto implements IMeasurementFormListDto {
|
|
12547
|
+
id: string;
|
|
12548
|
+
schemaId: string;
|
|
12549
|
+
versionId: number;
|
|
12550
|
+
customerId?: string | null;
|
|
12551
|
+
customerName?: string | null;
|
|
12552
|
+
partNumber?: string | null;
|
|
12553
|
+
partRevision?: string | null;
|
|
12554
|
+
partName?: string | null;
|
|
12555
|
+
drawing: string;
|
|
12556
|
+
drawingRevision?: string | null;
|
|
12557
|
+
createdBy: string;
|
|
12558
|
+
created: Date;
|
|
12559
|
+
status: MeasurementFormStatus;
|
|
12560
|
+
source: MeasurementFormSource;
|
|
12561
|
+
constructor(data?: IMeasurementFormListDto);
|
|
12562
|
+
init(_data?: any): void;
|
|
12563
|
+
static fromJS(data: any): MeasurementFormListDto;
|
|
12564
|
+
toJSON(data?: any): any;
|
|
12565
|
+
}
|
|
12566
|
+
export interface 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
|
+
}
|
|
12576
12582
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12577
12583
|
schemaId: string;
|
|
12578
12584
|
pageSize?: number | null;
|
|
@@ -13114,6 +13120,34 @@ export interface IListMeasurementFormSchemasWithHistoryRequest {
|
|
|
13114
13120
|
version?: number | null;
|
|
13115
13121
|
continuationToken?: string | null;
|
|
13116
13122
|
}
|
|
13123
|
+
export declare class ListMeasurementFormSchemasRequest implements IListMeasurementFormSchemasRequest {
|
|
13124
|
+
pageSize?: number | null;
|
|
13125
|
+
customerId?: string | null;
|
|
13126
|
+
customerName?: string | null;
|
|
13127
|
+
partName?: string | null;
|
|
13128
|
+
partNumber?: string | null;
|
|
13129
|
+
partRevision?: string | null;
|
|
13130
|
+
drawing?: string | null;
|
|
13131
|
+
drawingRevision?: string | null;
|
|
13132
|
+
filter?: string | null;
|
|
13133
|
+
continuationToken?: string | null;
|
|
13134
|
+
constructor(data?: IListMeasurementFormSchemasRequest);
|
|
13135
|
+
init(_data?: any): void;
|
|
13136
|
+
static fromJS(data: any): ListMeasurementFormSchemasRequest;
|
|
13137
|
+
toJSON(data?: any): any;
|
|
13138
|
+
}
|
|
13139
|
+
export interface IListMeasurementFormSchemasRequest {
|
|
13140
|
+
pageSize?: number | null;
|
|
13141
|
+
customerId?: string | null;
|
|
13142
|
+
customerName?: string | null;
|
|
13143
|
+
partName?: string | null;
|
|
13144
|
+
partNumber?: string | null;
|
|
13145
|
+
partRevision?: string | null;
|
|
13146
|
+
drawing?: string | null;
|
|
13147
|
+
drawingRevision?: string | null;
|
|
13148
|
+
filter?: string | null;
|
|
13149
|
+
continuationToken?: string | null;
|
|
13150
|
+
}
|
|
13117
13151
|
export declare class PagedResultOfMeasurementFormInstanceOverviewDto implements IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
13118
13152
|
results: MeasurementFormInstanceOverviewDto[];
|
|
13119
13153
|
continuationToken?: string | null;
|
|
@@ -14549,6 +14583,7 @@ export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussi
|
|
|
14549
14583
|
workorderId?: string;
|
|
14550
14584
|
companyId?: string;
|
|
14551
14585
|
content?: string;
|
|
14586
|
+
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
14552
14587
|
senderUpn?: string;
|
|
14553
14588
|
senderName?: string;
|
|
14554
14589
|
operationId?: string | null;
|
|
@@ -14565,6 +14600,7 @@ export interface IWorkorderDiscussionMessageDto {
|
|
|
14565
14600
|
workorderId?: string;
|
|
14566
14601
|
companyId?: string;
|
|
14567
14602
|
content?: string;
|
|
14603
|
+
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
14568
14604
|
senderUpn?: string;
|
|
14569
14605
|
senderName?: string;
|
|
14570
14606
|
operationId?: string | null;
|
|
@@ -14572,6 +14608,19 @@ export interface IWorkorderDiscussionMessageDto {
|
|
|
14572
14608
|
resourceId?: string | null;
|
|
14573
14609
|
created?: Date;
|
|
14574
14610
|
}
|
|
14611
|
+
export declare class WorkOrderDiscussionContent implements IWorkOrderDiscussionContent {
|
|
14612
|
+
type?: WorkOrderDiscussionContentType;
|
|
14613
|
+
value?: string;
|
|
14614
|
+
constructor(data?: IWorkOrderDiscussionContent);
|
|
14615
|
+
init(_data?: any): void;
|
|
14616
|
+
static fromJS(data: any): WorkOrderDiscussionContent;
|
|
14617
|
+
toJSON(data?: any): any;
|
|
14618
|
+
}
|
|
14619
|
+
export interface IWorkOrderDiscussionContent {
|
|
14620
|
+
type?: WorkOrderDiscussionContentType;
|
|
14621
|
+
value?: string;
|
|
14622
|
+
}
|
|
14623
|
+
export type WorkOrderDiscussionContentType = 0 | 1;
|
|
14575
14624
|
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14576
14625
|
message: string;
|
|
14577
14626
|
operationId?: string | null;
|