@ignos/api-client 20250807.0.12317 → 20250814.0.12365
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 +174 -311
- package/lib/ignosportal-api.js +678 -735
- package/package.json +1 -1
- package/src/ignosportal-api.ts +862 -1060
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2039,7 +2039,7 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2039
2039
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2040
2040
|
}
|
|
2041
2041
|
export interface IMeasurementFormSchemasClient {
|
|
2042
|
-
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2042
|
+
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2043
2043
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2044
2044
|
postListMeasurementFormSchemas(request: ListMeasurementFormSchemasRequest | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2045
2045
|
getMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -2053,7 +2053,6 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2053
2053
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
2054
2054
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
2055
2055
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2056
|
-
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2057
2056
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2058
2057
|
postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2059
2058
|
createMeasurementFormSchemaLink(schemaId: string, request: CreateMeasurementFormSchemaLinkRequest): Promise<MeasurementFormDto>;
|
|
@@ -2085,17 +2084,13 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2085
2084
|
setMeasurementFormMappingBalloons(id: string, request: MeasurementFormBalloonMappingRequestDto[]): Promise<MeasurementFormMappingDto>;
|
|
2086
2085
|
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormMappingBalloonsRequest): Promise<MeasurementFormMappingDto>;
|
|
2087
2086
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2088
|
-
|
|
2089
|
-
* Custom api for initial import. Not to be used more than once per customer.
|
|
2090
|
-
*/
|
|
2091
|
-
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2092
|
-
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined, onlyWithoutDrawingUrl: boolean | null | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2087
|
+
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined, onlyWithoutDrawingUrl: boolean | null | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2093
2088
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2094
2089
|
setMeasurementFormNeedUser(id: string, request: SetMeasurementFormNeedUserRequest): Promise<void>;
|
|
2095
2090
|
setMeasurementFormNeedAsNotNeeded(id: string, request: SetMeasurementFormNeedAsNotNeededRequest): Promise<MeasurementFormSchemaNotNeededDto>;
|
|
2096
2091
|
createMeasurementFormSchemaFromNeed(id: string): Promise<MeasurementFormDto>;
|
|
2097
2092
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2098
|
-
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2093
|
+
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2099
2094
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2100
2095
|
deleteMeasurmentFormSchemasNotNeeded(id: string): Promise<void>;
|
|
2101
2096
|
listResourceTypesForNeedsGenerator(): Promise<MeasurementFormResourceTypeGeneratorDto[]>;
|
|
@@ -2117,7 +2112,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2117
2112
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2118
2113
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2119
2114
|
});
|
|
2120
|
-
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2115
|
+
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2121
2116
|
protected processListMeasurmentFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2122
2117
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2123
2118
|
protected processCreateMeasurementForm(response: Response): Promise<MeasurementFormDto>;
|
|
@@ -2145,8 +2140,6 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2145
2140
|
protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2146
2141
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2147
2142
|
protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2148
|
-
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2149
|
-
protected processGetMeasurementFormImportStatus(response: Response): Promise<MeasurementFormImportStatusDto>;
|
|
2150
2143
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2151
2144
|
protected processListLinkableMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2152
2145
|
postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
|
|
@@ -2197,12 +2190,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2197
2190
|
protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2198
2191
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2199
2192
|
protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2200
|
-
|
|
2201
|
-
* Custom api for initial import. Not to be used more than once per customer.
|
|
2202
|
-
*/
|
|
2203
|
-
importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
2204
|
-
protected processImportMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
|
|
2205
|
-
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined, onlyWithoutDrawingUrl: boolean | null | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2193
|
+
listMeasurementFormNeeds(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined, onlyWithoutDrawingUrl: boolean | null | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2206
2194
|
protected processListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2207
2195
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
2208
2196
|
protected processPostListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2214,7 +2202,7 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2214
2202
|
protected processCreateMeasurementFormSchemaFromNeed(response: Response): Promise<MeasurementFormDto>;
|
|
2215
2203
|
uploadNeedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormNeedDto>;
|
|
2216
2204
|
protected processUploadNeedDrawing(response: Response): Promise<MeasurementFormNeedDto>;
|
|
2217
|
-
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2205
|
+
listMeasurmentFormSchemasNotNeeded(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2218
2206
|
protected processListMeasurmentFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2219
2207
|
postListMeasurementFormSchemasNotNeeded(request: ListMeasurementFormSchemasNotNeededRequest | undefined): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
2220
2208
|
protected processPostListMeasurementFormSchemasNotNeeded(response: Response): Promise<PagedResultOfMeasurementFormSchemaNotNeededDto>;
|
|
@@ -2280,9 +2268,9 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2280
2268
|
approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2281
2269
|
disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2282
2270
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2283
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string,
|
|
2271
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2284
2272
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2285
|
-
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined,
|
|
2273
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2286
2274
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2287
2275
|
saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
|
|
2288
2276
|
saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
|
|
@@ -2298,7 +2286,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2298
2286
|
updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
|
|
2299
2287
|
getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
|
|
2300
2288
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2301
|
-
importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2302
2289
|
}
|
|
2303
2290
|
export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
|
|
2304
2291
|
private http;
|
|
@@ -2335,11 +2322,11 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2335
2322
|
protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2336
2323
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2337
2324
|
protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2338
|
-
getMeasurementFormInstanceSchema(id: string, schemaId: string,
|
|
2325
|
+
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2339
2326
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
2340
2327
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
2341
2328
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
2342
|
-
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined,
|
|
2329
|
+
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2343
2330
|
protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
2344
2331
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
2345
2332
|
protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
|
|
@@ -2371,8 +2358,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2371
2358
|
protected processGetSchemaInstanceElements(response: Response): Promise<SchemaInstanceElementDto[]>;
|
|
2372
2359
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2373
2360
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2374
|
-
importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
2375
|
-
protected processImportMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2376
2361
|
}
|
|
2377
2362
|
export interface IElectricalClient {
|
|
2378
2363
|
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
@@ -2635,6 +2620,12 @@ export interface IWorkordersClient {
|
|
|
2635
2620
|
* Deleteds existing work order mappings.
|
|
2636
2621
|
*/
|
|
2637
2622
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2623
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2624
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessageDto>;
|
|
2625
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2626
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2627
|
+
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2628
|
+
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2638
2629
|
}
|
|
2639
2630
|
export declare class WorkordersClient extends AuthorizedApiBase implements IWorkordersClient {
|
|
2640
2631
|
private http;
|
|
@@ -2764,6 +2755,18 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
2764
2755
|
*/
|
|
2765
2756
|
deleteWorkOrderMappings(): Promise<void>;
|
|
2766
2757
|
protected processDeleteWorkOrderMappings(response: Response): Promise<void>;
|
|
2758
|
+
getDiscussionMessages(id: string): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2759
|
+
protected processGetDiscussionMessages(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
2760
|
+
addDiscussionMessage(id: string, request: AddDiscussionMessageRequest): Promise<WorkorderDiscussionMessageDto>;
|
|
2761
|
+
protected processAddDiscussionMessage(response: Response): Promise<WorkorderDiscussionMessageDto>;
|
|
2762
|
+
updateMessage(id: string, messageId: string, content: string): Promise<FileResponse>;
|
|
2763
|
+
protected processUpdateMessage(response: Response): Promise<FileResponse>;
|
|
2764
|
+
deleteMessage(id: string, messageId: string): Promise<FileResponse>;
|
|
2765
|
+
protected processDeleteMessage(response: Response): Promise<FileResponse>;
|
|
2766
|
+
getLastRead(id: string, operationId: string | null | undefined, resourceId: string | null | undefined): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2767
|
+
protected processGetLastRead(response: Response): Promise<WorkorderDiscussionReadStatusDto>;
|
|
2768
|
+
setLastRead(id: string, request: SetDiscussionLastReadRequest): Promise<void>;
|
|
2769
|
+
protected processSetLastRead(response: Response): Promise<void>;
|
|
2767
2770
|
}
|
|
2768
2771
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
2769
2772
|
displayName: string;
|
|
@@ -11724,6 +11727,7 @@ export declare class ListMeasurementFormSchemasRequest implements IListMeasureme
|
|
|
11724
11727
|
pageSize?: number | null;
|
|
11725
11728
|
customerId?: string | null;
|
|
11726
11729
|
customerName?: string | null;
|
|
11730
|
+
partName?: string | null;
|
|
11727
11731
|
partNumber?: string | null;
|
|
11728
11732
|
partRevision?: string | null;
|
|
11729
11733
|
drawing?: string | null;
|
|
@@ -11739,6 +11743,7 @@ export interface IListMeasurementFormSchemasRequest {
|
|
|
11739
11743
|
pageSize?: number | null;
|
|
11740
11744
|
customerId?: string | null;
|
|
11741
11745
|
customerName?: string | null;
|
|
11746
|
+
partName?: string | null;
|
|
11742
11747
|
partNumber?: string | null;
|
|
11743
11748
|
partRevision?: string | null;
|
|
11744
11749
|
drawing?: string | null;
|
|
@@ -12174,22 +12179,6 @@ export interface IUploadRequest {
|
|
|
12174
12179
|
uploadKey: string;
|
|
12175
12180
|
filename: string;
|
|
12176
12181
|
}
|
|
12177
|
-
export declare class MeasurementFormImportStatusDto implements IMeasurementFormImportStatusDto {
|
|
12178
|
-
progress: number;
|
|
12179
|
-
totalElements: number;
|
|
12180
|
-
errorMessage: string;
|
|
12181
|
-
timestamp: Date;
|
|
12182
|
-
constructor(data?: IMeasurementFormImportStatusDto);
|
|
12183
|
-
init(_data?: any): void;
|
|
12184
|
-
static fromJS(data: any): MeasurementFormImportStatusDto;
|
|
12185
|
-
toJSON(data?: any): any;
|
|
12186
|
-
}
|
|
12187
|
-
export interface IMeasurementFormImportStatusDto {
|
|
12188
|
-
progress: number;
|
|
12189
|
-
totalElements: number;
|
|
12190
|
-
errorMessage: string;
|
|
12191
|
-
timestamp: Date;
|
|
12192
|
-
}
|
|
12193
12182
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12194
12183
|
schemaId: string;
|
|
12195
12184
|
pageSize?: number | null;
|
|
@@ -12408,180 +12397,6 @@ export interface IMeasurementFormMappingSuggestionDto {
|
|
|
12408
12397
|
sourceBalloons: MeasurementFormBalloonMappingDto[];
|
|
12409
12398
|
targetBalloons: MeasurementFormBalloonMappingDto[];
|
|
12410
12399
|
}
|
|
12411
|
-
export declare class ImportMeasurementFormSchema implements IImportMeasurementFormSchema {
|
|
12412
|
-
customerId?: string | null;
|
|
12413
|
-
customerName?: string | null;
|
|
12414
|
-
partNumber: string;
|
|
12415
|
-
partRevision?: string | null;
|
|
12416
|
-
drawing?: string | null;
|
|
12417
|
-
drawingRevision?: string | null;
|
|
12418
|
-
includeToolsInReport: boolean;
|
|
12419
|
-
created?: Date;
|
|
12420
|
-
createdBy?: string | null;
|
|
12421
|
-
updatedBy?: string | null;
|
|
12422
|
-
excludeFromCustomerDocumentation: boolean;
|
|
12423
|
-
source: MeasurementFormSource;
|
|
12424
|
-
extraSchemas?: MeasurementFormImportLinkedSchemaDto[] | null;
|
|
12425
|
-
versions: MeasurementFormVersionImportDto[];
|
|
12426
|
-
constructor(data?: IImportMeasurementFormSchema);
|
|
12427
|
-
init(_data?: any): void;
|
|
12428
|
-
static fromJS(data: any): ImportMeasurementFormSchema;
|
|
12429
|
-
toJSON(data?: any): any;
|
|
12430
|
-
}
|
|
12431
|
-
export interface IImportMeasurementFormSchema {
|
|
12432
|
-
customerId?: string | null;
|
|
12433
|
-
customerName?: string | null;
|
|
12434
|
-
partNumber: string;
|
|
12435
|
-
partRevision?: string | null;
|
|
12436
|
-
drawing?: string | null;
|
|
12437
|
-
drawingRevision?: string | null;
|
|
12438
|
-
includeToolsInReport: boolean;
|
|
12439
|
-
created?: Date;
|
|
12440
|
-
createdBy?: string | null;
|
|
12441
|
-
updatedBy?: string | null;
|
|
12442
|
-
excludeFromCustomerDocumentation: boolean;
|
|
12443
|
-
source: MeasurementFormSource;
|
|
12444
|
-
extraSchemas?: MeasurementFormImportLinkedSchemaDto[] | null;
|
|
12445
|
-
versions: MeasurementFormVersionImportDto[];
|
|
12446
|
-
}
|
|
12447
|
-
export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
|
|
12448
|
-
customerId?: string | null;
|
|
12449
|
-
partNumber?: string | null;
|
|
12450
|
-
partRevision?: string | null;
|
|
12451
|
-
drawing: string;
|
|
12452
|
-
drawingRevision?: string | null;
|
|
12453
|
-
schemaId?: string | null;
|
|
12454
|
-
constructor(data?: IMeasurementFormImportLinkedSchemaDto);
|
|
12455
|
-
init(_data?: any): void;
|
|
12456
|
-
static fromJS(data: any): MeasurementFormImportLinkedSchemaDto;
|
|
12457
|
-
toJSON(data?: any): any;
|
|
12458
|
-
}
|
|
12459
|
-
export interface IMeasurementFormImportLinkedSchemaDto {
|
|
12460
|
-
customerId?: string | null;
|
|
12461
|
-
partNumber?: string | null;
|
|
12462
|
-
partRevision?: string | null;
|
|
12463
|
-
drawing: string;
|
|
12464
|
-
drawingRevision?: string | null;
|
|
12465
|
-
schemaId?: string | null;
|
|
12466
|
-
}
|
|
12467
|
-
export declare class MeasurementFormVersionImportDto implements IMeasurementFormVersionImportDto {
|
|
12468
|
-
version: number;
|
|
12469
|
-
specification?: string | null;
|
|
12470
|
-
drawingUrl?: string | null;
|
|
12471
|
-
markedDrawingUrl?: string | null;
|
|
12472
|
-
xmlUrl?: string | null;
|
|
12473
|
-
inspectionXpertProjectUrl?: string | null;
|
|
12474
|
-
created: Date;
|
|
12475
|
-
createdBy: string;
|
|
12476
|
-
updated?: Date | null;
|
|
12477
|
-
updatedBy?: string | null;
|
|
12478
|
-
elements: MeasurementFormElementImportDto[];
|
|
12479
|
-
isUsed: boolean;
|
|
12480
|
-
constructor(data?: IMeasurementFormVersionImportDto);
|
|
12481
|
-
init(_data?: any): void;
|
|
12482
|
-
static fromJS(data: any): MeasurementFormVersionImportDto;
|
|
12483
|
-
toJSON(data?: any): any;
|
|
12484
|
-
}
|
|
12485
|
-
export interface IMeasurementFormVersionImportDto {
|
|
12486
|
-
version: number;
|
|
12487
|
-
specification?: string | null;
|
|
12488
|
-
drawingUrl?: string | null;
|
|
12489
|
-
markedDrawingUrl?: string | null;
|
|
12490
|
-
xmlUrl?: string | null;
|
|
12491
|
-
inspectionXpertProjectUrl?: string | null;
|
|
12492
|
-
created: Date;
|
|
12493
|
-
createdBy: string;
|
|
12494
|
-
updated?: Date | null;
|
|
12495
|
-
updatedBy?: string | null;
|
|
12496
|
-
elements: MeasurementFormElementImportDto[];
|
|
12497
|
-
isUsed: boolean;
|
|
12498
|
-
}
|
|
12499
|
-
export declare class MeasurementFormElementImportDto implements IMeasurementFormElementImportDto {
|
|
12500
|
-
id?: string | null;
|
|
12501
|
-
imageUrl?: string | null;
|
|
12502
|
-
thumbnailUrl?: string | null;
|
|
12503
|
-
balloonId?: string | null;
|
|
12504
|
-
section?: string | null;
|
|
12505
|
-
pageNumber?: number;
|
|
12506
|
-
sheetZone?: string | null;
|
|
12507
|
-
places?: number | null;
|
|
12508
|
-
nominal?: number | null;
|
|
12509
|
-
nominalText?: string | null;
|
|
12510
|
-
type?: string | null;
|
|
12511
|
-
subType?: string | null;
|
|
12512
|
-
unitOfMeasure?: string | null;
|
|
12513
|
-
typeCharacter?: string | null;
|
|
12514
|
-
plusTolerance?: number | null;
|
|
12515
|
-
minusTolerance?: number | null;
|
|
12516
|
-
upperLimit?: number | null;
|
|
12517
|
-
lowerLimit?: number | null;
|
|
12518
|
-
comments?: string | null;
|
|
12519
|
-
updatedByUser?: string | null;
|
|
12520
|
-
updatedDate?: Date | null;
|
|
12521
|
-
createdByUser?: string | null;
|
|
12522
|
-
createdDate?: Date;
|
|
12523
|
-
frequency?: MeasurementFrequency;
|
|
12524
|
-
frequencyParameter?: number | null;
|
|
12525
|
-
includeInCustomerDocumentation?: boolean;
|
|
12526
|
-
balloonSequence?: number | null;
|
|
12527
|
-
balloonQuantity?: number | null;
|
|
12528
|
-
plusToleranceText?: string | null;
|
|
12529
|
-
minusToleranceText?: string | null;
|
|
12530
|
-
coatingThickness?: number | null;
|
|
12531
|
-
canCopy?: boolean;
|
|
12532
|
-
valueType?: MeasurementFormValueType;
|
|
12533
|
-
inspectionMethod?: string | null;
|
|
12534
|
-
process?: string | null;
|
|
12535
|
-
classification?: string | null;
|
|
12536
|
-
fitGrade?: string | null;
|
|
12537
|
-
fitType?: number | null;
|
|
12538
|
-
forReference?: boolean;
|
|
12539
|
-
constructor(data?: IMeasurementFormElementImportDto);
|
|
12540
|
-
init(_data?: any): void;
|
|
12541
|
-
static fromJS(data: any): MeasurementFormElementImportDto;
|
|
12542
|
-
toJSON(data?: any): any;
|
|
12543
|
-
}
|
|
12544
|
-
export interface IMeasurementFormElementImportDto {
|
|
12545
|
-
id?: string | null;
|
|
12546
|
-
imageUrl?: string | null;
|
|
12547
|
-
thumbnailUrl?: string | null;
|
|
12548
|
-
balloonId?: string | null;
|
|
12549
|
-
section?: string | null;
|
|
12550
|
-
pageNumber?: number;
|
|
12551
|
-
sheetZone?: string | null;
|
|
12552
|
-
places?: number | null;
|
|
12553
|
-
nominal?: number | null;
|
|
12554
|
-
nominalText?: string | null;
|
|
12555
|
-
type?: string | null;
|
|
12556
|
-
subType?: string | null;
|
|
12557
|
-
unitOfMeasure?: string | null;
|
|
12558
|
-
typeCharacter?: string | null;
|
|
12559
|
-
plusTolerance?: number | null;
|
|
12560
|
-
minusTolerance?: number | null;
|
|
12561
|
-
upperLimit?: number | null;
|
|
12562
|
-
lowerLimit?: number | null;
|
|
12563
|
-
comments?: string | null;
|
|
12564
|
-
updatedByUser?: string | null;
|
|
12565
|
-
updatedDate?: Date | null;
|
|
12566
|
-
createdByUser?: string | null;
|
|
12567
|
-
createdDate?: Date;
|
|
12568
|
-
frequency?: MeasurementFrequency;
|
|
12569
|
-
frequencyParameter?: number | null;
|
|
12570
|
-
includeInCustomerDocumentation?: boolean;
|
|
12571
|
-
balloonSequence?: number | null;
|
|
12572
|
-
balloonQuantity?: number | null;
|
|
12573
|
-
plusToleranceText?: string | null;
|
|
12574
|
-
minusToleranceText?: string | null;
|
|
12575
|
-
coatingThickness?: number | null;
|
|
12576
|
-
canCopy?: boolean;
|
|
12577
|
-
valueType?: MeasurementFormValueType;
|
|
12578
|
-
inspectionMethod?: string | null;
|
|
12579
|
-
process?: string | null;
|
|
12580
|
-
classification?: string | null;
|
|
12581
|
-
fitGrade?: string | null;
|
|
12582
|
-
fitType?: number | null;
|
|
12583
|
-
forReference?: boolean;
|
|
12584
|
-
}
|
|
12585
12400
|
export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
|
|
12586
12401
|
results: MeasurementFormNeedDto[];
|
|
12587
12402
|
continuationToken?: string | null;
|
|
@@ -12601,6 +12416,7 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
12601
12416
|
customerName?: string | null;
|
|
12602
12417
|
partNumber?: string | null;
|
|
12603
12418
|
partRevision?: string | null;
|
|
12419
|
+
partName?: string | null;
|
|
12604
12420
|
drawing?: string | null;
|
|
12605
12421
|
drawingRevision?: string | null;
|
|
12606
12422
|
workorder?: string | null;
|
|
@@ -12624,6 +12440,7 @@ export interface IMeasurementFormNeedDto {
|
|
|
12624
12440
|
customerName?: string | null;
|
|
12625
12441
|
partNumber?: string | null;
|
|
12626
12442
|
partRevision?: string | null;
|
|
12443
|
+
partName?: string | null;
|
|
12627
12444
|
drawing?: string | null;
|
|
12628
12445
|
drawingRevision?: string | null;
|
|
12629
12446
|
workorder?: string | null;
|
|
@@ -12640,6 +12457,7 @@ export declare class ListMeasurementFormNeedsRequest implements IListMeasurement
|
|
|
12640
12457
|
pageSize?: number | null;
|
|
12641
12458
|
customerId?: string | null;
|
|
12642
12459
|
customerName?: string | null;
|
|
12460
|
+
partName?: string | null;
|
|
12643
12461
|
partNumber?: string | null;
|
|
12644
12462
|
partRevision?: string | null;
|
|
12645
12463
|
drawing?: string | null;
|
|
@@ -12656,6 +12474,7 @@ export interface IListMeasurementFormNeedsRequest {
|
|
|
12656
12474
|
pageSize?: number | null;
|
|
12657
12475
|
customerId?: string | null;
|
|
12658
12476
|
customerName?: string | null;
|
|
12477
|
+
partName?: string | null;
|
|
12659
12478
|
partNumber?: string | null;
|
|
12660
12479
|
partRevision?: string | null;
|
|
12661
12480
|
drawing?: string | null;
|
|
@@ -12725,6 +12544,7 @@ export declare class ListMeasurementFormSchemasNotNeededRequest implements IList
|
|
|
12725
12544
|
customerId?: string | null;
|
|
12726
12545
|
customerName?: string | null;
|
|
12727
12546
|
partNumber?: string | null;
|
|
12547
|
+
partName?: string | null;
|
|
12728
12548
|
partRevision?: string | null;
|
|
12729
12549
|
drawing?: string | null;
|
|
12730
12550
|
drawingRevision?: string | null;
|
|
@@ -12740,6 +12560,7 @@ export interface IListMeasurementFormSchemasNotNeededRequest {
|
|
|
12740
12560
|
customerId?: string | null;
|
|
12741
12561
|
customerName?: string | null;
|
|
12742
12562
|
partNumber?: string | null;
|
|
12563
|
+
partName?: string | null;
|
|
12743
12564
|
partRevision?: string | null;
|
|
12744
12565
|
drawing?: string | null;
|
|
12745
12566
|
drawingRevision?: string | null;
|
|
@@ -12805,6 +12626,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12805
12626
|
latestSchemaDefinitionId?: string | null;
|
|
12806
12627
|
partNumber?: string | null;
|
|
12807
12628
|
partRevision?: string | null;
|
|
12629
|
+
partName?: string | null;
|
|
12808
12630
|
drawing?: string | null;
|
|
12809
12631
|
drawingRevision?: string | null;
|
|
12810
12632
|
constructor(data?: ISchemaFeedbackDto);
|
|
@@ -12827,6 +12649,7 @@ export interface ISchemaFeedbackDto {
|
|
|
12827
12649
|
latestSchemaDefinitionId?: string | null;
|
|
12828
12650
|
partNumber?: string | null;
|
|
12829
12651
|
partRevision?: string | null;
|
|
12652
|
+
partName?: string | null;
|
|
12830
12653
|
drawing?: string | null;
|
|
12831
12654
|
drawingRevision?: string | null;
|
|
12832
12655
|
}
|
|
@@ -12894,6 +12717,7 @@ export interface IPagedResultOfMeasurementFormInstanceOverviewDto {
|
|
|
12894
12717
|
export declare class MeasurementFormInstanceOverviewDto implements IMeasurementFormInstanceOverviewDto {
|
|
12895
12718
|
id: string;
|
|
12896
12719
|
readonly: boolean;
|
|
12720
|
+
partName?: string | null;
|
|
12897
12721
|
partNumber?: string | null;
|
|
12898
12722
|
partRevision?: string | null;
|
|
12899
12723
|
drawing?: string | null;
|
|
@@ -12914,6 +12738,7 @@ export declare class MeasurementFormInstanceOverviewDto implements IMeasurementF
|
|
|
12914
12738
|
export interface IMeasurementFormInstanceOverviewDto {
|
|
12915
12739
|
id: string;
|
|
12916
12740
|
readonly: boolean;
|
|
12741
|
+
partName?: string | null;
|
|
12917
12742
|
partNumber?: string | null;
|
|
12918
12743
|
partRevision?: string | null;
|
|
12919
12744
|
drawing?: string | null;
|
|
@@ -13010,6 +12835,7 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
13010
12835
|
id: string;
|
|
13011
12836
|
readonly: boolean;
|
|
13012
12837
|
partNumber?: string | null;
|
|
12838
|
+
partName?: string | null;
|
|
13013
12839
|
partRevision?: string | null;
|
|
13014
12840
|
drawing?: string | null;
|
|
13015
12841
|
drawingRevision?: string | null;
|
|
@@ -13019,7 +12845,8 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
|
|
|
13019
12845
|
status: MeasurementFormInstanceStatus;
|
|
13020
12846
|
statusChangedDate?: Date | null;
|
|
13021
12847
|
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
13022
|
-
sequences
|
|
12848
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
12849
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13023
12850
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13024
12851
|
progress: MeasurementFormProgressDto;
|
|
13025
12852
|
approvedReportUrl?: string | null;
|
|
@@ -13033,6 +12860,7 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13033
12860
|
id: string;
|
|
13034
12861
|
readonly: boolean;
|
|
13035
12862
|
partNumber?: string | null;
|
|
12863
|
+
partName?: string | null;
|
|
13036
12864
|
partRevision?: string | null;
|
|
13037
12865
|
drawing?: string | null;
|
|
13038
12866
|
drawingRevision?: string | null;
|
|
@@ -13042,7 +12870,8 @@ export interface IMeasurementFormInstanceDto {
|
|
|
13042
12870
|
status: MeasurementFormInstanceStatus;
|
|
13043
12871
|
statusChangedDate?: Date | null;
|
|
13044
12872
|
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
13045
|
-
sequences
|
|
12873
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
12874
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13046
12875
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13047
12876
|
progress: MeasurementFormProgressDto;
|
|
13048
12877
|
approvedReportUrl?: string | null;
|
|
@@ -13094,6 +12923,20 @@ export interface IMeasurementFormWorkorderSequenceDto {
|
|
|
13094
12923
|
sequence: string;
|
|
13095
12924
|
serialNumber?: string | null;
|
|
13096
12925
|
}
|
|
12926
|
+
export declare class MeasurementFormWorkorderSerialNumberDto implements IMeasurementFormWorkorderSerialNumberDto {
|
|
12927
|
+
lot?: string | null;
|
|
12928
|
+
serialNumber: string;
|
|
12929
|
+
customerSerialNumber?: string | null;
|
|
12930
|
+
constructor(data?: IMeasurementFormWorkorderSerialNumberDto);
|
|
12931
|
+
init(_data?: any): void;
|
|
12932
|
+
static fromJS(data: any): MeasurementFormWorkorderSerialNumberDto;
|
|
12933
|
+
toJSON(data?: any): any;
|
|
12934
|
+
}
|
|
12935
|
+
export interface IMeasurementFormWorkorderSerialNumberDto {
|
|
12936
|
+
lot?: string | null;
|
|
12937
|
+
serialNumber: string;
|
|
12938
|
+
customerSerialNumber?: string | null;
|
|
12939
|
+
}
|
|
13097
12940
|
export declare class MeasurementFormWorkorderSupplierDto implements IMeasurementFormWorkorderSupplierDto {
|
|
13098
12941
|
supplierId: string;
|
|
13099
12942
|
supplierName?: string | null;
|
|
@@ -13166,6 +13009,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
|
|
|
13166
13009
|
customerName?: string | null;
|
|
13167
13010
|
purchaseOrder?: string | null;
|
|
13168
13011
|
sequences: CreateMeasurementFormInstanceRequestSequence[];
|
|
13012
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13169
13013
|
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
13170
13014
|
init(_data?: any): void;
|
|
13171
13015
|
static fromJS(data: any): CreateMeasurementFormInstanceRequest;
|
|
@@ -13177,6 +13021,7 @@ export interface ICreateMeasurementFormInstanceRequest {
|
|
|
13177
13021
|
customerName?: string | null;
|
|
13178
13022
|
purchaseOrder?: string | null;
|
|
13179
13023
|
sequences: CreateMeasurementFormInstanceRequestSequence[];
|
|
13024
|
+
serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
|
|
13180
13025
|
}
|
|
13181
13026
|
export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
|
|
13182
13027
|
sequenceNumber: string;
|
|
@@ -13190,8 +13035,21 @@ export interface ICreateMeasurementFormInstanceRequestSequence {
|
|
|
13190
13035
|
sequenceNumber: string;
|
|
13191
13036
|
serialNumber?: string | null;
|
|
13192
13037
|
}
|
|
13038
|
+
export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13039
|
+
serialNumber: string;
|
|
13040
|
+
customerSerialNumber?: string | null;
|
|
13041
|
+
constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
|
|
13042
|
+
init(_data?: any): void;
|
|
13043
|
+
static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
|
|
13044
|
+
toJSON(data?: any): any;
|
|
13045
|
+
}
|
|
13046
|
+
export interface ICreateMeasurementFormInstanceRequestSerialNumber {
|
|
13047
|
+
serialNumber: string;
|
|
13048
|
+
customerSerialNumber?: string | null;
|
|
13049
|
+
}
|
|
13193
13050
|
export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
|
|
13194
|
-
sequences
|
|
13051
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13052
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13195
13053
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13196
13054
|
constructor(data?: IUpdateMeasurementFormInstanceRequest);
|
|
13197
13055
|
init(_data?: any): void;
|
|
@@ -13199,7 +13057,8 @@ export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeas
|
|
|
13199
13057
|
toJSON(data?: any): any;
|
|
13200
13058
|
}
|
|
13201
13059
|
export interface IUpdateMeasurementFormInstanceRequest {
|
|
13202
|
-
sequences
|
|
13060
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
13061
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
13203
13062
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
13204
13063
|
}
|
|
13205
13064
|
export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
|
|
@@ -13309,7 +13168,8 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13309
13168
|
export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
|
|
13310
13169
|
bonus?: string | null;
|
|
13311
13170
|
completed: boolean;
|
|
13312
|
-
sequence
|
|
13171
|
+
sequence?: string | null;
|
|
13172
|
+
serialNumber: string;
|
|
13313
13173
|
value?: string | null;
|
|
13314
13174
|
updatedByUser: string;
|
|
13315
13175
|
updatedDate: Date;
|
|
@@ -13325,7 +13185,8 @@ export declare class MeasurementFormElementValueDto implements IMeasurementFormE
|
|
|
13325
13185
|
export interface IMeasurementFormElementValueDto {
|
|
13326
13186
|
bonus?: string | null;
|
|
13327
13187
|
completed: boolean;
|
|
13328
|
-
sequence
|
|
13188
|
+
sequence?: string | null;
|
|
13189
|
+
serialNumber: string;
|
|
13329
13190
|
value?: string | null;
|
|
13330
13191
|
updatedByUser: string;
|
|
13331
13192
|
updatedDate: Date;
|
|
@@ -13367,7 +13228,8 @@ export declare class MeasurementFormElementValueAuditDto implements IMeasurement
|
|
|
13367
13228
|
schemaId: string;
|
|
13368
13229
|
value?: string | null;
|
|
13369
13230
|
bonus?: number | null;
|
|
13370
|
-
sequence
|
|
13231
|
+
sequence?: string | null;
|
|
13232
|
+
serialNumber: string;
|
|
13371
13233
|
elementId: string;
|
|
13372
13234
|
updatedByUser: string;
|
|
13373
13235
|
updatedDate: Date;
|
|
@@ -13384,7 +13246,8 @@ export interface IMeasurementFormElementValueAuditDto {
|
|
|
13384
13246
|
schemaId: string;
|
|
13385
13247
|
value?: string | null;
|
|
13386
13248
|
bonus?: number | null;
|
|
13387
|
-
sequence
|
|
13249
|
+
sequence?: string | null;
|
|
13250
|
+
serialNumber: string;
|
|
13388
13251
|
elementId: string;
|
|
13389
13252
|
updatedByUser: string;
|
|
13390
13253
|
updatedDate: Date;
|
|
@@ -13425,7 +13288,8 @@ export declare class SaveValueRequest implements ISaveValueRequest {
|
|
|
13425
13288
|
resourceName?: string | null;
|
|
13426
13289
|
schemaId: string;
|
|
13427
13290
|
elementId: string;
|
|
13428
|
-
sequence
|
|
13291
|
+
sequence?: string | null;
|
|
13292
|
+
serialNumber: string;
|
|
13429
13293
|
value?: string | null;
|
|
13430
13294
|
bonus?: string | null;
|
|
13431
13295
|
constructor(data?: ISaveValueRequest);
|
|
@@ -13438,14 +13302,16 @@ export interface ISaveValueRequest {
|
|
|
13438
13302
|
resourceName?: string | null;
|
|
13439
13303
|
schemaId: string;
|
|
13440
13304
|
elementId: string;
|
|
13441
|
-
sequence
|
|
13305
|
+
sequence?: string | null;
|
|
13306
|
+
serialNumber: string;
|
|
13442
13307
|
value?: string | null;
|
|
13443
13308
|
bonus?: string | null;
|
|
13444
13309
|
}
|
|
13445
13310
|
export declare class SaveToolRequest implements ISaveToolRequest {
|
|
13446
13311
|
schemaId: string;
|
|
13447
13312
|
elementId: string;
|
|
13448
|
-
sequence
|
|
13313
|
+
sequence?: string | null;
|
|
13314
|
+
serialNumber: string;
|
|
13449
13315
|
tools?: string[] | null;
|
|
13450
13316
|
force?: boolean;
|
|
13451
13317
|
constructor(data?: ISaveToolRequest);
|
|
@@ -13456,14 +13322,16 @@ export declare class SaveToolRequest implements ISaveToolRequest {
|
|
|
13456
13322
|
export interface ISaveToolRequest {
|
|
13457
13323
|
schemaId: string;
|
|
13458
13324
|
elementId: string;
|
|
13459
|
-
sequence
|
|
13325
|
+
sequence?: string | null;
|
|
13326
|
+
serialNumber: string;
|
|
13460
13327
|
tools?: string[] | null;
|
|
13461
13328
|
force?: boolean;
|
|
13462
13329
|
}
|
|
13463
13330
|
export declare class SaveCommentRequest implements ISaveCommentRequest {
|
|
13464
13331
|
schemaId: string;
|
|
13465
13332
|
elementId: string;
|
|
13466
|
-
sequence
|
|
13333
|
+
sequence?: string | null;
|
|
13334
|
+
serialNumber: string;
|
|
13467
13335
|
comment?: string | null;
|
|
13468
13336
|
constructor(data?: ISaveCommentRequest);
|
|
13469
13337
|
init(_data?: any): void;
|
|
@@ -13473,7 +13341,8 @@ export declare class SaveCommentRequest implements ISaveCommentRequest {
|
|
|
13473
13341
|
export interface ISaveCommentRequest {
|
|
13474
13342
|
schemaId: string;
|
|
13475
13343
|
elementId: string;
|
|
13476
|
-
sequence
|
|
13344
|
+
sequence?: string | null;
|
|
13345
|
+
serialNumber: string;
|
|
13477
13346
|
comment?: string | null;
|
|
13478
13347
|
}
|
|
13479
13348
|
export declare class BatchInsertValuesResponseDto implements IBatchInsertValuesResponseDto {
|
|
@@ -13604,6 +13473,7 @@ export declare class ExportDimensionReportRequest implements IExportDimensionRep
|
|
|
13604
13473
|
includeAllSchemasAndElements?: boolean | null;
|
|
13605
13474
|
createBlankReport?: boolean | null;
|
|
13606
13475
|
sequences?: string[] | null;
|
|
13476
|
+
serialNumbers?: string[] | null;
|
|
13607
13477
|
customerPO?: string | null;
|
|
13608
13478
|
workOrder?: string | null;
|
|
13609
13479
|
comment?: string | null;
|
|
@@ -13618,6 +13488,7 @@ export interface IExportDimensionReportRequest {
|
|
|
13618
13488
|
includeAllSchemasAndElements?: boolean | null;
|
|
13619
13489
|
createBlankReport?: boolean | null;
|
|
13620
13490
|
sequences?: string[] | null;
|
|
13491
|
+
serialNumbers?: string[] | null;
|
|
13621
13492
|
customerPO?: string | null;
|
|
13622
13493
|
workOrder?: string | null;
|
|
13623
13494
|
comment?: string | null;
|
|
@@ -13646,88 +13517,6 @@ export interface ISchemaInstanceElementDto {
|
|
|
13646
13517
|
balloonId: string;
|
|
13647
13518
|
disabled: boolean;
|
|
13648
13519
|
}
|
|
13649
|
-
export declare class ImportMeasurementFormInstanceRequest implements IImportMeasurementFormInstanceRequest {
|
|
13650
|
-
partInfo: ImportMeasurementFormPartDto;
|
|
13651
|
-
customerId?: string | null;
|
|
13652
|
-
customerGroupId?: string | null;
|
|
13653
|
-
customerName?: string | null;
|
|
13654
|
-
externalOrderNumber?: string | null;
|
|
13655
|
-
quantity: number;
|
|
13656
|
-
sequences: WorkorderImportTraceItemDto[];
|
|
13657
|
-
status: MeasurementFormInstanceStatus;
|
|
13658
|
-
statusChangedBy?: string | null;
|
|
13659
|
-
statusChangedDate?: Date | null;
|
|
13660
|
-
created: Date;
|
|
13661
|
-
createdBy?: string | null;
|
|
13662
|
-
updatedBy?: string | null;
|
|
13663
|
-
schemas: ImportMeasurementSchemaInstanceDto[];
|
|
13664
|
-
constructor(data?: IImportMeasurementFormInstanceRequest);
|
|
13665
|
-
init(_data?: any): void;
|
|
13666
|
-
static fromJS(data: any): ImportMeasurementFormInstanceRequest;
|
|
13667
|
-
toJSON(data?: any): any;
|
|
13668
|
-
}
|
|
13669
|
-
export interface IImportMeasurementFormInstanceRequest {
|
|
13670
|
-
partInfo: ImportMeasurementFormPartDto;
|
|
13671
|
-
customerId?: string | null;
|
|
13672
|
-
customerGroupId?: string | null;
|
|
13673
|
-
customerName?: string | null;
|
|
13674
|
-
externalOrderNumber?: string | null;
|
|
13675
|
-
quantity: number;
|
|
13676
|
-
sequences: WorkorderImportTraceItemDto[];
|
|
13677
|
-
status: MeasurementFormInstanceStatus;
|
|
13678
|
-
statusChangedBy?: string | null;
|
|
13679
|
-
statusChangedDate?: Date | null;
|
|
13680
|
-
created: Date;
|
|
13681
|
-
createdBy?: string | null;
|
|
13682
|
-
updatedBy?: string | null;
|
|
13683
|
-
schemas: ImportMeasurementSchemaInstanceDto[];
|
|
13684
|
-
}
|
|
13685
|
-
export declare class ImportMeasurementFormPartDto implements IImportMeasurementFormPartDto {
|
|
13686
|
-
partNumber?: string | null;
|
|
13687
|
-
partName?: string | null;
|
|
13688
|
-
partRevision?: string | null;
|
|
13689
|
-
drawing: string;
|
|
13690
|
-
drawingRevision?: string | null;
|
|
13691
|
-
constructor(data?: IImportMeasurementFormPartDto);
|
|
13692
|
-
init(_data?: any): void;
|
|
13693
|
-
static fromJS(data: any): ImportMeasurementFormPartDto;
|
|
13694
|
-
toJSON(data?: any): any;
|
|
13695
|
-
}
|
|
13696
|
-
export interface IImportMeasurementFormPartDto {
|
|
13697
|
-
partNumber?: string | null;
|
|
13698
|
-
partName?: string | null;
|
|
13699
|
-
partRevision?: string | null;
|
|
13700
|
-
drawing: string;
|
|
13701
|
-
drawingRevision?: string | null;
|
|
13702
|
-
}
|
|
13703
|
-
export declare class WorkorderImportTraceItemDto implements IWorkorderImportTraceItemDto {
|
|
13704
|
-
sequence: string;
|
|
13705
|
-
serialNumber?: string | null;
|
|
13706
|
-
lot?: string | null;
|
|
13707
|
-
active: boolean;
|
|
13708
|
-
constructor(data?: IWorkorderImportTraceItemDto);
|
|
13709
|
-
init(_data?: any): void;
|
|
13710
|
-
static fromJS(data: any): WorkorderImportTraceItemDto;
|
|
13711
|
-
toJSON(data?: any): any;
|
|
13712
|
-
}
|
|
13713
|
-
export interface IWorkorderImportTraceItemDto {
|
|
13714
|
-
sequence: string;
|
|
13715
|
-
serialNumber?: string | null;
|
|
13716
|
-
lot?: string | null;
|
|
13717
|
-
active: boolean;
|
|
13718
|
-
}
|
|
13719
|
-
export declare class ImportMeasurementSchemaInstanceDto implements IImportMeasurementSchemaInstanceDto {
|
|
13720
|
-
id: string;
|
|
13721
|
-
version: number;
|
|
13722
|
-
constructor(data?: IImportMeasurementSchemaInstanceDto);
|
|
13723
|
-
init(_data?: any): void;
|
|
13724
|
-
static fromJS(data: any): ImportMeasurementSchemaInstanceDto;
|
|
13725
|
-
toJSON(data?: any): any;
|
|
13726
|
-
}
|
|
13727
|
-
export interface IImportMeasurementSchemaInstanceDto {
|
|
13728
|
-
id: string;
|
|
13729
|
-
version: number;
|
|
13730
|
-
}
|
|
13731
13520
|
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
13732
13521
|
id: string;
|
|
13733
13522
|
name: string;
|
|
@@ -14448,6 +14237,80 @@ export interface ICreateWorkOrderMapping {
|
|
|
14448
14237
|
existingWorkOrderId: string;
|
|
14449
14238
|
newWorkOrderId: string;
|
|
14450
14239
|
}
|
|
14240
|
+
export declare class WorkorderDiscussionMessageDto implements IWorkorderDiscussionMessageDto {
|
|
14241
|
+
id?: string;
|
|
14242
|
+
workorderId?: string;
|
|
14243
|
+
companyId?: string;
|
|
14244
|
+
content?: string;
|
|
14245
|
+
senderUpn?: string;
|
|
14246
|
+
senderName?: string;
|
|
14247
|
+
operationId?: string | null;
|
|
14248
|
+
operationName?: string | null;
|
|
14249
|
+
resourceId?: string | null;
|
|
14250
|
+
created?: Date;
|
|
14251
|
+
constructor(data?: IWorkorderDiscussionMessageDto);
|
|
14252
|
+
init(_data?: any): void;
|
|
14253
|
+
static fromJS(data: any): WorkorderDiscussionMessageDto;
|
|
14254
|
+
toJSON(data?: any): any;
|
|
14255
|
+
}
|
|
14256
|
+
export interface IWorkorderDiscussionMessageDto {
|
|
14257
|
+
id?: string;
|
|
14258
|
+
workorderId?: string;
|
|
14259
|
+
companyId?: string;
|
|
14260
|
+
content?: string;
|
|
14261
|
+
senderUpn?: string;
|
|
14262
|
+
senderName?: string;
|
|
14263
|
+
operationId?: string | null;
|
|
14264
|
+
operationName?: string | null;
|
|
14265
|
+
resourceId?: string | null;
|
|
14266
|
+
created?: Date;
|
|
14267
|
+
}
|
|
14268
|
+
export declare class AddDiscussionMessageRequest implements IAddDiscussionMessageRequest {
|
|
14269
|
+
message: string;
|
|
14270
|
+
operationId?: string | null;
|
|
14271
|
+
operationName?: string | null;
|
|
14272
|
+
resourceId?: string | null;
|
|
14273
|
+
constructor(data?: IAddDiscussionMessageRequest);
|
|
14274
|
+
init(_data?: any): void;
|
|
14275
|
+
static fromJS(data: any): AddDiscussionMessageRequest;
|
|
14276
|
+
toJSON(data?: any): any;
|
|
14277
|
+
}
|
|
14278
|
+
export interface IAddDiscussionMessageRequest {
|
|
14279
|
+
message: string;
|
|
14280
|
+
operationId?: string | null;
|
|
14281
|
+
operationName?: string | null;
|
|
14282
|
+
resourceId?: string | null;
|
|
14283
|
+
}
|
|
14284
|
+
export declare class WorkorderDiscussionReadStatusDto implements IWorkorderDiscussionReadStatusDto {
|
|
14285
|
+
workorderId?: string;
|
|
14286
|
+
operationId?: string | null;
|
|
14287
|
+
resourceId?: string | null;
|
|
14288
|
+
userUpn?: string;
|
|
14289
|
+
lastRead?: Date;
|
|
14290
|
+
constructor(data?: IWorkorderDiscussionReadStatusDto);
|
|
14291
|
+
init(_data?: any): void;
|
|
14292
|
+
static fromJS(data: any): WorkorderDiscussionReadStatusDto;
|
|
14293
|
+
toJSON(data?: any): any;
|
|
14294
|
+
}
|
|
14295
|
+
export interface IWorkorderDiscussionReadStatusDto {
|
|
14296
|
+
workorderId?: string;
|
|
14297
|
+
operationId?: string | null;
|
|
14298
|
+
resourceId?: string | null;
|
|
14299
|
+
userUpn?: string;
|
|
14300
|
+
lastRead?: Date;
|
|
14301
|
+
}
|
|
14302
|
+
export declare class SetDiscussionLastReadRequest implements ISetDiscussionLastReadRequest {
|
|
14303
|
+
operationId?: string | null;
|
|
14304
|
+
resourceId?: string | null;
|
|
14305
|
+
constructor(data?: ISetDiscussionLastReadRequest);
|
|
14306
|
+
init(_data?: any): void;
|
|
14307
|
+
static fromJS(data: any): SetDiscussionLastReadRequest;
|
|
14308
|
+
toJSON(data?: any): any;
|
|
14309
|
+
}
|
|
14310
|
+
export interface ISetDiscussionLastReadRequest {
|
|
14311
|
+
operationId?: string | null;
|
|
14312
|
+
resourceId?: string | null;
|
|
14313
|
+
}
|
|
14451
14314
|
export interface FileParameter {
|
|
14452
14315
|
data: any;
|
|
14453
14316
|
fileName: string;
|