@ignos/api-client 20250822.0.12415-alpha → 20250825.0.12417
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 +203 -232
- package/lib/ignosportal-api.js +1383 -1393
- package/package.json +1 -1
- package/src/ignosportal-api.ts +808 -846
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2038,50 +2038,6 @@ export declare class MesResourceClient extends AuthorizedApiBase implements IMes
|
|
|
2038
2038
|
listDepartments(): Promise<DepartmentDto[]>;
|
|
2039
2039
|
protected processListDepartments(response: Response): Promise<DepartmentDto[]>;
|
|
2040
2040
|
}
|
|
2041
|
-
export interface IElectricalClient {
|
|
2042
|
-
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2043
|
-
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2044
|
-
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2045
|
-
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2046
|
-
}
|
|
2047
|
-
export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
2048
|
-
private http;
|
|
2049
|
-
private baseUrl;
|
|
2050
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2051
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2052
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2053
|
-
});
|
|
2054
|
-
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2055
|
-
protected processListElectricalSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2056
|
-
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2057
|
-
protected processListElectricalDataConfigs(response: Response): Promise<ElectricalIotConfigDto[]>;
|
|
2058
|
-
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2059
|
-
protected processCreateElectricalIotConfig(response: Response): Promise<ElectricalIotConfigDto>;
|
|
2060
|
-
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2061
|
-
protected processDeleteElectricalIotConfig(response: Response): Promise<void>;
|
|
2062
|
-
}
|
|
2063
|
-
export interface IWeldingClient {
|
|
2064
|
-
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2065
|
-
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2066
|
-
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2067
|
-
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2068
|
-
}
|
|
2069
|
-
export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
2070
|
-
private http;
|
|
2071
|
-
private baseUrl;
|
|
2072
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2073
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2074
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2075
|
-
});
|
|
2076
|
-
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2077
|
-
protected processListWeldingSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2078
|
-
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2079
|
-
protected processListElectricalDataConfigs(response: Response): Promise<WeldingIotConfigDto[]>;
|
|
2080
|
-
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2081
|
-
protected processCreateWeldingIotConfig(response: Response): Promise<WeldingIotConfigDto>;
|
|
2082
|
-
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2083
|
-
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2084
|
-
}
|
|
2085
2041
|
export interface IMeasurementFormSchemasClient {
|
|
2086
2042
|
listMeasurmentFormSchemas(pageSize: number | undefined, customerId: string | null | undefined, customerName: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, partRevision: string | null | undefined, drawing: string | null | undefined, drawingRevision: string | null | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2087
2043
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -2097,6 +2053,7 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2097
2053
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
2098
2054
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
2099
2055
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2056
|
+
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2100
2057
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2101
2058
|
postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2102
2059
|
createMeasurementFormSchemaLink(schemaId: string, request: CreateMeasurementFormSchemaLinkRequest): Promise<MeasurementFormDto>;
|
|
@@ -2108,11 +2065,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2108
2065
|
/**
|
|
2109
2066
|
* @deprecated
|
|
2110
2067
|
*/
|
|
2111
|
-
getMeasurementFormSettings(): Promise<
|
|
2068
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2112
2069
|
/**
|
|
2113
2070
|
* @deprecated
|
|
2114
2071
|
*/
|
|
2115
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2072
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2116
2073
|
/**
|
|
2117
2074
|
* @deprecated
|
|
2118
2075
|
*/
|
|
@@ -2125,11 +2082,8 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2125
2082
|
createMeasurementFormMapping(request: CreateMeasurementFormMapping): Promise<MeasurementFormMappingDto>;
|
|
2126
2083
|
getMeasurementFormMapping(id: string): Promise<MeasurementFormMappingDto>;
|
|
2127
2084
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
*/
|
|
2131
|
-
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2132
|
-
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2085
|
+
setMeasurementFormMappingBalloons(id: string, request: MeasurementFormBalloonMappingRequestDto[]): Promise<MeasurementFormMappingDto>;
|
|
2086
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormMappingBalloonsRequest): Promise<MeasurementFormMappingDto>;
|
|
2133
2087
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2134
2088
|
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>;
|
|
2135
2089
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2187,6 +2141,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2187
2141
|
protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2188
2142
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
2189
2143
|
protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
2144
|
+
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
2145
|
+
protected processGetMeasurementFormImportStatus(response: Response): Promise<MeasurementFormImportStatusDto>;
|
|
2190
2146
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2191
2147
|
protected processListLinkableMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2192
2148
|
postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
|
|
@@ -2206,13 +2162,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2206
2162
|
/**
|
|
2207
2163
|
* @deprecated
|
|
2208
2164
|
*/
|
|
2209
|
-
getMeasurementFormSettings(): Promise<
|
|
2210
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2165
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2166
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2211
2167
|
/**
|
|
2212
2168
|
* @deprecated
|
|
2213
2169
|
*/
|
|
2214
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2215
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2170
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2171
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2216
2172
|
/**
|
|
2217
2173
|
* @deprecated
|
|
2218
2174
|
*/
|
|
@@ -2231,13 +2187,10 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2231
2187
|
protected processGetMeasurementFormMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2232
2188
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2233
2189
|
protected processDeleteMeasurementFormMapping(response: Response): Promise<void>;
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2190
|
+
setMeasurementFormMappingBalloons(id: string, request: MeasurementFormBalloonMappingRequestDto[]): Promise<MeasurementFormMappingDto>;
|
|
2191
|
+
protected processSetMeasurementFormMappingBalloons(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2192
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormMappingBalloonsRequest): Promise<MeasurementFormMappingDto>;
|
|
2238
2193
|
protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2239
|
-
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2240
|
-
protected processSetMeasurementFormReferencesMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2241
2194
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2242
2195
|
protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2243
2196
|
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>;
|
|
@@ -2282,8 +2235,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2282
2235
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2283
2236
|
}
|
|
2284
2237
|
export interface IMeasurementFormSettingsClient {
|
|
2285
|
-
getMeasurementFormSettings(): Promise<
|
|
2286
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2238
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2239
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2287
2240
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2288
2241
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2289
2242
|
}
|
|
@@ -2294,10 +2247,10 @@ export declare class MeasurementFormSettingsClient extends AuthorizedApiBase imp
|
|
|
2294
2247
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2295
2248
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2296
2249
|
});
|
|
2297
|
-
getMeasurementFormSettings(): Promise<
|
|
2298
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2299
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2300
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2250
|
+
getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
|
|
2251
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2252
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
|
|
2253
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
|
|
2301
2254
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2302
2255
|
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2303
2256
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
@@ -2409,6 +2362,50 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2409
2362
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2410
2363
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2411
2364
|
}
|
|
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
|
+
}
|
|
2412
2409
|
export interface ICompaniesClient {
|
|
2413
2410
|
listProductionCompanies(): Promise<ProductionCompanyDto[]>;
|
|
2414
2411
|
selectProductionCompany(request: SelectProductionCompany): Promise<ProductionCompanyDto>;
|
|
@@ -11681,78 +11678,6 @@ export interface IProductionResourceDto {
|
|
|
11681
11678
|
name?: string | null;
|
|
11682
11679
|
department?: DepartmentDto | null;
|
|
11683
11680
|
}
|
|
11684
|
-
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
11685
|
-
id: string;
|
|
11686
|
-
name: string;
|
|
11687
|
-
constructor(data?: IIotTypeSourceDto);
|
|
11688
|
-
init(_data?: any): void;
|
|
11689
|
-
static fromJS(data: any): IotTypeSourceDto;
|
|
11690
|
-
toJSON(data?: any): any;
|
|
11691
|
-
}
|
|
11692
|
-
export interface IIotTypeSourceDto {
|
|
11693
|
-
id: string;
|
|
11694
|
-
name: string;
|
|
11695
|
-
}
|
|
11696
|
-
export declare class ElectricalIotConfigDto implements IElectricalIotConfigDto {
|
|
11697
|
-
id: string;
|
|
11698
|
-
typeId: string;
|
|
11699
|
-
serialNumber?: string | null;
|
|
11700
|
-
assetId: number;
|
|
11701
|
-
assetExternalId?: string | null;
|
|
11702
|
-
phases?: number;
|
|
11703
|
-
electricalAssetId?: number;
|
|
11704
|
-
electricalAssetExternalId?: string | null;
|
|
11705
|
-
electricalTimeseriesId?: number;
|
|
11706
|
-
electricalTimeseriesExternalId?: string | null;
|
|
11707
|
-
constructor(data?: IElectricalIotConfigDto);
|
|
11708
|
-
init(_data?: any): void;
|
|
11709
|
-
static fromJS(data: any): ElectricalIotConfigDto;
|
|
11710
|
-
toJSON(data?: any): any;
|
|
11711
|
-
}
|
|
11712
|
-
export interface IElectricalIotConfigDto {
|
|
11713
|
-
id: string;
|
|
11714
|
-
typeId: string;
|
|
11715
|
-
serialNumber?: string | null;
|
|
11716
|
-
assetId: number;
|
|
11717
|
-
assetExternalId?: string | null;
|
|
11718
|
-
phases?: number;
|
|
11719
|
-
electricalAssetId?: number;
|
|
11720
|
-
electricalAssetExternalId?: string | null;
|
|
11721
|
-
electricalTimeseriesId?: number;
|
|
11722
|
-
electricalTimeseriesExternalId?: string | null;
|
|
11723
|
-
}
|
|
11724
|
-
export declare class CreateElectricalIotConfig implements ICreateElectricalIotConfig {
|
|
11725
|
-
typeId?: string | null;
|
|
11726
|
-
serialNumber?: string | null;
|
|
11727
|
-
assetId?: number | null;
|
|
11728
|
-
assetExternalId?: string | null;
|
|
11729
|
-
constructor(data?: ICreateElectricalIotConfig);
|
|
11730
|
-
init(_data?: any): void;
|
|
11731
|
-
static fromJS(data: any): CreateElectricalIotConfig;
|
|
11732
|
-
toJSON(data?: any): any;
|
|
11733
|
-
}
|
|
11734
|
-
export interface ICreateElectricalIotConfig {
|
|
11735
|
-
typeId?: string | null;
|
|
11736
|
-
serialNumber?: string | null;
|
|
11737
|
-
assetId?: number | null;
|
|
11738
|
-
assetExternalId?: string | null;
|
|
11739
|
-
}
|
|
11740
|
-
export declare class WeldingIotConfigDto implements IWeldingIotConfigDto {
|
|
11741
|
-
constructor(data?: IWeldingIotConfigDto);
|
|
11742
|
-
init(_data?: any): void;
|
|
11743
|
-
static fromJS(data: any): WeldingIotConfigDto;
|
|
11744
|
-
toJSON(data?: any): any;
|
|
11745
|
-
}
|
|
11746
|
-
export interface IWeldingIotConfigDto {
|
|
11747
|
-
}
|
|
11748
|
-
export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
11749
|
-
constructor(data?: ICreateWeldingIotConfig);
|
|
11750
|
-
init(_data?: any): void;
|
|
11751
|
-
static fromJS(data: any): CreateWeldingIotConfig;
|
|
11752
|
-
toJSON(data?: any): any;
|
|
11753
|
-
}
|
|
11754
|
-
export interface ICreateWeldingIotConfig {
|
|
11755
|
-
}
|
|
11756
11681
|
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
11757
11682
|
results: MeasurementFormListDto[];
|
|
11758
11683
|
continuationToken?: string | null;
|
|
@@ -11908,8 +11833,7 @@ export interface IMeasurementFormSchemaAttachmentDto {
|
|
|
11908
11833
|
}
|
|
11909
11834
|
export declare class MeasurementFormGroupedElementDto implements IMeasurementFormGroupedElementDto {
|
|
11910
11835
|
id: string;
|
|
11911
|
-
balloonId
|
|
11912
|
-
reference: number;
|
|
11836
|
+
balloonId: string;
|
|
11913
11837
|
imageUrl?: string | null;
|
|
11914
11838
|
thumbnailUrl?: string | null;
|
|
11915
11839
|
section?: string | null;
|
|
@@ -11936,7 +11860,6 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11936
11860
|
includeInCustomerDocumentation: boolean;
|
|
11937
11861
|
isDocumentedExternally: boolean;
|
|
11938
11862
|
balloonQuantity?: number | null;
|
|
11939
|
-
referenceQuantity?: number | null;
|
|
11940
11863
|
plusToleranceText?: string | null;
|
|
11941
11864
|
minusToleranceText?: string | null;
|
|
11942
11865
|
coatingThickness?: number | null;
|
|
@@ -11956,8 +11879,7 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11956
11879
|
}
|
|
11957
11880
|
export interface IMeasurementFormGroupedElementDto {
|
|
11958
11881
|
id: string;
|
|
11959
|
-
balloonId
|
|
11960
|
-
reference: number;
|
|
11882
|
+
balloonId: string;
|
|
11961
11883
|
imageUrl?: string | null;
|
|
11962
11884
|
thumbnailUrl?: string | null;
|
|
11963
11885
|
section?: string | null;
|
|
@@ -11984,7 +11906,6 @@ export interface IMeasurementFormGroupedElementDto {
|
|
|
11984
11906
|
includeInCustomerDocumentation: boolean;
|
|
11985
11907
|
isDocumentedExternally: boolean;
|
|
11986
11908
|
balloonQuantity?: number | null;
|
|
11987
|
-
referenceQuantity?: number | null;
|
|
11988
11909
|
plusToleranceText?: string | null;
|
|
11989
11910
|
minusToleranceText?: string | null;
|
|
11990
11911
|
coatingThickness?: number | null;
|
|
@@ -12134,8 +12055,7 @@ export interface IUpdateSchemaGroupedElementsRequest {
|
|
|
12134
12055
|
groupedElements: UpdateSchemaGroupedElementDto[];
|
|
12135
12056
|
}
|
|
12136
12057
|
export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElementDto {
|
|
12137
|
-
balloonId
|
|
12138
|
-
reference: number;
|
|
12058
|
+
balloonId: string;
|
|
12139
12059
|
frequency: MeasurementFrequency;
|
|
12140
12060
|
frequencyParameter?: number | null;
|
|
12141
12061
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12148,8 +12068,7 @@ export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroup
|
|
|
12148
12068
|
toJSON(data?: any): any;
|
|
12149
12069
|
}
|
|
12150
12070
|
export interface IUpdateSchemaGroupedElementDto {
|
|
12151
|
-
balloonId
|
|
12152
|
-
reference: number;
|
|
12071
|
+
balloonId: string;
|
|
12153
12072
|
frequency: MeasurementFrequency;
|
|
12154
12073
|
frequencyParameter?: number | null;
|
|
12155
12074
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12158,10 +12077,8 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
12158
12077
|
coatingThickness?: number | null;
|
|
12159
12078
|
}
|
|
12160
12079
|
export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|
|
12161
|
-
id
|
|
12162
|
-
balloonId
|
|
12163
|
-
oldReference: number;
|
|
12164
|
-
newReference: number;
|
|
12080
|
+
id: string;
|
|
12081
|
+
balloonId: string;
|
|
12165
12082
|
section?: string | null;
|
|
12166
12083
|
pageNumber?: number | null;
|
|
12167
12084
|
measurements?: number | null;
|
|
@@ -12185,10 +12102,8 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
12185
12102
|
toJSON(data?: any): any;
|
|
12186
12103
|
}
|
|
12187
12104
|
export interface IUpdateSchemaGroupedElementRowDto {
|
|
12188
|
-
id
|
|
12189
|
-
balloonId
|
|
12190
|
-
oldReference: number;
|
|
12191
|
-
newReference: number;
|
|
12105
|
+
id: string;
|
|
12106
|
+
balloonId: string;
|
|
12192
12107
|
section?: string | null;
|
|
12193
12108
|
pageNumber?: number | null;
|
|
12194
12109
|
measurements?: number | null;
|
|
@@ -12208,22 +12123,19 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
12208
12123
|
isDocumentedExternally: boolean;
|
|
12209
12124
|
}
|
|
12210
12125
|
export declare class DeleteSchemaGroupedElementRowsDto implements IDeleteSchemaGroupedElementRowsDto {
|
|
12211
|
-
balloonIds
|
|
12212
|
-
references?: number[];
|
|
12126
|
+
balloonIds: string[];
|
|
12213
12127
|
constructor(data?: IDeleteSchemaGroupedElementRowsDto);
|
|
12214
12128
|
init(_data?: any): void;
|
|
12215
12129
|
static fromJS(data: any): DeleteSchemaGroupedElementRowsDto;
|
|
12216
12130
|
toJSON(data?: any): any;
|
|
12217
12131
|
}
|
|
12218
12132
|
export interface IDeleteSchemaGroupedElementRowsDto {
|
|
12219
|
-
balloonIds
|
|
12220
|
-
references?: number[];
|
|
12133
|
+
balloonIds: string[];
|
|
12221
12134
|
}
|
|
12222
12135
|
export declare class UploadMeasurementImageRequest implements IUploadMeasurementImageRequest {
|
|
12223
12136
|
uploadKey: string;
|
|
12224
12137
|
filename: string;
|
|
12225
|
-
ballonId
|
|
12226
|
-
reference: number;
|
|
12138
|
+
ballonId: string;
|
|
12227
12139
|
constructor(data?: IUploadMeasurementImageRequest);
|
|
12228
12140
|
init(_data?: any): void;
|
|
12229
12141
|
static fromJS(data: any): UploadMeasurementImageRequest;
|
|
@@ -12232,8 +12144,7 @@ export declare class UploadMeasurementImageRequest implements IUploadMeasurement
|
|
|
12232
12144
|
export interface IUploadMeasurementImageRequest {
|
|
12233
12145
|
uploadKey: string;
|
|
12234
12146
|
filename: string;
|
|
12235
|
-
ballonId
|
|
12236
|
-
reference: number;
|
|
12147
|
+
ballonId: string;
|
|
12237
12148
|
}
|
|
12238
12149
|
export declare class UpdateSchemaSettingsRequest implements IUpdateSchemaSettingsRequest {
|
|
12239
12150
|
unitOfMeasure: UnitOfMeasureDto;
|
|
@@ -12273,6 +12184,22 @@ export interface IUploadRequest {
|
|
|
12273
12184
|
uploadKey: string;
|
|
12274
12185
|
filename: string;
|
|
12275
12186
|
}
|
|
12187
|
+
export declare class MeasurementFormImportStatusDto implements IMeasurementFormImportStatusDto {
|
|
12188
|
+
progress: number;
|
|
12189
|
+
totalElements: number;
|
|
12190
|
+
errorMessage: string;
|
|
12191
|
+
timestamp: Date;
|
|
12192
|
+
constructor(data?: IMeasurementFormImportStatusDto);
|
|
12193
|
+
init(_data?: any): void;
|
|
12194
|
+
static fromJS(data: any): MeasurementFormImportStatusDto;
|
|
12195
|
+
toJSON(data?: any): any;
|
|
12196
|
+
}
|
|
12197
|
+
export interface IMeasurementFormImportStatusDto {
|
|
12198
|
+
progress: number;
|
|
12199
|
+
totalElements: number;
|
|
12200
|
+
errorMessage: string;
|
|
12201
|
+
timestamp: Date;
|
|
12202
|
+
}
|
|
12276
12203
|
export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
|
|
12277
12204
|
schemaId: string;
|
|
12278
12205
|
pageSize?: number | null;
|
|
@@ -12299,7 +12226,7 @@ export declare class CreateMeasurementFormSchemaLinkRequest implements ICreateMe
|
|
|
12299
12226
|
export interface ICreateMeasurementFormSchemaLinkRequest {
|
|
12300
12227
|
linkSchemaId: string;
|
|
12301
12228
|
}
|
|
12302
|
-
export declare class
|
|
12229
|
+
export declare class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
12303
12230
|
convertInchToMm: boolean;
|
|
12304
12231
|
convertMicroInchToMicroMeter: boolean;
|
|
12305
12232
|
validateMeasuringTools: boolean;
|
|
@@ -12314,12 +12241,12 @@ export declare class InspectCompanySettingsDto implements IInspectCompanySetting
|
|
|
12314
12241
|
allowSchemaUpdates: boolean;
|
|
12315
12242
|
allowCreateInstances: boolean;
|
|
12316
12243
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
12317
|
-
constructor(data?:
|
|
12244
|
+
constructor(data?: IMeasurementFormSettingsDto);
|
|
12318
12245
|
init(_data?: any): void;
|
|
12319
|
-
static fromJS(data: any):
|
|
12246
|
+
static fromJS(data: any): MeasurementFormSettingsDto;
|
|
12320
12247
|
toJSON(data?: any): any;
|
|
12321
12248
|
}
|
|
12322
|
-
export interface
|
|
12249
|
+
export interface IMeasurementFormSettingsDto {
|
|
12323
12250
|
convertInchToMm: boolean;
|
|
12324
12251
|
convertMicroInchToMicroMeter: boolean;
|
|
12325
12252
|
validateMeasuringTools: boolean;
|
|
@@ -12411,10 +12338,8 @@ export declare class MeasurementFormMappingDto implements IMeasurementFormMappin
|
|
|
12411
12338
|
id: string;
|
|
12412
12339
|
measurementSchemaSourceId: string;
|
|
12413
12340
|
measurementSchemaTargetId: string;
|
|
12414
|
-
sourceBalloons
|
|
12415
|
-
targetBalloons
|
|
12416
|
-
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12417
|
-
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12341
|
+
sourceBalloons: MeasurementFormBalloonMappingDto[];
|
|
12342
|
+
targetBalloons: MeasurementFormBalloonMappingDto[];
|
|
12418
12343
|
constructor(data?: IMeasurementFormMappingDto);
|
|
12419
12344
|
init(_data?: any): void;
|
|
12420
12345
|
static fromJS(data: any): MeasurementFormMappingDto;
|
|
@@ -12424,23 +12349,21 @@ export interface IMeasurementFormMappingDto {
|
|
|
12424
12349
|
id: string;
|
|
12425
12350
|
measurementSchemaSourceId: string;
|
|
12426
12351
|
measurementSchemaTargetId: string;
|
|
12427
|
-
sourceBalloons
|
|
12428
|
-
targetBalloons
|
|
12429
|
-
|
|
12430
|
-
|
|
12431
|
-
|
|
12432
|
-
|
|
12433
|
-
reference: MeasurementFormGroupedElementDto;
|
|
12434
|
-
mappedReference?: number;
|
|
12352
|
+
sourceBalloons: MeasurementFormBalloonMappingDto[];
|
|
12353
|
+
targetBalloons: MeasurementFormBalloonMappingDto[];
|
|
12354
|
+
}
|
|
12355
|
+
export declare class MeasurementFormBalloonMappingDto implements IMeasurementFormBalloonMappingDto {
|
|
12356
|
+
balloon: MeasurementFormGroupedElementDto;
|
|
12357
|
+
mappedBalloonId?: string | null;
|
|
12435
12358
|
mappingScorePercent?: number | null;
|
|
12436
|
-
constructor(data?:
|
|
12359
|
+
constructor(data?: IMeasurementFormBalloonMappingDto);
|
|
12437
12360
|
init(_data?: any): void;
|
|
12438
|
-
static fromJS(data: any):
|
|
12361
|
+
static fromJS(data: any): MeasurementFormBalloonMappingDto;
|
|
12439
12362
|
toJSON(data?: any): any;
|
|
12440
12363
|
}
|
|
12441
|
-
export interface
|
|
12442
|
-
|
|
12443
|
-
|
|
12364
|
+
export interface IMeasurementFormBalloonMappingDto {
|
|
12365
|
+
balloon: MeasurementFormGroupedElementDto;
|
|
12366
|
+
mappedBalloonId?: string | null;
|
|
12444
12367
|
mappingScorePercent?: number | null;
|
|
12445
12368
|
}
|
|
12446
12369
|
export declare class CreateMeasurementFormMapping implements ICreateMeasurementFormMapping {
|
|
@@ -12455,41 +12378,35 @@ export interface ICreateMeasurementFormMapping {
|
|
|
12455
12378
|
sourceId: string;
|
|
12456
12379
|
targetId: string;
|
|
12457
12380
|
}
|
|
12458
|
-
export declare class
|
|
12459
|
-
|
|
12460
|
-
|
|
12381
|
+
export declare class MeasurementFormBalloonMappingRequestDto implements IMeasurementFormBalloonMappingRequestDto {
|
|
12382
|
+
sourceBalloonId: string;
|
|
12383
|
+
targetBalloonId: string;
|
|
12384
|
+
mappingScorePercent?: number | null;
|
|
12385
|
+
constructor(data?: IMeasurementFormBalloonMappingRequestDto);
|
|
12461
12386
|
init(_data?: any): void;
|
|
12462
|
-
static fromJS(data: any):
|
|
12387
|
+
static fromJS(data: any): MeasurementFormBalloonMappingRequestDto;
|
|
12463
12388
|
toJSON(data?: any): any;
|
|
12464
12389
|
}
|
|
12465
|
-
export interface
|
|
12466
|
-
|
|
12467
|
-
|
|
12468
|
-
export declare class MeasurementFormReferenceMappingRequestDto implements IMeasurementFormReferenceMappingRequestDto {
|
|
12469
|
-
sourceBalloonId?: string | null;
|
|
12470
|
-
targetBalloonId?: string | null;
|
|
12471
|
-
sourceReference: number;
|
|
12472
|
-
targetReference: number;
|
|
12390
|
+
export interface IMeasurementFormBalloonMappingRequestDto {
|
|
12391
|
+
sourceBalloonId: string;
|
|
12392
|
+
targetBalloonId: string;
|
|
12473
12393
|
mappingScorePercent?: number | null;
|
|
12474
|
-
|
|
12394
|
+
}
|
|
12395
|
+
export declare class SetMeasurementFormMappingBalloonsRequest implements ISetMeasurementFormMappingBalloonsRequest {
|
|
12396
|
+
mappings: MeasurementFormBalloonMappingRequestDto[];
|
|
12397
|
+
constructor(data?: ISetMeasurementFormMappingBalloonsRequest);
|
|
12475
12398
|
init(_data?: any): void;
|
|
12476
|
-
static fromJS(data: any):
|
|
12399
|
+
static fromJS(data: any): SetMeasurementFormMappingBalloonsRequest;
|
|
12477
12400
|
toJSON(data?: any): any;
|
|
12478
12401
|
}
|
|
12479
|
-
export interface
|
|
12480
|
-
|
|
12481
|
-
targetBalloonId?: string | null;
|
|
12482
|
-
sourceReference: number;
|
|
12483
|
-
targetReference: number;
|
|
12484
|
-
mappingScorePercent?: number | null;
|
|
12402
|
+
export interface ISetMeasurementFormMappingBalloonsRequest {
|
|
12403
|
+
mappings: MeasurementFormBalloonMappingRequestDto[];
|
|
12485
12404
|
}
|
|
12486
12405
|
export declare class MeasurementFormMappingSuggestionDto implements IMeasurementFormMappingSuggestionDto {
|
|
12487
12406
|
measurementSchemaSourceId: string;
|
|
12488
12407
|
measurementSchemaTargetId: string;
|
|
12489
|
-
sourceBalloons
|
|
12490
|
-
targetBalloons
|
|
12491
|
-
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12492
|
-
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12408
|
+
sourceBalloons: MeasurementFormBalloonMappingDto[];
|
|
12409
|
+
targetBalloons: MeasurementFormBalloonMappingDto[];
|
|
12493
12410
|
constructor(data?: IMeasurementFormMappingSuggestionDto);
|
|
12494
12411
|
init(_data?: any): void;
|
|
12495
12412
|
static fromJS(data: any): MeasurementFormMappingSuggestionDto;
|
|
@@ -12498,10 +12415,8 @@ export declare class MeasurementFormMappingSuggestionDto implements IMeasurement
|
|
|
12498
12415
|
export interface IMeasurementFormMappingSuggestionDto {
|
|
12499
12416
|
measurementSchemaSourceId: string;
|
|
12500
12417
|
measurementSchemaTargetId: string;
|
|
12501
|
-
sourceBalloons
|
|
12502
|
-
targetBalloons
|
|
12503
|
-
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12504
|
-
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12418
|
+
sourceBalloons: MeasurementFormBalloonMappingDto[];
|
|
12419
|
+
targetBalloons: MeasurementFormBalloonMappingDto[];
|
|
12505
12420
|
}
|
|
12506
12421
|
export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
|
|
12507
12422
|
results: MeasurementFormNeedDto[];
|
|
@@ -12724,7 +12639,6 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12724
12639
|
versionId?: number;
|
|
12725
12640
|
schemaInstanceId: string;
|
|
12726
12641
|
balloonId?: string | null;
|
|
12727
|
-
reference?: number;
|
|
12728
12642
|
feedback: string;
|
|
12729
12643
|
from: string;
|
|
12730
12644
|
created: Date;
|
|
@@ -12748,7 +12662,6 @@ export interface ISchemaFeedbackDto {
|
|
|
12748
12662
|
versionId?: number;
|
|
12749
12663
|
schemaInstanceId: string;
|
|
12750
12664
|
balloonId?: string | null;
|
|
12751
|
-
reference?: number;
|
|
12752
12665
|
feedback: string;
|
|
12753
12666
|
from: string;
|
|
12754
12667
|
created: Date;
|
|
@@ -13092,7 +13005,6 @@ export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementF
|
|
|
13092
13005
|
versionId?: number;
|
|
13093
13006
|
schemaInstanceId: string;
|
|
13094
13007
|
balloonId?: string | null;
|
|
13095
|
-
reference?: number;
|
|
13096
13008
|
feedback: string;
|
|
13097
13009
|
from: string;
|
|
13098
13010
|
created: Date;
|
|
@@ -13108,7 +13020,6 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
13108
13020
|
versionId?: number;
|
|
13109
13021
|
schemaInstanceId: string;
|
|
13110
13022
|
balloonId?: string | null;
|
|
13111
|
-
reference?: number;
|
|
13112
13023
|
feedback: string;
|
|
13113
13024
|
from: string;
|
|
13114
13025
|
created: Date;
|
|
@@ -13190,7 +13101,6 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13190
13101
|
imageUrl?: string | null;
|
|
13191
13102
|
thumbnailUrl?: string | null;
|
|
13192
13103
|
balloonId?: string | null;
|
|
13193
|
-
reference?: number;
|
|
13194
13104
|
section?: string | null;
|
|
13195
13105
|
pageNumber?: number | null;
|
|
13196
13106
|
sheetZone?: string | null;
|
|
@@ -13214,9 +13124,7 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13214
13124
|
isDocumentedExternally: boolean;
|
|
13215
13125
|
canOverrideIsDocumentedExternally: boolean;
|
|
13216
13126
|
balloonSequence?: number | null;
|
|
13217
|
-
referenceSerialNumber?: number | null;
|
|
13218
13127
|
balloonQuantity?: number | null;
|
|
13219
|
-
referenceQuantity?: number | null;
|
|
13220
13128
|
plusTolerance?: string | null;
|
|
13221
13129
|
minusTolerance?: string | null;
|
|
13222
13130
|
coatingThickness?: number | null;
|
|
@@ -13240,7 +13148,6 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13240
13148
|
imageUrl?: string | null;
|
|
13241
13149
|
thumbnailUrl?: string | null;
|
|
13242
13150
|
balloonId?: string | null;
|
|
13243
|
-
reference?: number;
|
|
13244
13151
|
section?: string | null;
|
|
13245
13152
|
pageNumber?: number | null;
|
|
13246
13153
|
sheetZone?: string | null;
|
|
@@ -13264,9 +13171,7 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13264
13171
|
isDocumentedExternally: boolean;
|
|
13265
13172
|
canOverrideIsDocumentedExternally: boolean;
|
|
13266
13173
|
balloonSequence?: number | null;
|
|
13267
|
-
referenceSerialNumber?: number | null;
|
|
13268
13174
|
balloonQuantity?: number | null;
|
|
13269
|
-
referenceQuantity?: number | null;
|
|
13270
13175
|
plusTolerance?: string | null;
|
|
13271
13176
|
minusTolerance?: string | null;
|
|
13272
13177
|
coatingThickness?: number | null;
|
|
@@ -13510,7 +13415,6 @@ export declare class SchemaFeedbackCreatedDto implements ISchemaFeedbackCreatedD
|
|
|
13510
13415
|
versionId: number;
|
|
13511
13416
|
schemaInstanceId: string;
|
|
13512
13417
|
balloonId?: string | null;
|
|
13513
|
-
reference?: number;
|
|
13514
13418
|
feedback: string;
|
|
13515
13419
|
from: string;
|
|
13516
13420
|
created: Date;
|
|
@@ -13526,14 +13430,12 @@ export interface ISchemaFeedbackCreatedDto {
|
|
|
13526
13430
|
versionId: number;
|
|
13527
13431
|
schemaInstanceId: string;
|
|
13528
13432
|
balloonId?: string | null;
|
|
13529
|
-
reference?: number;
|
|
13530
13433
|
feedback: string;
|
|
13531
13434
|
from: string;
|
|
13532
13435
|
created: Date;
|
|
13533
13436
|
}
|
|
13534
13437
|
export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13535
13438
|
balloonId?: string | null;
|
|
13536
|
-
reference?: number;
|
|
13537
13439
|
feedback: string;
|
|
13538
13440
|
constructor(data?: ICreateMeasurementFormSchemaFeedbackRequest);
|
|
13539
13441
|
init(_data?: any): void;
|
|
@@ -13542,7 +13444,6 @@ export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICrea
|
|
|
13542
13444
|
}
|
|
13543
13445
|
export interface ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13544
13446
|
balloonId?: string | null;
|
|
13545
|
-
reference?: number;
|
|
13546
13447
|
feedback: string;
|
|
13547
13448
|
}
|
|
13548
13449
|
export declare class MeasurementFormSupplierAccessInstanceDto implements IMeasurementFormSupplierAccessInstanceDto {
|
|
@@ -13625,8 +13526,7 @@ export interface IUpdateSchemaInstanceElementsRequest {
|
|
|
13625
13526
|
}
|
|
13626
13527
|
export declare class SchemaInstanceElementDto implements ISchemaInstanceElementDto {
|
|
13627
13528
|
elementId: string;
|
|
13628
|
-
balloonId
|
|
13629
|
-
reference: number;
|
|
13529
|
+
balloonId: string;
|
|
13630
13530
|
disabled: boolean;
|
|
13631
13531
|
constructor(data?: ISchemaInstanceElementDto);
|
|
13632
13532
|
init(_data?: any): void;
|
|
@@ -13635,10 +13535,81 @@ export declare class SchemaInstanceElementDto implements ISchemaInstanceElementD
|
|
|
13635
13535
|
}
|
|
13636
13536
|
export interface ISchemaInstanceElementDto {
|
|
13637
13537
|
elementId: string;
|
|
13638
|
-
balloonId
|
|
13639
|
-
reference: number;
|
|
13538
|
+
balloonId: string;
|
|
13640
13539
|
disabled: boolean;
|
|
13641
13540
|
}
|
|
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
|
+
}
|
|
13642
13613
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
13643
13614
|
id: string;
|
|
13644
13615
|
name: string;
|