@ignos/api-client 20250825.0.12417 → 20250828.0.12452
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 +316 -219
- package/lib/ignosportal-api.js +1207 -967
- package/package.json +1 -1
- package/src/ignosportal-api.ts +1154 -826
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -171,6 +171,7 @@ export interface IMachineUtilizationClient {
|
|
|
171
171
|
* @deprecated
|
|
172
172
|
*/
|
|
173
173
|
getUtilizationDetailsForMachine(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
174
|
+
getResourceTimelines(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined, filter: TimelineFilterDto | undefined): Promise<TimelinesDto>;
|
|
174
175
|
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
175
176
|
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
176
177
|
listMachineUptimesToday(request: ListMachineUptimesTodayRequest): Promise<MachineUptimesAggregateDto>;
|
|
@@ -208,6 +209,8 @@ export declare class MachineUtilizationClient extends AuthorizedApiBase implemen
|
|
|
208
209
|
*/
|
|
209
210
|
getUtilizationDetailsForMachine(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
210
211
|
protected processGetUtilizationDetailsForMachine(response: Response): Promise<MachineStatesSummaryDto>;
|
|
212
|
+
getResourceTimelines(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined, filter: TimelineFilterDto | undefined): Promise<TimelinesDto>;
|
|
213
|
+
protected processGetResourceTimelines(response: Response): Promise<TimelinesDto>;
|
|
211
214
|
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
212
215
|
protected processListMachineStates(response: Response): Promise<MachineStateDatapoint[]>;
|
|
213
216
|
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
@@ -856,6 +859,11 @@ export interface IMachinesClient {
|
|
|
856
859
|
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
857
860
|
listMachineErpData(): Promise<MachineErpDataListDto>;
|
|
858
861
|
getMachineErpData(id: number): Promise<MachineErpDataDto>;
|
|
862
|
+
/**
|
|
863
|
+
* @param startTime (optional)
|
|
864
|
+
* @param endTime (optional)
|
|
865
|
+
* @deprecated
|
|
866
|
+
*/
|
|
859
867
|
getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
|
|
860
868
|
getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
861
869
|
getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
|
|
@@ -896,6 +904,11 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
896
904
|
protected processListMachineErpData(response: Response): Promise<MachineErpDataListDto>;
|
|
897
905
|
getMachineErpData(id: number): Promise<MachineErpDataDto>;
|
|
898
906
|
protected processGetMachineErpData(response: Response): Promise<MachineErpDataDto>;
|
|
907
|
+
/**
|
|
908
|
+
* @param startTime (optional)
|
|
909
|
+
* @param endTime (optional)
|
|
910
|
+
* @deprecated
|
|
911
|
+
*/
|
|
899
912
|
getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
|
|
900
913
|
protected processGetWorkOrderTimeline(response: Response): Promise<WorkOrderDatapoint[]>;
|
|
901
914
|
getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
@@ -2038,6 +2051,50 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2038
2051
|
listDepartments(): Promise<DepartmentDto[]>;
|
|
2039
2052
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2040
2053
|
}
|
|
2054
|
+
export interface IElectricalClient {
|
|
2055
|
+
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2056
|
+
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2057
|
+
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2058
|
+
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2059
|
+
}
|
|
2060
|
+
export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
2061
|
+
private http;
|
|
2062
|
+
private baseUrl;
|
|
2063
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2064
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2065
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2066
|
+
});
|
|
2067
|
+
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2068
|
+
protected processListElectricalSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2069
|
+
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2070
|
+
protected processListElectricalDataConfigs(response: Response): Promise<ElectricalIotConfigDto[]>;
|
|
2071
|
+
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2072
|
+
protected processCreateElectricalIotConfig(response: Response): Promise<ElectricalIotConfigDto>;
|
|
2073
|
+
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2074
|
+
protected processDeleteElectricalIotConfig(response: Response): Promise<void>;
|
|
2075
|
+
}
|
|
2076
|
+
export interface IWeldingClient {
|
|
2077
|
+
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2078
|
+
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2079
|
+
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2080
|
+
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2081
|
+
}
|
|
2082
|
+
export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
2083
|
+
private http;
|
|
2084
|
+
private baseUrl;
|
|
2085
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2086
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2087
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2088
|
+
});
|
|
2089
|
+
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2090
|
+
protected processListWeldingSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2091
|
+
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2092
|
+
protected processListElectricalDataConfigs(response: Response): Promise<WeldingIotConfigDto[]>;
|
|
2093
|
+
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2094
|
+
protected processCreateWeldingIotConfig(response: Response): Promise<WeldingIotConfigDto>;
|
|
2095
|
+
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2096
|
+
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2097
|
+
}
|
|
2041
2098
|
export interface IMeasurementFormSchemasClient {
|
|
2042
2099
|
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
2100
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -2065,11 +2122,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2065
2122
|
/**
|
|
2066
2123
|
* @deprecated
|
|
2067
2124
|
*/
|
|
2068
|
-
getMeasurementFormSettings(): Promise<
|
|
2125
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2069
2126
|
/**
|
|
2070
2127
|
* @deprecated
|
|
2071
2128
|
*/
|
|
2072
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2129
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2073
2130
|
/**
|
|
2074
2131
|
* @deprecated
|
|
2075
2132
|
*/
|
|
@@ -2082,8 +2139,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2082
2139
|
createMeasurementFormMapping(request: CreateMeasurementFormMapping): Promise<MeasurementFormMappingDto>;
|
|
2083
2140
|
getMeasurementFormMapping(id: string): Promise<MeasurementFormMappingDto>;
|
|
2084
2141
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2085
|
-
|
|
2086
|
-
|
|
2142
|
+
/**
|
|
2143
|
+
* @deprecated
|
|
2144
|
+
*/
|
|
2145
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2146
|
+
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2087
2147
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2088
2148
|
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>;
|
|
2089
2149
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2162,13 +2222,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2162
2222
|
/**
|
|
2163
2223
|
* @deprecated
|
|
2164
2224
|
*/
|
|
2165
|
-
getMeasurementFormSettings(): Promise<
|
|
2166
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2225
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2226
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2167
2227
|
/**
|
|
2168
2228
|
* @deprecated
|
|
2169
2229
|
*/
|
|
2170
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2171
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2230
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2231
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2172
2232
|
/**
|
|
2173
2233
|
* @deprecated
|
|
2174
2234
|
*/
|
|
@@ -2187,10 +2247,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2187
2247
|
protected processGetMeasurementFormMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2188
2248
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2189
2249
|
protected processDeleteMeasurementFormMapping(response: Response): Promise<void>;
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2250
|
+
/**
|
|
2251
|
+
* @deprecated
|
|
2252
|
+
*/
|
|
2253
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2193
2254
|
protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2255
|
+
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2256
|
+
protected processSetMeasurementFormReferencesMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2194
2257
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2195
2258
|
protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2196
2259
|
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>;
|
|
@@ -2235,8 +2298,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2235
2298
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2236
2299
|
}
|
|
2237
2300
|
export interface IMeasurementFormSettingsClient {
|
|
2238
|
-
getMeasurementFormSettings(): Promise<
|
|
2239
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2301
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2302
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2240
2303
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2241
2304
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2242
2305
|
}
|
|
@@ -2247,10 +2310,10 @@ export declare class MeasurementFormSettingsClient extends AuthorizedApiBase imp
|
|
|
2247
2310
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2248
2311
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2249
2312
|
});
|
|
2250
|
-
getMeasurementFormSettings(): Promise<
|
|
2251
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2252
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2253
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2313
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2314
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2315
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2316
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2254
2317
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2255
2318
|
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2256
2319
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
@@ -2362,50 +2425,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2362
2425
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2363
2426
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2364
2427
|
}
|
|
2365
|
-
export interface IElectricalClient {
|
|
2366
|
-
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2367
|
-
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2368
|
-
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2369
|
-
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2370
|
-
}
|
|
2371
|
-
export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
2372
|
-
private http;
|
|
2373
|
-
private baseUrl;
|
|
2374
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2375
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2376
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2377
|
-
});
|
|
2378
|
-
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2379
|
-
protected processListElectricalSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2380
|
-
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2381
|
-
protected processListElectricalDataConfigs(response: Response): Promise<ElectricalIotConfigDto[]>;
|
|
2382
|
-
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2383
|
-
protected processCreateElectricalIotConfig(response: Response): Promise<ElectricalIotConfigDto>;
|
|
2384
|
-
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2385
|
-
protected processDeleteElectricalIotConfig(response: Response): Promise<void>;
|
|
2386
|
-
}
|
|
2387
|
-
export interface IWeldingClient {
|
|
2388
|
-
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2389
|
-
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2390
|
-
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2391
|
-
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2392
|
-
}
|
|
2393
|
-
export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
2394
|
-
private http;
|
|
2395
|
-
private baseUrl;
|
|
2396
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2397
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2398
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2399
|
-
});
|
|
2400
|
-
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2401
|
-
protected processListWeldingSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2402
|
-
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2403
|
-
protected processListElectricalDataConfigs(response: Response): Promise<WeldingIotConfigDto[]>;
|
|
2404
|
-
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2405
|
-
protected processCreateWeldingIotConfig(response: Response): Promise<WeldingIotConfigDto>;
|
|
2406
|
-
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2407
|
-
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2408
|
-
}
|
|
2409
2428
|
export interface ICompaniesClient {
|
|
2410
2429
|
listProductionCompanies(): Promise<ProductionCompanyDto[]>;
|
|
2411
2430
|
selectProductionCompany(request: SelectProductionCompany): Promise<ProductionCompanyDto>;
|
|
@@ -2990,6 +3009,22 @@ export interface IStateDto {
|
|
|
2990
3009
|
machineState: MachineState;
|
|
2991
3010
|
seconds: number;
|
|
2992
3011
|
}
|
|
3012
|
+
export declare class TimelinesDto implements ITimelinesDto {
|
|
3013
|
+
machineStateTimeline: MachineStateDatapoint[];
|
|
3014
|
+
workorderTimeline: WorkOrderDatapoint[];
|
|
3015
|
+
downtimeReasonsTimeline: DowntimePeriodReasonDto[];
|
|
3016
|
+
programTimeline: ProgramDatapoint[];
|
|
3017
|
+
constructor(data?: ITimelinesDto);
|
|
3018
|
+
init(_data?: any): void;
|
|
3019
|
+
static fromJS(data: any): TimelinesDto;
|
|
3020
|
+
toJSON(data?: any): any;
|
|
3021
|
+
}
|
|
3022
|
+
export interface ITimelinesDto {
|
|
3023
|
+
machineStateTimeline: MachineStateDatapoint[];
|
|
3024
|
+
workorderTimeline: WorkOrderDatapoint[];
|
|
3025
|
+
downtimeReasonsTimeline: DowntimePeriodReasonDto[];
|
|
3026
|
+
programTimeline: ProgramDatapoint[];
|
|
3027
|
+
}
|
|
2993
3028
|
export declare class MachineStateDatapoint implements IMachineStateDatapoint {
|
|
2994
3029
|
machineStateText: string;
|
|
2995
3030
|
machineState: MachineState;
|
|
@@ -3055,6 +3090,60 @@ export interface IEmployeeDto {
|
|
|
3055
3090
|
upn?: string | null;
|
|
3056
3091
|
azureAdObjectId?: string | null;
|
|
3057
3092
|
}
|
|
3093
|
+
export declare class WorkOrderDatapoint implements IWorkOrderDatapoint {
|
|
3094
|
+
workOrder: string;
|
|
3095
|
+
id: number;
|
|
3096
|
+
externalId: string;
|
|
3097
|
+
subType?: string | null;
|
|
3098
|
+
startTime: number;
|
|
3099
|
+
endTime?: number | null;
|
|
3100
|
+
metaData?: {
|
|
3101
|
+
[key: string]: string;
|
|
3102
|
+
} | null;
|
|
3103
|
+
constructor(data?: IWorkOrderDatapoint);
|
|
3104
|
+
init(_data?: any): void;
|
|
3105
|
+
static fromJS(data: any): WorkOrderDatapoint;
|
|
3106
|
+
toJSON(data?: any): any;
|
|
3107
|
+
}
|
|
3108
|
+
export interface IWorkOrderDatapoint {
|
|
3109
|
+
workOrder: string;
|
|
3110
|
+
id: number;
|
|
3111
|
+
externalId: string;
|
|
3112
|
+
subType?: string | null;
|
|
3113
|
+
startTime: number;
|
|
3114
|
+
endTime?: number | null;
|
|
3115
|
+
metaData?: {
|
|
3116
|
+
[key: string]: string;
|
|
3117
|
+
} | null;
|
|
3118
|
+
}
|
|
3119
|
+
export declare class ProgramDatapoint implements IProgramDatapoint {
|
|
3120
|
+
timestamp?: number;
|
|
3121
|
+
programValue?: string;
|
|
3122
|
+
constructor(data?: IProgramDatapoint);
|
|
3123
|
+
init(_data?: any): void;
|
|
3124
|
+
static fromJS(data: any): ProgramDatapoint;
|
|
3125
|
+
toJSON(data?: any): any;
|
|
3126
|
+
}
|
|
3127
|
+
export interface IProgramDatapoint {
|
|
3128
|
+
timestamp?: number;
|
|
3129
|
+
programValue?: string;
|
|
3130
|
+
}
|
|
3131
|
+
export declare class TimelineFilterDto implements ITimelineFilterDto {
|
|
3132
|
+
includeMachineState?: boolean | null;
|
|
3133
|
+
includeWorkorder?: boolean | null;
|
|
3134
|
+
includeDowntimeReasons?: boolean | null;
|
|
3135
|
+
includeProgram?: boolean | null;
|
|
3136
|
+
constructor(data?: ITimelineFilterDto);
|
|
3137
|
+
init(_data?: any): void;
|
|
3138
|
+
static fromJS(data: any): TimelineFilterDto;
|
|
3139
|
+
toJSON(data?: any): any;
|
|
3140
|
+
}
|
|
3141
|
+
export interface ITimelineFilterDto {
|
|
3142
|
+
includeMachineState?: boolean | null;
|
|
3143
|
+
includeWorkorder?: boolean | null;
|
|
3144
|
+
includeDowntimeReasons?: boolean | null;
|
|
3145
|
+
includeProgram?: boolean | null;
|
|
3146
|
+
}
|
|
3058
3147
|
export declare class MachineUptimesAggregateDto implements IMachineUptimesAggregateDto {
|
|
3059
3148
|
machineUptimes: MachineUptimeDto[];
|
|
3060
3149
|
sum: MachineUptimeSumDto;
|
|
@@ -3145,18 +3234,6 @@ export interface INumericNullableValueWithTimestamp {
|
|
|
3145
3234
|
timestamp?: number;
|
|
3146
3235
|
value?: number | null;
|
|
3147
3236
|
}
|
|
3148
|
-
export declare class ProgramDatapoint implements IProgramDatapoint {
|
|
3149
|
-
timestamp?: number;
|
|
3150
|
-
programValue?: string;
|
|
3151
|
-
constructor(data?: IProgramDatapoint);
|
|
3152
|
-
init(_data?: any): void;
|
|
3153
|
-
static fromJS(data: any): ProgramDatapoint;
|
|
3154
|
-
toJSON(data?: any): any;
|
|
3155
|
-
}
|
|
3156
|
-
export interface IProgramDatapoint {
|
|
3157
|
-
timestamp?: number;
|
|
3158
|
-
programValue?: string;
|
|
3159
|
-
}
|
|
3160
3237
|
export declare class UserAppDto implements IUserAppDto {
|
|
3161
3238
|
key: string;
|
|
3162
3239
|
name: string;
|
|
@@ -6300,32 +6377,6 @@ export interface IWorkOrderProjectDto {
|
|
|
6300
6377
|
name?: string | null;
|
|
6301
6378
|
projectManager?: string | null;
|
|
6302
6379
|
}
|
|
6303
|
-
export declare class WorkOrderDatapoint implements IWorkOrderDatapoint {
|
|
6304
|
-
workOrder: string;
|
|
6305
|
-
id: number;
|
|
6306
|
-
externalId: string;
|
|
6307
|
-
subType?: string | null;
|
|
6308
|
-
startTime: number;
|
|
6309
|
-
endTime?: number | null;
|
|
6310
|
-
metaData?: {
|
|
6311
|
-
[key: string]: string;
|
|
6312
|
-
} | null;
|
|
6313
|
-
constructor(data?: IWorkOrderDatapoint);
|
|
6314
|
-
init(_data?: any): void;
|
|
6315
|
-
static fromJS(data: any): WorkOrderDatapoint;
|
|
6316
|
-
toJSON(data?: any): any;
|
|
6317
|
-
}
|
|
6318
|
-
export interface IWorkOrderDatapoint {
|
|
6319
|
-
workOrder: string;
|
|
6320
|
-
id: number;
|
|
6321
|
-
externalId: string;
|
|
6322
|
-
subType?: string | null;
|
|
6323
|
-
startTime: number;
|
|
6324
|
-
endTime?: number | null;
|
|
6325
|
-
metaData?: {
|
|
6326
|
-
[key: string]: string;
|
|
6327
|
-
} | null;
|
|
6328
|
-
}
|
|
6329
6380
|
export declare class UtilizationSummaryDto implements IUtilizationSummaryDto {
|
|
6330
6381
|
factory: FactoryUtilizationDto;
|
|
6331
6382
|
groups: MachineGroupUtilizationDto[];
|
|
@@ -11678,6 +11729,78 @@ export interface IProductionResourceDto {
|
|
|
11678
11729
|
name?: string | null;
|
|
11679
11730
|
department?: DepartmentDto | null;
|
|
11680
11731
|
}
|
|
11732
|
+
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
11733
|
+
id: string;
|
|
11734
|
+
name: string;
|
|
11735
|
+
constructor(data?: IIotTypeSourceDto);
|
|
11736
|
+
init(_data?: any): void;
|
|
11737
|
+
static fromJS(data: any): IotTypeSourceDto;
|
|
11738
|
+
toJSON(data?: any): any;
|
|
11739
|
+
}
|
|
11740
|
+
export interface IIotTypeSourceDto {
|
|
11741
|
+
id: string;
|
|
11742
|
+
name: string;
|
|
11743
|
+
}
|
|
11744
|
+
export declare class ElectricalIotConfigDto implements IElectricalIotConfigDto {
|
|
11745
|
+
id: string;
|
|
11746
|
+
typeId: string;
|
|
11747
|
+
serialNumber?: string | null;
|
|
11748
|
+
assetId: number;
|
|
11749
|
+
assetExternalId?: string | null;
|
|
11750
|
+
phases?: number;
|
|
11751
|
+
electricalAssetId?: number;
|
|
11752
|
+
electricalAssetExternalId?: string | null;
|
|
11753
|
+
electricalTimeseriesId?: number;
|
|
11754
|
+
electricalTimeseriesExternalId?: string | null;
|
|
11755
|
+
constructor(data?: IElectricalIotConfigDto);
|
|
11756
|
+
init(_data?: any): void;
|
|
11757
|
+
static fromJS(data: any): ElectricalIotConfigDto;
|
|
11758
|
+
toJSON(data?: any): any;
|
|
11759
|
+
}
|
|
11760
|
+
export interface IElectricalIotConfigDto {
|
|
11761
|
+
id: string;
|
|
11762
|
+
typeId: string;
|
|
11763
|
+
serialNumber?: string | null;
|
|
11764
|
+
assetId: number;
|
|
11765
|
+
assetExternalId?: string | null;
|
|
11766
|
+
phases?: number;
|
|
11767
|
+
electricalAssetId?: number;
|
|
11768
|
+
electricalAssetExternalId?: string | null;
|
|
11769
|
+
electricalTimeseriesId?: number;
|
|
11770
|
+
electricalTimeseriesExternalId?: string | null;
|
|
11771
|
+
}
|
|
11772
|
+
export declare class CreateElectricalIotConfig implements ICreateElectricalIotConfig {
|
|
11773
|
+
typeId?: string | null;
|
|
11774
|
+
serialNumber?: string | null;
|
|
11775
|
+
assetId?: number | null;
|
|
11776
|
+
assetExternalId?: string | null;
|
|
11777
|
+
constructor(data?: ICreateElectricalIotConfig);
|
|
11778
|
+
init(_data?: any): void;
|
|
11779
|
+
static fromJS(data: any): CreateElectricalIotConfig;
|
|
11780
|
+
toJSON(data?: any): any;
|
|
11781
|
+
}
|
|
11782
|
+
export interface ICreateElectricalIotConfig {
|
|
11783
|
+
typeId?: string | null;
|
|
11784
|
+
serialNumber?: string | null;
|
|
11785
|
+
assetId?: number | null;
|
|
11786
|
+
assetExternalId?: string | null;
|
|
11787
|
+
}
|
|
11788
|
+
export declare class WeldingIotConfigDto implements IWeldingIotConfigDto {
|
|
11789
|
+
constructor(data?: IWeldingIotConfigDto);
|
|
11790
|
+
init(_data?: any): void;
|
|
11791
|
+
static fromJS(data: any): WeldingIotConfigDto;
|
|
11792
|
+
toJSON(data?: any): any;
|
|
11793
|
+
}
|
|
11794
|
+
export interface IWeldingIotConfigDto {
|
|
11795
|
+
}
|
|
11796
|
+
export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
11797
|
+
constructor(data?: ICreateWeldingIotConfig);
|
|
11798
|
+
init(_data?: any): void;
|
|
11799
|
+
static fromJS(data: any): CreateWeldingIotConfig;
|
|
11800
|
+
toJSON(data?: any): any;
|
|
11801
|
+
}
|
|
11802
|
+
export interface ICreateWeldingIotConfig {
|
|
11803
|
+
}
|
|
11681
11804
|
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
11682
11805
|
results: MeasurementFormListDto[];
|
|
11683
11806
|
continuationToken?: string | null;
|
|
@@ -11833,7 +11956,8 @@ export interface IMeasurementFormSchemaAttachmentDto {
|
|
|
11833
11956
|
}
|
|
11834
11957
|
export declare class MeasurementFormGroupedElementDto implements IMeasurementFormGroupedElementDto {
|
|
11835
11958
|
id: string;
|
|
11836
|
-
balloonId
|
|
11959
|
+
balloonId?: string | null;
|
|
11960
|
+
reference: number;
|
|
11837
11961
|
imageUrl?: string | null;
|
|
11838
11962
|
thumbnailUrl?: string | null;
|
|
11839
11963
|
section?: string | null;
|
|
@@ -11860,6 +11984,7 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11860
11984
|
includeInCustomerDocumentation: boolean;
|
|
11861
11985
|
isDocumentedExternally: boolean;
|
|
11862
11986
|
balloonQuantity?: number | null;
|
|
11987
|
+
referenceQuantity?: number | null;
|
|
11863
11988
|
plusToleranceText?: string | null;
|
|
11864
11989
|
minusToleranceText?: string | null;
|
|
11865
11990
|
coatingThickness?: number | null;
|
|
@@ -11879,7 +12004,8 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11879
12004
|
}
|
|
11880
12005
|
export interface IMeasurementFormGroupedElementDto {
|
|
11881
12006
|
id: string;
|
|
11882
|
-
balloonId
|
|
12007
|
+
balloonId?: string | null;
|
|
12008
|
+
reference: number;
|
|
11883
12009
|
imageUrl?: string | null;
|
|
11884
12010
|
thumbnailUrl?: string | null;
|
|
11885
12011
|
section?: string | null;
|
|
@@ -11906,6 +12032,7 @@ export interface IMeasurementFormGroupedElementDto {
|
|
|
11906
12032
|
includeInCustomerDocumentation: boolean;
|
|
11907
12033
|
isDocumentedExternally: boolean;
|
|
11908
12034
|
balloonQuantity?: number | null;
|
|
12035
|
+
referenceQuantity?: number | null;
|
|
11909
12036
|
plusToleranceText?: string | null;
|
|
11910
12037
|
minusToleranceText?: string | null;
|
|
11911
12038
|
coatingThickness?: number | null;
|
|
@@ -12055,7 +12182,8 @@ export interface IUpdateSchemaGroupedElementsRequest {
|
|
|
12055
12182
|
groupedElements: UpdateSchemaGroupedElementDto[];
|
|
12056
12183
|
}
|
|
12057
12184
|
export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElementDto {
|
|
12058
|
-
balloonId
|
|
12185
|
+
balloonId?: string | null;
|
|
12186
|
+
reference: number;
|
|
12059
12187
|
frequency: MeasurementFrequency;
|
|
12060
12188
|
frequencyParameter?: number | null;
|
|
12061
12189
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12068,7 +12196,8 @@ export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroup
|
|
|
12068
12196
|
toJSON(data?: any): any;
|
|
12069
12197
|
}
|
|
12070
12198
|
export interface IUpdateSchemaGroupedElementDto {
|
|
12071
|
-
balloonId
|
|
12199
|
+
balloonId?: string | null;
|
|
12200
|
+
reference: number;
|
|
12072
12201
|
frequency: MeasurementFrequency;
|
|
12073
12202
|
frequencyParameter?: number | null;
|
|
12074
12203
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12077,8 +12206,10 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
12077
12206
|
coatingThickness?: number | null;
|
|
12078
12207
|
}
|
|
12079
12208
|
export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|
|
12080
|
-
id
|
|
12081
|
-
balloonId
|
|
12209
|
+
id?: string;
|
|
12210
|
+
balloonId?: string;
|
|
12211
|
+
oldReference: number;
|
|
12212
|
+
newReference: number;
|
|
12082
12213
|
section?: string | null;
|
|
12083
12214
|
pageNumber?: number | null;
|
|
12084
12215
|
measurements?: number | null;
|
|
@@ -12102,8 +12233,10 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
12102
12233
|
toJSON(data?: any): any;
|
|
12103
12234
|
}
|
|
12104
12235
|
export interface IUpdateSchemaGroupedElementRowDto {
|
|
12105
|
-
id
|
|
12106
|
-
balloonId
|
|
12236
|
+
id?: string;
|
|
12237
|
+
balloonId?: string;
|
|
12238
|
+
oldReference: number;
|
|
12239
|
+
newReference: number;
|
|
12107
12240
|
section?: string | null;
|
|
12108
12241
|
pageNumber?: number | null;
|
|
12109
12242
|
measurements?: number | null;
|
|
@@ -12123,19 +12256,22 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
12123
12256
|
isDocumentedExternally: boolean;
|
|
12124
12257
|
}
|
|
12125
12258
|
export declare class DeleteSchemaGroupedElementRowsDto implements IDeleteSchemaGroupedElementRowsDto {
|
|
12126
|
-
balloonIds
|
|
12259
|
+
balloonIds?: string[];
|
|
12260
|
+
references?: number[];
|
|
12127
12261
|
constructor(data?: IDeleteSchemaGroupedElementRowsDto);
|
|
12128
12262
|
init(_data?: any): void;
|
|
12129
12263
|
static fromJS(data: any): DeleteSchemaGroupedElementRowsDto;
|
|
12130
12264
|
toJSON(data?: any): any;
|
|
12131
12265
|
}
|
|
12132
12266
|
export interface IDeleteSchemaGroupedElementRowsDto {
|
|
12133
|
-
balloonIds
|
|
12267
|
+
balloonIds?: string[];
|
|
12268
|
+
references?: number[];
|
|
12134
12269
|
}
|
|
12135
12270
|
export declare class UploadMeasurementImageRequest implements IUploadMeasurementImageRequest {
|
|
12136
12271
|
uploadKey: string;
|
|
12137
12272
|
filename: string;
|
|
12138
|
-
ballonId
|
|
12273
|
+
ballonId?: string;
|
|
12274
|
+
reference: number;
|
|
12139
12275
|
constructor(data?: IUploadMeasurementImageRequest);
|
|
12140
12276
|
init(_data?: any): void;
|
|
12141
12277
|
static fromJS(data: any): UploadMeasurementImageRequest;
|
|
@@ -12144,7 +12280,8 @@ export declare class UploadMeasurementImageRequest implements IUploadMeasurement
|
|
|
12144
12280
|
export interface IUploadMeasurementImageRequest {
|
|
12145
12281
|
uploadKey: string;
|
|
12146
12282
|
filename: string;
|
|
12147
|
-
ballonId
|
|
12283
|
+
ballonId?: string;
|
|
12284
|
+
reference: number;
|
|
12148
12285
|
}
|
|
12149
12286
|
export declare class UpdateSchemaSettingsRequest implements IUpdateSchemaSettingsRequest {
|
|
12150
12287
|
unitOfMeasure: UnitOfMeasureDto;
|
|
@@ -12226,7 +12363,7 @@ export declare class CreateMeasurementFormSchemaLinkRequest implements ICreateMe
|
|
|
12226
12363
|
export interface ICreateMeasurementFormSchemaLinkRequest {
|
|
12227
12364
|
linkSchemaId: string;
|
|
12228
12365
|
}
|
|
12229
|
-
export declare class
|
|
12366
|
+
export declare class InspectCompanySettingsDto implements IInspectCompanySettingsDto {
|
|
12230
12367
|
convertInchToMm: boolean;
|
|
12231
12368
|
convertMicroInchToMicroMeter: boolean;
|
|
12232
12369
|
validateMeasuringTools: boolean;
|
|
@@ -12241,12 +12378,12 @@ export declare class MeasurementFormSettingsDto implements IMeasurementFormSetti
|
|
|
12241
12378
|
allowSchemaUpdates: boolean;
|
|
12242
12379
|
allowCreateInstances: boolean;
|
|
12243
12380
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
12244
|
-
constructor(data?:
|
|
12381
|
+
constructor(data?: IInspectCompanySettingsDto);
|
|
12245
12382
|
init(_data?: any): void;
|
|
12246
|
-
static fromJS(data: any):
|
|
12383
|
+
static fromJS(data: any): InspectCompanySettingsDto;
|
|
12247
12384
|
toJSON(data?: any): any;
|
|
12248
12385
|
}
|
|
12249
|
-
export interface
|
|
12386
|
+
export interface IInspectCompanySettingsDto {
|
|
12250
12387
|
convertInchToMm: boolean;
|
|
12251
12388
|
convertMicroInchToMicroMeter: boolean;
|
|
12252
12389
|
validateMeasuringTools: boolean;
|
|
@@ -12338,8 +12475,10 @@ export declare class MeasurementFormMappingDto implements IMeasurementFormMappin
|
|
|
12338
12475
|
id: string;
|
|
12339
12476
|
measurementSchemaSourceId: string;
|
|
12340
12477
|
measurementSchemaTargetId: string;
|
|
12341
|
-
sourceBalloons
|
|
12342
|
-
targetBalloons
|
|
12478
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12479
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12480
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12481
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12343
12482
|
constructor(data?: IMeasurementFormMappingDto);
|
|
12344
12483
|
init(_data?: any): void;
|
|
12345
12484
|
static fromJS(data: any): MeasurementFormMappingDto;
|
|
@@ -12349,21 +12488,27 @@ export interface IMeasurementFormMappingDto {
|
|
|
12349
12488
|
id: string;
|
|
12350
12489
|
measurementSchemaSourceId: string;
|
|
12351
12490
|
measurementSchemaTargetId: string;
|
|
12352
|
-
sourceBalloons
|
|
12353
|
-
targetBalloons
|
|
12491
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12492
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12493
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12494
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12354
12495
|
}
|
|
12355
|
-
export declare class
|
|
12356
|
-
balloon
|
|
12496
|
+
export declare class MeasurementFormReferenceMappingDto implements IMeasurementFormReferenceMappingDto {
|
|
12497
|
+
balloon?: MeasurementFormGroupedElementDto | null;
|
|
12357
12498
|
mappedBalloonId?: string | null;
|
|
12499
|
+
reference: MeasurementFormGroupedElementDto;
|
|
12500
|
+
mappedReference?: number;
|
|
12358
12501
|
mappingScorePercent?: number | null;
|
|
12359
|
-
constructor(data?:
|
|
12502
|
+
constructor(data?: IMeasurementFormReferenceMappingDto);
|
|
12360
12503
|
init(_data?: any): void;
|
|
12361
|
-
static fromJS(data: any):
|
|
12504
|
+
static fromJS(data: any): MeasurementFormReferenceMappingDto;
|
|
12362
12505
|
toJSON(data?: any): any;
|
|
12363
12506
|
}
|
|
12364
|
-
export interface
|
|
12365
|
-
balloon
|
|
12507
|
+
export interface IMeasurementFormReferenceMappingDto {
|
|
12508
|
+
balloon?: MeasurementFormGroupedElementDto | null;
|
|
12366
12509
|
mappedBalloonId?: string | null;
|
|
12510
|
+
reference: MeasurementFormGroupedElementDto;
|
|
12511
|
+
mappedReference?: number;
|
|
12367
12512
|
mappingScorePercent?: number | null;
|
|
12368
12513
|
}
|
|
12369
12514
|
export declare class CreateMeasurementFormMapping implements ICreateMeasurementFormMapping {
|
|
@@ -12378,35 +12523,41 @@ export interface ICreateMeasurementFormMapping {
|
|
|
12378
12523
|
sourceId: string;
|
|
12379
12524
|
targetId: string;
|
|
12380
12525
|
}
|
|
12381
|
-
export declare class
|
|
12382
|
-
|
|
12383
|
-
|
|
12384
|
-
mappingScorePercent?: number | null;
|
|
12385
|
-
constructor(data?: IMeasurementFormBalloonMappingRequestDto);
|
|
12526
|
+
export declare class SetMeasurementFormReferencesMappingRequest implements ISetMeasurementFormReferencesMappingRequest {
|
|
12527
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
12528
|
+
constructor(data?: ISetMeasurementFormReferencesMappingRequest);
|
|
12386
12529
|
init(_data?: any): void;
|
|
12387
|
-
static fromJS(data: any):
|
|
12530
|
+
static fromJS(data: any): SetMeasurementFormReferencesMappingRequest;
|
|
12388
12531
|
toJSON(data?: any): any;
|
|
12389
12532
|
}
|
|
12390
|
-
export interface
|
|
12391
|
-
|
|
12392
|
-
targetBalloonId: string;
|
|
12393
|
-
mappingScorePercent?: number | null;
|
|
12533
|
+
export interface ISetMeasurementFormReferencesMappingRequest {
|
|
12534
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
12394
12535
|
}
|
|
12395
|
-
export declare class
|
|
12396
|
-
|
|
12397
|
-
|
|
12536
|
+
export declare class MeasurementFormReferenceMappingRequestDto implements IMeasurementFormReferenceMappingRequestDto {
|
|
12537
|
+
sourceBalloonId?: string | null;
|
|
12538
|
+
targetBalloonId?: string | null;
|
|
12539
|
+
sourceReference: number;
|
|
12540
|
+
targetReference: number;
|
|
12541
|
+
mappingScorePercent?: number | null;
|
|
12542
|
+
constructor(data?: IMeasurementFormReferenceMappingRequestDto);
|
|
12398
12543
|
init(_data?: any): void;
|
|
12399
|
-
static fromJS(data: any):
|
|
12544
|
+
static fromJS(data: any): MeasurementFormReferenceMappingRequestDto;
|
|
12400
12545
|
toJSON(data?: any): any;
|
|
12401
12546
|
}
|
|
12402
|
-
export interface
|
|
12403
|
-
|
|
12547
|
+
export interface IMeasurementFormReferenceMappingRequestDto {
|
|
12548
|
+
sourceBalloonId?: string | null;
|
|
12549
|
+
targetBalloonId?: string | null;
|
|
12550
|
+
sourceReference: number;
|
|
12551
|
+
targetReference: number;
|
|
12552
|
+
mappingScorePercent?: number | null;
|
|
12404
12553
|
}
|
|
12405
12554
|
export declare class MeasurementFormMappingSuggestionDto implements IMeasurementFormMappingSuggestionDto {
|
|
12406
12555
|
measurementSchemaSourceId: string;
|
|
12407
12556
|
measurementSchemaTargetId: string;
|
|
12408
|
-
sourceBalloons
|
|
12409
|
-
targetBalloons
|
|
12557
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12558
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12559
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12560
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12410
12561
|
constructor(data?: IMeasurementFormMappingSuggestionDto);
|
|
12411
12562
|
init(_data?: any): void;
|
|
12412
12563
|
static fromJS(data: any): MeasurementFormMappingSuggestionDto;
|
|
@@ -12415,8 +12566,10 @@ export declare class MeasurementFormMappingSuggestionDto implements IMeasurement
|
|
|
12415
12566
|
export interface IMeasurementFormMappingSuggestionDto {
|
|
12416
12567
|
measurementSchemaSourceId: string;
|
|
12417
12568
|
measurementSchemaTargetId: string;
|
|
12418
|
-
sourceBalloons
|
|
12419
|
-
targetBalloons
|
|
12569
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12570
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12571
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12572
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12420
12573
|
}
|
|
12421
12574
|
export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
|
|
12422
12575
|
results: MeasurementFormNeedDto[];
|
|
@@ -12639,6 +12792,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12639
12792
|
versionId?: number;
|
|
12640
12793
|
schemaInstanceId: string;
|
|
12641
12794
|
balloonId?: string | null;
|
|
12795
|
+
reference?: number;
|
|
12642
12796
|
feedback: string;
|
|
12643
12797
|
from: string;
|
|
12644
12798
|
created: Date;
|
|
@@ -12662,6 +12816,7 @@ export interface ISchemaFeedbackDto {
|
|
|
12662
12816
|
versionId?: number;
|
|
12663
12817
|
schemaInstanceId: string;
|
|
12664
12818
|
balloonId?: string | null;
|
|
12819
|
+
reference?: number;
|
|
12665
12820
|
feedback: string;
|
|
12666
12821
|
from: string;
|
|
12667
12822
|
created: Date;
|
|
@@ -13005,6 +13160,7 @@ export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementF
|
|
|
13005
13160
|
versionId?: number;
|
|
13006
13161
|
schemaInstanceId: string;
|
|
13007
13162
|
balloonId?: string | null;
|
|
13163
|
+
reference?: number;
|
|
13008
13164
|
feedback: string;
|
|
13009
13165
|
from: string;
|
|
13010
13166
|
created: Date;
|
|
@@ -13020,6 +13176,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
13020
13176
|
versionId?: number;
|
|
13021
13177
|
schemaInstanceId: string;
|
|
13022
13178
|
balloonId?: string | null;
|
|
13179
|
+
reference?: number;
|
|
13023
13180
|
feedback: string;
|
|
13024
13181
|
from: string;
|
|
13025
13182
|
created: Date;
|
|
@@ -13101,6 +13258,7 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13101
13258
|
imageUrl?: string | null;
|
|
13102
13259
|
thumbnailUrl?: string | null;
|
|
13103
13260
|
balloonId?: string | null;
|
|
13261
|
+
reference?: number;
|
|
13104
13262
|
section?: string | null;
|
|
13105
13263
|
pageNumber?: number | null;
|
|
13106
13264
|
sheetZone?: string | null;
|
|
@@ -13124,7 +13282,9 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13124
13282
|
isDocumentedExternally: boolean;
|
|
13125
13283
|
canOverrideIsDocumentedExternally: boolean;
|
|
13126
13284
|
balloonSequence?: number | null;
|
|
13285
|
+
referenceIndex?: number | null;
|
|
13127
13286
|
balloonQuantity?: number | null;
|
|
13287
|
+
referenceQuantity?: number | null;
|
|
13128
13288
|
plusTolerance?: string | null;
|
|
13129
13289
|
minusTolerance?: string | null;
|
|
13130
13290
|
coatingThickness?: number | null;
|
|
@@ -13148,6 +13308,7 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13148
13308
|
imageUrl?: string | null;
|
|
13149
13309
|
thumbnailUrl?: string | null;
|
|
13150
13310
|
balloonId?: string | null;
|
|
13311
|
+
reference?: number;
|
|
13151
13312
|
section?: string | null;
|
|
13152
13313
|
pageNumber?: number | null;
|
|
13153
13314
|
sheetZone?: string | null;
|
|
@@ -13171,7 +13332,9 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13171
13332
|
isDocumentedExternally: boolean;
|
|
13172
13333
|
canOverrideIsDocumentedExternally: boolean;
|
|
13173
13334
|
balloonSequence?: number | null;
|
|
13335
|
+
referenceIndex?: number | null;
|
|
13174
13336
|
balloonQuantity?: number | null;
|
|
13337
|
+
referenceQuantity?: number | null;
|
|
13175
13338
|
plusTolerance?: string | null;
|
|
13176
13339
|
minusTolerance?: string | null;
|
|
13177
13340
|
coatingThickness?: number | null;
|
|
@@ -13415,6 +13578,7 @@ export declare class SchemaFeedbackCreatedDto implements ISchemaFeedbackCreatedD
|
|
|
13415
13578
|
versionId: number;
|
|
13416
13579
|
schemaInstanceId: string;
|
|
13417
13580
|
balloonId?: string | null;
|
|
13581
|
+
reference?: number;
|
|
13418
13582
|
feedback: string;
|
|
13419
13583
|
from: string;
|
|
13420
13584
|
created: Date;
|
|
@@ -13430,12 +13594,14 @@ export interface ISchemaFeedbackCreatedDto {
|
|
|
13430
13594
|
versionId: number;
|
|
13431
13595
|
schemaInstanceId: string;
|
|
13432
13596
|
balloonId?: string | null;
|
|
13597
|
+
reference?: number;
|
|
13433
13598
|
feedback: string;
|
|
13434
13599
|
from: string;
|
|
13435
13600
|
created: Date;
|
|
13436
13601
|
}
|
|
13437
13602
|
export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13438
13603
|
balloonId?: string | null;
|
|
13604
|
+
reference?: number;
|
|
13439
13605
|
feedback: string;
|
|
13440
13606
|
constructor(data?: ICreateMeasurementFormSchemaFeedbackRequest);
|
|
13441
13607
|
init(_data?: any): void;
|
|
@@ -13444,6 +13610,7 @@ export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICrea
|
|
|
13444
13610
|
}
|
|
13445
13611
|
export interface ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13446
13612
|
balloonId?: string | null;
|
|
13613
|
+
reference?: number;
|
|
13447
13614
|
feedback: string;
|
|
13448
13615
|
}
|
|
13449
13616
|
export declare class MeasurementFormSupplierAccessInstanceDto implements IMeasurementFormSupplierAccessInstanceDto {
|
|
@@ -13526,7 +13693,8 @@ export interface IUpdateSchemaInstanceElementsRequest {
|
|
|
13526
13693
|
}
|
|
13527
13694
|
export declare class SchemaInstanceElementDto implements ISchemaInstanceElementDto {
|
|
13528
13695
|
elementId: string;
|
|
13529
|
-
balloonId
|
|
13696
|
+
balloonId?: string | null;
|
|
13697
|
+
reference: number;
|
|
13530
13698
|
disabled: boolean;
|
|
13531
13699
|
constructor(data?: ISchemaInstanceElementDto);
|
|
13532
13700
|
init(_data?: any): void;
|
|
@@ -13535,81 +13703,10 @@ export declare class SchemaInstanceElementDto implements ISchemaInstanceElementD
|
|
|
13535
13703
|
}
|
|
13536
13704
|
export interface ISchemaInstanceElementDto {
|
|
13537
13705
|
elementId: string;
|
|
13538
|
-
balloonId
|
|
13706
|
+
balloonId?: string | null;
|
|
13707
|
+
reference: number;
|
|
13539
13708
|
disabled: boolean;
|
|
13540
13709
|
}
|
|
13541
|
-
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
13542
|
-
id: string;
|
|
13543
|
-
name: string;
|
|
13544
|
-
constructor(data?: IIotTypeSourceDto);
|
|
13545
|
-
init(_data?: any): void;
|
|
13546
|
-
static fromJS(data: any): IotTypeSourceDto;
|
|
13547
|
-
toJSON(data?: any): any;
|
|
13548
|
-
}
|
|
13549
|
-
export interface IIotTypeSourceDto {
|
|
13550
|
-
id: string;
|
|
13551
|
-
name: string;
|
|
13552
|
-
}
|
|
13553
|
-
export declare class ElectricalIotConfigDto implements IElectricalIotConfigDto {
|
|
13554
|
-
id: string;
|
|
13555
|
-
typeId: string;
|
|
13556
|
-
serialNumber?: string | null;
|
|
13557
|
-
assetId: number;
|
|
13558
|
-
assetExternalId?: string | null;
|
|
13559
|
-
phases?: number;
|
|
13560
|
-
electricalAssetId?: number;
|
|
13561
|
-
electricalAssetExternalId?: string | null;
|
|
13562
|
-
electricalTimeseriesId?: number;
|
|
13563
|
-
electricalTimeseriesExternalId?: string | null;
|
|
13564
|
-
constructor(data?: IElectricalIotConfigDto);
|
|
13565
|
-
init(_data?: any): void;
|
|
13566
|
-
static fromJS(data: any): ElectricalIotConfigDto;
|
|
13567
|
-
toJSON(data?: any): any;
|
|
13568
|
-
}
|
|
13569
|
-
export interface IElectricalIotConfigDto {
|
|
13570
|
-
id: string;
|
|
13571
|
-
typeId: string;
|
|
13572
|
-
serialNumber?: string | null;
|
|
13573
|
-
assetId: number;
|
|
13574
|
-
assetExternalId?: string | null;
|
|
13575
|
-
phases?: number;
|
|
13576
|
-
electricalAssetId?: number;
|
|
13577
|
-
electricalAssetExternalId?: string | null;
|
|
13578
|
-
electricalTimeseriesId?: number;
|
|
13579
|
-
electricalTimeseriesExternalId?: string | null;
|
|
13580
|
-
}
|
|
13581
|
-
export declare class CreateElectricalIotConfig implements ICreateElectricalIotConfig {
|
|
13582
|
-
typeId?: string | null;
|
|
13583
|
-
serialNumber?: string | null;
|
|
13584
|
-
assetId?: number | null;
|
|
13585
|
-
assetExternalId?: string | null;
|
|
13586
|
-
constructor(data?: ICreateElectricalIotConfig);
|
|
13587
|
-
init(_data?: any): void;
|
|
13588
|
-
static fromJS(data: any): CreateElectricalIotConfig;
|
|
13589
|
-
toJSON(data?: any): any;
|
|
13590
|
-
}
|
|
13591
|
-
export interface ICreateElectricalIotConfig {
|
|
13592
|
-
typeId?: string | null;
|
|
13593
|
-
serialNumber?: string | null;
|
|
13594
|
-
assetId?: number | null;
|
|
13595
|
-
assetExternalId?: string | null;
|
|
13596
|
-
}
|
|
13597
|
-
export declare class WeldingIotConfigDto implements IWeldingIotConfigDto {
|
|
13598
|
-
constructor(data?: IWeldingIotConfigDto);
|
|
13599
|
-
init(_data?: any): void;
|
|
13600
|
-
static fromJS(data: any): WeldingIotConfigDto;
|
|
13601
|
-
toJSON(data?: any): any;
|
|
13602
|
-
}
|
|
13603
|
-
export interface IWeldingIotConfigDto {
|
|
13604
|
-
}
|
|
13605
|
-
export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
13606
|
-
constructor(data?: ICreateWeldingIotConfig);
|
|
13607
|
-
init(_data?: any): void;
|
|
13608
|
-
static fromJS(data: any): CreateWeldingIotConfig;
|
|
13609
|
-
toJSON(data?: any): any;
|
|
13610
|
-
}
|
|
13611
|
-
export interface ICreateWeldingIotConfig {
|
|
13612
|
-
}
|
|
13613
13710
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
13614
13711
|
id: string;
|
|
13615
13712
|
name: string;
|