@ignos/api-client 20250825.0.12417 → 20250827.0.12448-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +303 -181
- package/lib/ignosportal-api.js +1057 -706
- package/package.json +1 -1
- package/src/ignosportal-api.ts +1179 -714
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -746,6 +746,10 @@ export interface IDowntimeReasonsAdminClient {
|
|
|
746
746
|
updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
|
|
747
747
|
deleteDowntimeReason(id: string): Promise<void>;
|
|
748
748
|
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
749
|
+
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
750
|
+
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
751
|
+
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
752
|
+
deleteParentTopic(id: string): Promise<void>;
|
|
749
753
|
}
|
|
750
754
|
export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
|
|
751
755
|
private http;
|
|
@@ -764,6 +768,14 @@ export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implem
|
|
|
764
768
|
protected processDeleteDowntimeReason(response: Response): Promise<void>;
|
|
765
769
|
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
766
770
|
protected processListMachineTypes(response: Response): Promise<MachineTypeDto[]>;
|
|
771
|
+
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
772
|
+
protected processListParentTopics(response: Response): Promise<ParentTopicDto[]>;
|
|
773
|
+
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
774
|
+
protected processCreateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
775
|
+
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
776
|
+
protected processUpdateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
777
|
+
deleteParentTopic(id: string): Promise<void>;
|
|
778
|
+
protected processDeleteParentTopic(response: Response): Promise<void>;
|
|
767
779
|
}
|
|
768
780
|
export interface IDowntimeReasonsClient {
|
|
769
781
|
createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
|
|
@@ -2038,6 +2050,50 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2038
2050
|
listDepartments(): Promise<DepartmentDto[]>;
|
|
2039
2051
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2040
2052
|
}
|
|
2053
|
+
export interface IElectricalClient {
|
|
2054
|
+
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2055
|
+
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2056
|
+
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2057
|
+
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2058
|
+
}
|
|
2059
|
+
export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
2060
|
+
private http;
|
|
2061
|
+
private baseUrl;
|
|
2062
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2063
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2064
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2065
|
+
});
|
|
2066
|
+
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2067
|
+
protected processListElectricalSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2068
|
+
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2069
|
+
protected processListElectricalDataConfigs(response: Response): Promise<ElectricalIotConfigDto[]>;
|
|
2070
|
+
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2071
|
+
protected processCreateElectricalIotConfig(response: Response): Promise<ElectricalIotConfigDto>;
|
|
2072
|
+
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2073
|
+
protected processDeleteElectricalIotConfig(response: Response): Promise<void>;
|
|
2074
|
+
}
|
|
2075
|
+
export interface IWeldingClient {
|
|
2076
|
+
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2077
|
+
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2078
|
+
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2079
|
+
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2080
|
+
}
|
|
2081
|
+
export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
2082
|
+
private http;
|
|
2083
|
+
private baseUrl;
|
|
2084
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2085
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2086
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2087
|
+
});
|
|
2088
|
+
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2089
|
+
protected processListWeldingSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2090
|
+
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2091
|
+
protected processListElectricalDataConfigs(response: Response): Promise<WeldingIotConfigDto[]>;
|
|
2092
|
+
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2093
|
+
protected processCreateWeldingIotConfig(response: Response): Promise<WeldingIotConfigDto>;
|
|
2094
|
+
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2095
|
+
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2096
|
+
}
|
|
2041
2097
|
export interface IMeasurementFormSchemasClient {
|
|
2042
2098
|
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
2099
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -2065,11 +2121,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2065
2121
|
/**
|
|
2066
2122
|
* @deprecated
|
|
2067
2123
|
*/
|
|
2068
|
-
getMeasurementFormSettings(): Promise<
|
|
2124
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2069
2125
|
/**
|
|
2070
2126
|
* @deprecated
|
|
2071
2127
|
*/
|
|
2072
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2128
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2073
2129
|
/**
|
|
2074
2130
|
* @deprecated
|
|
2075
2131
|
*/
|
|
@@ -2082,8 +2138,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2082
2138
|
createMeasurementFormMapping(request: CreateMeasurementFormMapping): Promise<MeasurementFormMappingDto>;
|
|
2083
2139
|
getMeasurementFormMapping(id: string): Promise<MeasurementFormMappingDto>;
|
|
2084
2140
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2085
|
-
|
|
2086
|
-
|
|
2141
|
+
/**
|
|
2142
|
+
* @deprecated
|
|
2143
|
+
*/
|
|
2144
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2145
|
+
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2087
2146
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2088
2147
|
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
2148
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2162,13 +2221,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2162
2221
|
/**
|
|
2163
2222
|
* @deprecated
|
|
2164
2223
|
*/
|
|
2165
|
-
getMeasurementFormSettings(): Promise<
|
|
2166
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2224
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2225
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2167
2226
|
/**
|
|
2168
2227
|
* @deprecated
|
|
2169
2228
|
*/
|
|
2170
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2171
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2229
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2230
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2172
2231
|
/**
|
|
2173
2232
|
* @deprecated
|
|
2174
2233
|
*/
|
|
@@ -2187,10 +2246,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2187
2246
|
protected processGetMeasurementFormMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2188
2247
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2189
2248
|
protected processDeleteMeasurementFormMapping(response: Response): Promise<void>;
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2249
|
+
/**
|
|
2250
|
+
* @deprecated
|
|
2251
|
+
*/
|
|
2252
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2193
2253
|
protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2254
|
+
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2255
|
+
protected processSetMeasurementFormReferencesMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2194
2256
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2195
2257
|
protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2196
2258
|
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 +2297,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2235
2297
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2236
2298
|
}
|
|
2237
2299
|
export interface IMeasurementFormSettingsClient {
|
|
2238
|
-
getMeasurementFormSettings(): Promise<
|
|
2239
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2300
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2301
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2240
2302
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2241
2303
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2242
2304
|
}
|
|
@@ -2247,10 +2309,10 @@ export declare class MeasurementFormSettingsClient extends AuthorizedApiBase imp
|
|
|
2247
2309
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2248
2310
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2249
2311
|
});
|
|
2250
|
-
getMeasurementFormSettings(): Promise<
|
|
2251
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2252
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2253
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2312
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2313
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2314
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2315
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2254
2316
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2255
2317
|
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2256
2318
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
@@ -2362,50 +2424,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2362
2424
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2363
2425
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2364
2426
|
}
|
|
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
2427
|
export interface ICompaniesClient {
|
|
2410
2428
|
listProductionCompanies(): Promise<ProductionCompanyDto[]>;
|
|
2411
2429
|
selectProductionCompany(request: SelectProductionCompany): Promise<ProductionCompanyDto>;
|
|
@@ -5678,6 +5696,8 @@ export declare class DowntimeReasonDto implements IDowntimeReasonDto {
|
|
|
5678
5696
|
machineTypes: string[];
|
|
5679
5697
|
reasonType: DowntimeReasonTypeDto;
|
|
5680
5698
|
description?: string | null;
|
|
5699
|
+
parentId?: string | null;
|
|
5700
|
+
displayOrder?: number | null;
|
|
5681
5701
|
constructor(data?: IDowntimeReasonDto);
|
|
5682
5702
|
init(_data?: any): void;
|
|
5683
5703
|
static fromJS(data: any): DowntimeReasonDto;
|
|
@@ -5689,6 +5709,8 @@ export interface IDowntimeReasonDto {
|
|
|
5689
5709
|
machineTypes: string[];
|
|
5690
5710
|
reasonType: DowntimeReasonTypeDto;
|
|
5691
5711
|
description?: string | null;
|
|
5712
|
+
parentId?: string | null;
|
|
5713
|
+
displayOrder?: number | null;
|
|
5692
5714
|
}
|
|
5693
5715
|
export declare class CreateDowntimeReason implements ICreateDowntimeReason {
|
|
5694
5716
|
reason: string;
|
|
@@ -5711,6 +5733,8 @@ export declare class UpdateDowntimeReasonRequest implements IUpdateDowntimeReaso
|
|
|
5711
5733
|
machineTypes: string[];
|
|
5712
5734
|
reasonType: DowntimeReasonTypeDto;
|
|
5713
5735
|
description?: string | null;
|
|
5736
|
+
parentId?: string | null;
|
|
5737
|
+
displayOrder?: number | null;
|
|
5714
5738
|
constructor(data?: IUpdateDowntimeReasonRequest);
|
|
5715
5739
|
init(_data?: any): void;
|
|
5716
5740
|
static fromJS(data: any): UpdateDowntimeReasonRequest;
|
|
@@ -5721,6 +5745,8 @@ export interface IUpdateDowntimeReasonRequest {
|
|
|
5721
5745
|
machineTypes: string[];
|
|
5722
5746
|
reasonType: DowntimeReasonTypeDto;
|
|
5723
5747
|
description?: string | null;
|
|
5748
|
+
parentId?: string | null;
|
|
5749
|
+
displayOrder?: number | null;
|
|
5724
5750
|
}
|
|
5725
5751
|
export declare class MachineTypeDto implements IMachineTypeDto {
|
|
5726
5752
|
machineType: string;
|
|
@@ -5732,6 +5758,56 @@ export declare class MachineTypeDto implements IMachineTypeDto {
|
|
|
5732
5758
|
export interface IMachineTypeDto {
|
|
5733
5759
|
machineType: string;
|
|
5734
5760
|
}
|
|
5761
|
+
export declare class ParentTopicDto implements IParentTopicDto {
|
|
5762
|
+
id: string;
|
|
5763
|
+
name: string;
|
|
5764
|
+
reasonType: DowntimeReasonTypeDto;
|
|
5765
|
+
description?: string | null;
|
|
5766
|
+
displayOrder?: number;
|
|
5767
|
+
constructor(data?: IParentTopicDto);
|
|
5768
|
+
init(_data?: any): void;
|
|
5769
|
+
static fromJS(data: any): ParentTopicDto;
|
|
5770
|
+
toJSON(data?: any): any;
|
|
5771
|
+
}
|
|
5772
|
+
export interface IParentTopicDto {
|
|
5773
|
+
id: string;
|
|
5774
|
+
name: string;
|
|
5775
|
+
reasonType: DowntimeReasonTypeDto;
|
|
5776
|
+
description?: string | null;
|
|
5777
|
+
displayOrder?: number;
|
|
5778
|
+
}
|
|
5779
|
+
export declare class CreateParentTopicRequest implements ICreateParentTopicRequest {
|
|
5780
|
+
name: string;
|
|
5781
|
+
reasonType: DowntimeReasonTypeDto;
|
|
5782
|
+
description?: string | null;
|
|
5783
|
+
displayOrder?: number | null;
|
|
5784
|
+
constructor(data?: ICreateParentTopicRequest);
|
|
5785
|
+
init(_data?: any): void;
|
|
5786
|
+
static fromJS(data: any): CreateParentTopicRequest;
|
|
5787
|
+
toJSON(data?: any): any;
|
|
5788
|
+
}
|
|
5789
|
+
export interface ICreateParentTopicRequest {
|
|
5790
|
+
name: string;
|
|
5791
|
+
reasonType: DowntimeReasonTypeDto;
|
|
5792
|
+
description?: string | null;
|
|
5793
|
+
displayOrder?: number | null;
|
|
5794
|
+
}
|
|
5795
|
+
export declare class UpdateParentTopicRequest implements IUpdateParentTopicRequest {
|
|
5796
|
+
name: string;
|
|
5797
|
+
reasonType: DowntimeReasonTypeDto;
|
|
5798
|
+
description?: string | null;
|
|
5799
|
+
displayOrder?: number | null;
|
|
5800
|
+
constructor(data?: IUpdateParentTopicRequest);
|
|
5801
|
+
init(_data?: any): void;
|
|
5802
|
+
static fromJS(data: any): UpdateParentTopicRequest;
|
|
5803
|
+
toJSON(data?: any): any;
|
|
5804
|
+
}
|
|
5805
|
+
export interface IUpdateParentTopicRequest {
|
|
5806
|
+
name: string;
|
|
5807
|
+
reasonType: DowntimeReasonTypeDto;
|
|
5808
|
+
description?: string | null;
|
|
5809
|
+
displayOrder?: number | null;
|
|
5810
|
+
}
|
|
5735
5811
|
export declare class CreateDowntimePeriodReason implements ICreateDowntimePeriodReason {
|
|
5736
5812
|
reasonId: string;
|
|
5737
5813
|
assetId: number;
|
|
@@ -11678,6 +11754,78 @@ export interface IProductionResourceDto {
|
|
|
11678
11754
|
name?: string | null;
|
|
11679
11755
|
department?: DepartmentDto | null;
|
|
11680
11756
|
}
|
|
11757
|
+
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
11758
|
+
id: string;
|
|
11759
|
+
name: string;
|
|
11760
|
+
constructor(data?: IIotTypeSourceDto);
|
|
11761
|
+
init(_data?: any): void;
|
|
11762
|
+
static fromJS(data: any): IotTypeSourceDto;
|
|
11763
|
+
toJSON(data?: any): any;
|
|
11764
|
+
}
|
|
11765
|
+
export interface IIotTypeSourceDto {
|
|
11766
|
+
id: string;
|
|
11767
|
+
name: string;
|
|
11768
|
+
}
|
|
11769
|
+
export declare class ElectricalIotConfigDto implements IElectricalIotConfigDto {
|
|
11770
|
+
id: string;
|
|
11771
|
+
typeId: string;
|
|
11772
|
+
serialNumber?: string | null;
|
|
11773
|
+
assetId: number;
|
|
11774
|
+
assetExternalId?: string | null;
|
|
11775
|
+
phases?: number;
|
|
11776
|
+
electricalAssetId?: number;
|
|
11777
|
+
electricalAssetExternalId?: string | null;
|
|
11778
|
+
electricalTimeseriesId?: number;
|
|
11779
|
+
electricalTimeseriesExternalId?: string | null;
|
|
11780
|
+
constructor(data?: IElectricalIotConfigDto);
|
|
11781
|
+
init(_data?: any): void;
|
|
11782
|
+
static fromJS(data: any): ElectricalIotConfigDto;
|
|
11783
|
+
toJSON(data?: any): any;
|
|
11784
|
+
}
|
|
11785
|
+
export interface IElectricalIotConfigDto {
|
|
11786
|
+
id: string;
|
|
11787
|
+
typeId: string;
|
|
11788
|
+
serialNumber?: string | null;
|
|
11789
|
+
assetId: number;
|
|
11790
|
+
assetExternalId?: string | null;
|
|
11791
|
+
phases?: number;
|
|
11792
|
+
electricalAssetId?: number;
|
|
11793
|
+
electricalAssetExternalId?: string | null;
|
|
11794
|
+
electricalTimeseriesId?: number;
|
|
11795
|
+
electricalTimeseriesExternalId?: string | null;
|
|
11796
|
+
}
|
|
11797
|
+
export declare class CreateElectricalIotConfig implements ICreateElectricalIotConfig {
|
|
11798
|
+
typeId?: string | null;
|
|
11799
|
+
serialNumber?: string | null;
|
|
11800
|
+
assetId?: number | null;
|
|
11801
|
+
assetExternalId?: string | null;
|
|
11802
|
+
constructor(data?: ICreateElectricalIotConfig);
|
|
11803
|
+
init(_data?: any): void;
|
|
11804
|
+
static fromJS(data: any): CreateElectricalIotConfig;
|
|
11805
|
+
toJSON(data?: any): any;
|
|
11806
|
+
}
|
|
11807
|
+
export interface ICreateElectricalIotConfig {
|
|
11808
|
+
typeId?: string | null;
|
|
11809
|
+
serialNumber?: string | null;
|
|
11810
|
+
assetId?: number | null;
|
|
11811
|
+
assetExternalId?: string | null;
|
|
11812
|
+
}
|
|
11813
|
+
export declare class WeldingIotConfigDto implements IWeldingIotConfigDto {
|
|
11814
|
+
constructor(data?: IWeldingIotConfigDto);
|
|
11815
|
+
init(_data?: any): void;
|
|
11816
|
+
static fromJS(data: any): WeldingIotConfigDto;
|
|
11817
|
+
toJSON(data?: any): any;
|
|
11818
|
+
}
|
|
11819
|
+
export interface IWeldingIotConfigDto {
|
|
11820
|
+
}
|
|
11821
|
+
export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
11822
|
+
constructor(data?: ICreateWeldingIotConfig);
|
|
11823
|
+
init(_data?: any): void;
|
|
11824
|
+
static fromJS(data: any): CreateWeldingIotConfig;
|
|
11825
|
+
toJSON(data?: any): any;
|
|
11826
|
+
}
|
|
11827
|
+
export interface ICreateWeldingIotConfig {
|
|
11828
|
+
}
|
|
11681
11829
|
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
11682
11830
|
results: MeasurementFormListDto[];
|
|
11683
11831
|
continuationToken?: string | null;
|
|
@@ -11833,7 +11981,8 @@ export interface IMeasurementFormSchemaAttachmentDto {
|
|
|
11833
11981
|
}
|
|
11834
11982
|
export declare class MeasurementFormGroupedElementDto implements IMeasurementFormGroupedElementDto {
|
|
11835
11983
|
id: string;
|
|
11836
|
-
balloonId
|
|
11984
|
+
balloonId?: string | null;
|
|
11985
|
+
reference: number;
|
|
11837
11986
|
imageUrl?: string | null;
|
|
11838
11987
|
thumbnailUrl?: string | null;
|
|
11839
11988
|
section?: string | null;
|
|
@@ -11860,6 +12009,7 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11860
12009
|
includeInCustomerDocumentation: boolean;
|
|
11861
12010
|
isDocumentedExternally: boolean;
|
|
11862
12011
|
balloonQuantity?: number | null;
|
|
12012
|
+
referenceQuantity?: number | null;
|
|
11863
12013
|
plusToleranceText?: string | null;
|
|
11864
12014
|
minusToleranceText?: string | null;
|
|
11865
12015
|
coatingThickness?: number | null;
|
|
@@ -11879,7 +12029,8 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11879
12029
|
}
|
|
11880
12030
|
export interface IMeasurementFormGroupedElementDto {
|
|
11881
12031
|
id: string;
|
|
11882
|
-
balloonId
|
|
12032
|
+
balloonId?: string | null;
|
|
12033
|
+
reference: number;
|
|
11883
12034
|
imageUrl?: string | null;
|
|
11884
12035
|
thumbnailUrl?: string | null;
|
|
11885
12036
|
section?: string | null;
|
|
@@ -11906,6 +12057,7 @@ export interface IMeasurementFormGroupedElementDto {
|
|
|
11906
12057
|
includeInCustomerDocumentation: boolean;
|
|
11907
12058
|
isDocumentedExternally: boolean;
|
|
11908
12059
|
balloonQuantity?: number | null;
|
|
12060
|
+
referenceQuantity?: number | null;
|
|
11909
12061
|
plusToleranceText?: string | null;
|
|
11910
12062
|
minusToleranceText?: string | null;
|
|
11911
12063
|
coatingThickness?: number | null;
|
|
@@ -12055,7 +12207,8 @@ export interface IUpdateSchemaGroupedElementsRequest {
|
|
|
12055
12207
|
groupedElements: UpdateSchemaGroupedElementDto[];
|
|
12056
12208
|
}
|
|
12057
12209
|
export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElementDto {
|
|
12058
|
-
balloonId
|
|
12210
|
+
balloonId?: string | null;
|
|
12211
|
+
reference: number;
|
|
12059
12212
|
frequency: MeasurementFrequency;
|
|
12060
12213
|
frequencyParameter?: number | null;
|
|
12061
12214
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12068,7 +12221,8 @@ export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroup
|
|
|
12068
12221
|
toJSON(data?: any): any;
|
|
12069
12222
|
}
|
|
12070
12223
|
export interface IUpdateSchemaGroupedElementDto {
|
|
12071
|
-
balloonId
|
|
12224
|
+
balloonId?: string | null;
|
|
12225
|
+
reference: number;
|
|
12072
12226
|
frequency: MeasurementFrequency;
|
|
12073
12227
|
frequencyParameter?: number | null;
|
|
12074
12228
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12077,8 +12231,10 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
12077
12231
|
coatingThickness?: number | null;
|
|
12078
12232
|
}
|
|
12079
12233
|
export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|
|
12080
|
-
id
|
|
12081
|
-
balloonId
|
|
12234
|
+
id?: string;
|
|
12235
|
+
balloonId?: string;
|
|
12236
|
+
oldReference: number;
|
|
12237
|
+
newReference: number;
|
|
12082
12238
|
section?: string | null;
|
|
12083
12239
|
pageNumber?: number | null;
|
|
12084
12240
|
measurements?: number | null;
|
|
@@ -12102,8 +12258,10 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
12102
12258
|
toJSON(data?: any): any;
|
|
12103
12259
|
}
|
|
12104
12260
|
export interface IUpdateSchemaGroupedElementRowDto {
|
|
12105
|
-
id
|
|
12106
|
-
balloonId
|
|
12261
|
+
id?: string;
|
|
12262
|
+
balloonId?: string;
|
|
12263
|
+
oldReference: number;
|
|
12264
|
+
newReference: number;
|
|
12107
12265
|
section?: string | null;
|
|
12108
12266
|
pageNumber?: number | null;
|
|
12109
12267
|
measurements?: number | null;
|
|
@@ -12123,19 +12281,22 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
12123
12281
|
isDocumentedExternally: boolean;
|
|
12124
12282
|
}
|
|
12125
12283
|
export declare class DeleteSchemaGroupedElementRowsDto implements IDeleteSchemaGroupedElementRowsDto {
|
|
12126
|
-
balloonIds
|
|
12284
|
+
balloonIds?: string[];
|
|
12285
|
+
references?: number[];
|
|
12127
12286
|
constructor(data?: IDeleteSchemaGroupedElementRowsDto);
|
|
12128
12287
|
init(_data?: any): void;
|
|
12129
12288
|
static fromJS(data: any): DeleteSchemaGroupedElementRowsDto;
|
|
12130
12289
|
toJSON(data?: any): any;
|
|
12131
12290
|
}
|
|
12132
12291
|
export interface IDeleteSchemaGroupedElementRowsDto {
|
|
12133
|
-
balloonIds
|
|
12292
|
+
balloonIds?: string[];
|
|
12293
|
+
references?: number[];
|
|
12134
12294
|
}
|
|
12135
12295
|
export declare class UploadMeasurementImageRequest implements IUploadMeasurementImageRequest {
|
|
12136
12296
|
uploadKey: string;
|
|
12137
12297
|
filename: string;
|
|
12138
|
-
ballonId
|
|
12298
|
+
ballonId?: string;
|
|
12299
|
+
reference: number;
|
|
12139
12300
|
constructor(data?: IUploadMeasurementImageRequest);
|
|
12140
12301
|
init(_data?: any): void;
|
|
12141
12302
|
static fromJS(data: any): UploadMeasurementImageRequest;
|
|
@@ -12144,7 +12305,8 @@ export declare class UploadMeasurementImageRequest implements IUploadMeasurement
|
|
|
12144
12305
|
export interface IUploadMeasurementImageRequest {
|
|
12145
12306
|
uploadKey: string;
|
|
12146
12307
|
filename: string;
|
|
12147
|
-
ballonId
|
|
12308
|
+
ballonId?: string;
|
|
12309
|
+
reference: number;
|
|
12148
12310
|
}
|
|
12149
12311
|
export declare class UpdateSchemaSettingsRequest implements IUpdateSchemaSettingsRequest {
|
|
12150
12312
|
unitOfMeasure: UnitOfMeasureDto;
|
|
@@ -12226,7 +12388,7 @@ export declare class CreateMeasurementFormSchemaLinkRequest implements ICreateMe
|
|
|
12226
12388
|
export interface ICreateMeasurementFormSchemaLinkRequest {
|
|
12227
12389
|
linkSchemaId: string;
|
|
12228
12390
|
}
|
|
12229
|
-
export declare class
|
|
12391
|
+
export declare class InspectCompanySettingsDto implements IInspectCompanySettingsDto {
|
|
12230
12392
|
convertInchToMm: boolean;
|
|
12231
12393
|
convertMicroInchToMicroMeter: boolean;
|
|
12232
12394
|
validateMeasuringTools: boolean;
|
|
@@ -12241,12 +12403,12 @@ export declare class MeasurementFormSettingsDto implements IMeasurementFormSetti
|
|
|
12241
12403
|
allowSchemaUpdates: boolean;
|
|
12242
12404
|
allowCreateInstances: boolean;
|
|
12243
12405
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
12244
|
-
constructor(data?:
|
|
12406
|
+
constructor(data?: IInspectCompanySettingsDto);
|
|
12245
12407
|
init(_data?: any): void;
|
|
12246
|
-
static fromJS(data: any):
|
|
12408
|
+
static fromJS(data: any): InspectCompanySettingsDto;
|
|
12247
12409
|
toJSON(data?: any): any;
|
|
12248
12410
|
}
|
|
12249
|
-
export interface
|
|
12411
|
+
export interface IInspectCompanySettingsDto {
|
|
12250
12412
|
convertInchToMm: boolean;
|
|
12251
12413
|
convertMicroInchToMicroMeter: boolean;
|
|
12252
12414
|
validateMeasuringTools: boolean;
|
|
@@ -12338,8 +12500,10 @@ export declare class MeasurementFormMappingDto implements IMeasurementFormMappin
|
|
|
12338
12500
|
id: string;
|
|
12339
12501
|
measurementSchemaSourceId: string;
|
|
12340
12502
|
measurementSchemaTargetId: string;
|
|
12341
|
-
sourceBalloons
|
|
12342
|
-
targetBalloons
|
|
12503
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12504
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12505
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12506
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12343
12507
|
constructor(data?: IMeasurementFormMappingDto);
|
|
12344
12508
|
init(_data?: any): void;
|
|
12345
12509
|
static fromJS(data: any): MeasurementFormMappingDto;
|
|
@@ -12349,21 +12513,27 @@ export interface IMeasurementFormMappingDto {
|
|
|
12349
12513
|
id: string;
|
|
12350
12514
|
measurementSchemaSourceId: string;
|
|
12351
12515
|
measurementSchemaTargetId: string;
|
|
12352
|
-
sourceBalloons
|
|
12353
|
-
targetBalloons
|
|
12516
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12517
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12518
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12519
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12354
12520
|
}
|
|
12355
|
-
export declare class
|
|
12356
|
-
balloon
|
|
12521
|
+
export declare class MeasurementFormReferenceMappingDto implements IMeasurementFormReferenceMappingDto {
|
|
12522
|
+
balloon?: MeasurementFormGroupedElementDto | null;
|
|
12357
12523
|
mappedBalloonId?: string | null;
|
|
12524
|
+
reference: MeasurementFormGroupedElementDto;
|
|
12525
|
+
mappedReference?: number;
|
|
12358
12526
|
mappingScorePercent?: number | null;
|
|
12359
|
-
constructor(data?:
|
|
12527
|
+
constructor(data?: IMeasurementFormReferenceMappingDto);
|
|
12360
12528
|
init(_data?: any): void;
|
|
12361
|
-
static fromJS(data: any):
|
|
12529
|
+
static fromJS(data: any): MeasurementFormReferenceMappingDto;
|
|
12362
12530
|
toJSON(data?: any): any;
|
|
12363
12531
|
}
|
|
12364
|
-
export interface
|
|
12365
|
-
balloon
|
|
12532
|
+
export interface IMeasurementFormReferenceMappingDto {
|
|
12533
|
+
balloon?: MeasurementFormGroupedElementDto | null;
|
|
12366
12534
|
mappedBalloonId?: string | null;
|
|
12535
|
+
reference: MeasurementFormGroupedElementDto;
|
|
12536
|
+
mappedReference?: number;
|
|
12367
12537
|
mappingScorePercent?: number | null;
|
|
12368
12538
|
}
|
|
12369
12539
|
export declare class CreateMeasurementFormMapping implements ICreateMeasurementFormMapping {
|
|
@@ -12378,35 +12548,41 @@ export interface ICreateMeasurementFormMapping {
|
|
|
12378
12548
|
sourceId: string;
|
|
12379
12549
|
targetId: string;
|
|
12380
12550
|
}
|
|
12381
|
-
export declare class
|
|
12382
|
-
|
|
12383
|
-
|
|
12384
|
-
mappingScorePercent?: number | null;
|
|
12385
|
-
constructor(data?: IMeasurementFormBalloonMappingRequestDto);
|
|
12551
|
+
export declare class SetMeasurementFormReferencesMappingRequest implements ISetMeasurementFormReferencesMappingRequest {
|
|
12552
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
12553
|
+
constructor(data?: ISetMeasurementFormReferencesMappingRequest);
|
|
12386
12554
|
init(_data?: any): void;
|
|
12387
|
-
static fromJS(data: any):
|
|
12555
|
+
static fromJS(data: any): SetMeasurementFormReferencesMappingRequest;
|
|
12388
12556
|
toJSON(data?: any): any;
|
|
12389
12557
|
}
|
|
12390
|
-
export interface
|
|
12391
|
-
|
|
12392
|
-
targetBalloonId: string;
|
|
12393
|
-
mappingScorePercent?: number | null;
|
|
12558
|
+
export interface ISetMeasurementFormReferencesMappingRequest {
|
|
12559
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
12394
12560
|
}
|
|
12395
|
-
export declare class
|
|
12396
|
-
|
|
12397
|
-
|
|
12561
|
+
export declare class MeasurementFormReferenceMappingRequestDto implements IMeasurementFormReferenceMappingRequestDto {
|
|
12562
|
+
sourceBalloonId?: string | null;
|
|
12563
|
+
targetBalloonId?: string | null;
|
|
12564
|
+
sourceReference: number;
|
|
12565
|
+
targetReference: number;
|
|
12566
|
+
mappingScorePercent?: number | null;
|
|
12567
|
+
constructor(data?: IMeasurementFormReferenceMappingRequestDto);
|
|
12398
12568
|
init(_data?: any): void;
|
|
12399
|
-
static fromJS(data: any):
|
|
12569
|
+
static fromJS(data: any): MeasurementFormReferenceMappingRequestDto;
|
|
12400
12570
|
toJSON(data?: any): any;
|
|
12401
12571
|
}
|
|
12402
|
-
export interface
|
|
12403
|
-
|
|
12572
|
+
export interface IMeasurementFormReferenceMappingRequestDto {
|
|
12573
|
+
sourceBalloonId?: string | null;
|
|
12574
|
+
targetBalloonId?: string | null;
|
|
12575
|
+
sourceReference: number;
|
|
12576
|
+
targetReference: number;
|
|
12577
|
+
mappingScorePercent?: number | null;
|
|
12404
12578
|
}
|
|
12405
12579
|
export declare class MeasurementFormMappingSuggestionDto implements IMeasurementFormMappingSuggestionDto {
|
|
12406
12580
|
measurementSchemaSourceId: string;
|
|
12407
12581
|
measurementSchemaTargetId: string;
|
|
12408
|
-
sourceBalloons
|
|
12409
|
-
targetBalloons
|
|
12582
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12583
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12584
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12585
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12410
12586
|
constructor(data?: IMeasurementFormMappingSuggestionDto);
|
|
12411
12587
|
init(_data?: any): void;
|
|
12412
12588
|
static fromJS(data: any): MeasurementFormMappingSuggestionDto;
|
|
@@ -12415,8 +12591,10 @@ export declare class MeasurementFormMappingSuggestionDto implements IMeasurement
|
|
|
12415
12591
|
export interface IMeasurementFormMappingSuggestionDto {
|
|
12416
12592
|
measurementSchemaSourceId: string;
|
|
12417
12593
|
measurementSchemaTargetId: string;
|
|
12418
|
-
sourceBalloons
|
|
12419
|
-
targetBalloons
|
|
12594
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12595
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12596
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12597
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12420
12598
|
}
|
|
12421
12599
|
export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
|
|
12422
12600
|
results: MeasurementFormNeedDto[];
|
|
@@ -12639,6 +12817,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12639
12817
|
versionId?: number;
|
|
12640
12818
|
schemaInstanceId: string;
|
|
12641
12819
|
balloonId?: string | null;
|
|
12820
|
+
reference?: number;
|
|
12642
12821
|
feedback: string;
|
|
12643
12822
|
from: string;
|
|
12644
12823
|
created: Date;
|
|
@@ -12662,6 +12841,7 @@ export interface ISchemaFeedbackDto {
|
|
|
12662
12841
|
versionId?: number;
|
|
12663
12842
|
schemaInstanceId: string;
|
|
12664
12843
|
balloonId?: string | null;
|
|
12844
|
+
reference?: number;
|
|
12665
12845
|
feedback: string;
|
|
12666
12846
|
from: string;
|
|
12667
12847
|
created: Date;
|
|
@@ -13005,6 +13185,7 @@ export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementF
|
|
|
13005
13185
|
versionId?: number;
|
|
13006
13186
|
schemaInstanceId: string;
|
|
13007
13187
|
balloonId?: string | null;
|
|
13188
|
+
reference?: number;
|
|
13008
13189
|
feedback: string;
|
|
13009
13190
|
from: string;
|
|
13010
13191
|
created: Date;
|
|
@@ -13020,6 +13201,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
13020
13201
|
versionId?: number;
|
|
13021
13202
|
schemaInstanceId: string;
|
|
13022
13203
|
balloonId?: string | null;
|
|
13204
|
+
reference?: number;
|
|
13023
13205
|
feedback: string;
|
|
13024
13206
|
from: string;
|
|
13025
13207
|
created: Date;
|
|
@@ -13101,6 +13283,7 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13101
13283
|
imageUrl?: string | null;
|
|
13102
13284
|
thumbnailUrl?: string | null;
|
|
13103
13285
|
balloonId?: string | null;
|
|
13286
|
+
reference?: number;
|
|
13104
13287
|
section?: string | null;
|
|
13105
13288
|
pageNumber?: number | null;
|
|
13106
13289
|
sheetZone?: string | null;
|
|
@@ -13124,7 +13307,9 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13124
13307
|
isDocumentedExternally: boolean;
|
|
13125
13308
|
canOverrideIsDocumentedExternally: boolean;
|
|
13126
13309
|
balloonSequence?: number | null;
|
|
13310
|
+
referenceIndex?: number | null;
|
|
13127
13311
|
balloonQuantity?: number | null;
|
|
13312
|
+
referenceQuantity?: number | null;
|
|
13128
13313
|
plusTolerance?: string | null;
|
|
13129
13314
|
minusTolerance?: string | null;
|
|
13130
13315
|
coatingThickness?: number | null;
|
|
@@ -13148,6 +13333,7 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13148
13333
|
imageUrl?: string | null;
|
|
13149
13334
|
thumbnailUrl?: string | null;
|
|
13150
13335
|
balloonId?: string | null;
|
|
13336
|
+
reference?: number;
|
|
13151
13337
|
section?: string | null;
|
|
13152
13338
|
pageNumber?: number | null;
|
|
13153
13339
|
sheetZone?: string | null;
|
|
@@ -13171,7 +13357,9 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13171
13357
|
isDocumentedExternally: boolean;
|
|
13172
13358
|
canOverrideIsDocumentedExternally: boolean;
|
|
13173
13359
|
balloonSequence?: number | null;
|
|
13360
|
+
referenceIndex?: number | null;
|
|
13174
13361
|
balloonQuantity?: number | null;
|
|
13362
|
+
referenceQuantity?: number | null;
|
|
13175
13363
|
plusTolerance?: string | null;
|
|
13176
13364
|
minusTolerance?: string | null;
|
|
13177
13365
|
coatingThickness?: number | null;
|
|
@@ -13415,6 +13603,7 @@ export declare class SchemaFeedbackCreatedDto implements ISchemaFeedbackCreatedD
|
|
|
13415
13603
|
versionId: number;
|
|
13416
13604
|
schemaInstanceId: string;
|
|
13417
13605
|
balloonId?: string | null;
|
|
13606
|
+
reference?: number;
|
|
13418
13607
|
feedback: string;
|
|
13419
13608
|
from: string;
|
|
13420
13609
|
created: Date;
|
|
@@ -13430,12 +13619,14 @@ export interface ISchemaFeedbackCreatedDto {
|
|
|
13430
13619
|
versionId: number;
|
|
13431
13620
|
schemaInstanceId: string;
|
|
13432
13621
|
balloonId?: string | null;
|
|
13622
|
+
reference?: number;
|
|
13433
13623
|
feedback: string;
|
|
13434
13624
|
from: string;
|
|
13435
13625
|
created: Date;
|
|
13436
13626
|
}
|
|
13437
13627
|
export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13438
13628
|
balloonId?: string | null;
|
|
13629
|
+
reference?: number;
|
|
13439
13630
|
feedback: string;
|
|
13440
13631
|
constructor(data?: ICreateMeasurementFormSchemaFeedbackRequest);
|
|
13441
13632
|
init(_data?: any): void;
|
|
@@ -13444,6 +13635,7 @@ export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICrea
|
|
|
13444
13635
|
}
|
|
13445
13636
|
export interface ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13446
13637
|
balloonId?: string | null;
|
|
13638
|
+
reference?: number;
|
|
13447
13639
|
feedback: string;
|
|
13448
13640
|
}
|
|
13449
13641
|
export declare class MeasurementFormSupplierAccessInstanceDto implements IMeasurementFormSupplierAccessInstanceDto {
|
|
@@ -13526,7 +13718,8 @@ export interface IUpdateSchemaInstanceElementsRequest {
|
|
|
13526
13718
|
}
|
|
13527
13719
|
export declare class SchemaInstanceElementDto implements ISchemaInstanceElementDto {
|
|
13528
13720
|
elementId: string;
|
|
13529
|
-
balloonId
|
|
13721
|
+
balloonId?: string | null;
|
|
13722
|
+
reference: number;
|
|
13530
13723
|
disabled: boolean;
|
|
13531
13724
|
constructor(data?: ISchemaInstanceElementDto);
|
|
13532
13725
|
init(_data?: any): void;
|
|
@@ -13535,81 +13728,10 @@ export declare class SchemaInstanceElementDto implements ISchemaInstanceElementD
|
|
|
13535
13728
|
}
|
|
13536
13729
|
export interface ISchemaInstanceElementDto {
|
|
13537
13730
|
elementId: string;
|
|
13538
|
-
balloonId
|
|
13731
|
+
balloonId?: string | null;
|
|
13732
|
+
reference: number;
|
|
13539
13733
|
disabled: boolean;
|
|
13540
13734
|
}
|
|
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
13735
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
13614
13736
|
id: string;
|
|
13615
13737
|
name: string;
|