@ignos/api-client 20250814.0.12365 → 20250822.0.12415-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 +234 -184
- package/lib/ignosportal-api.js +1460 -1376
- package/package.json +1 -1
- package/src/ignosportal-api.ts +850 -719
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2038,6 +2038,50 @@ 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
|
+
}
|
|
2041
2085
|
export interface IMeasurementFormSchemasClient {
|
|
2042
2086
|
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
2087
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -2064,11 +2108,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2064
2108
|
/**
|
|
2065
2109
|
* @deprecated
|
|
2066
2110
|
*/
|
|
2067
|
-
getMeasurementFormSettings(): Promise<
|
|
2111
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2068
2112
|
/**
|
|
2069
2113
|
* @deprecated
|
|
2070
2114
|
*/
|
|
2071
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2115
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2072
2116
|
/**
|
|
2073
2117
|
* @deprecated
|
|
2074
2118
|
*/
|
|
@@ -2081,8 +2125,11 @@ export interface IMeasurementFormSchemasClient {
|
|
|
2081
2125
|
createMeasurementFormMapping(request: CreateMeasurementFormMapping): Promise<MeasurementFormMappingDto>;
|
|
2082
2126
|
getMeasurementFormMapping(id: string): Promise<MeasurementFormMappingDto>;
|
|
2083
2127
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2084
|
-
|
|
2085
|
-
|
|
2128
|
+
/**
|
|
2129
|
+
* @deprecated
|
|
2130
|
+
*/
|
|
2131
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2132
|
+
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2086
2133
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2087
2134
|
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>;
|
|
2088
2135
|
postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
|
|
@@ -2159,13 +2206,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2159
2206
|
/**
|
|
2160
2207
|
* @deprecated
|
|
2161
2208
|
*/
|
|
2162
|
-
getMeasurementFormSettings(): Promise<
|
|
2163
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2209
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2210
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2164
2211
|
/**
|
|
2165
2212
|
* @deprecated
|
|
2166
2213
|
*/
|
|
2167
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2168
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2214
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2215
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2169
2216
|
/**
|
|
2170
2217
|
* @deprecated
|
|
2171
2218
|
*/
|
|
@@ -2184,10 +2231,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2184
2231
|
protected processGetMeasurementFormMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2185
2232
|
deleteMeasurementFormMapping(id: string): Promise<void>;
|
|
2186
2233
|
protected processDeleteMeasurementFormMapping(response: Response): Promise<void>;
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2234
|
+
/**
|
|
2235
|
+
* @deprecated
|
|
2236
|
+
*/
|
|
2237
|
+
setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2190
2238
|
protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2239
|
+
setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
|
|
2240
|
+
protected processSetMeasurementFormReferencesMapping(response: Response): Promise<MeasurementFormMappingDto>;
|
|
2191
2241
|
getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2192
2242
|
protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
|
|
2193
2243
|
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>;
|
|
@@ -2232,8 +2282,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
|
|
|
2232
2282
|
protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
|
|
2233
2283
|
}
|
|
2234
2284
|
export interface IMeasurementFormSettingsClient {
|
|
2235
|
-
getMeasurementFormSettings(): Promise<
|
|
2236
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2285
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2286
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2237
2287
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2238
2288
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2239
2289
|
}
|
|
@@ -2244,10 +2294,10 @@ export declare class MeasurementFormSettingsClient extends AuthorizedApiBase imp
|
|
|
2244
2294
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2245
2295
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2246
2296
|
});
|
|
2247
|
-
getMeasurementFormSettings(): Promise<
|
|
2248
|
-
protected processGetMeasurementFormSettings(response: Response): Promise<
|
|
2249
|
-
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<
|
|
2250
|
-
protected processUpdateMeasurementFormSettings(response: Response): Promise<
|
|
2297
|
+
getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
|
|
2298
|
+
protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2299
|
+
updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
|
|
2300
|
+
protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
|
|
2251
2301
|
getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2252
2302
|
protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
|
|
2253
2303
|
updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
|
|
@@ -2359,50 +2409,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2359
2409
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
2360
2410
|
protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
|
|
2361
2411
|
}
|
|
2362
|
-
export interface IElectricalClient {
|
|
2363
|
-
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2364
|
-
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2365
|
-
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2366
|
-
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2367
|
-
}
|
|
2368
|
-
export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
|
|
2369
|
-
private http;
|
|
2370
|
-
private baseUrl;
|
|
2371
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2372
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2373
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2374
|
-
});
|
|
2375
|
-
listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2376
|
-
protected processListElectricalSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2377
|
-
listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
|
|
2378
|
-
protected processListElectricalDataConfigs(response: Response): Promise<ElectricalIotConfigDto[]>;
|
|
2379
|
-
createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
|
|
2380
|
-
protected processCreateElectricalIotConfig(response: Response): Promise<ElectricalIotConfigDto>;
|
|
2381
|
-
deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
|
|
2382
|
-
protected processDeleteElectricalIotConfig(response: Response): Promise<void>;
|
|
2383
|
-
}
|
|
2384
|
-
export interface IWeldingClient {
|
|
2385
|
-
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2386
|
-
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2387
|
-
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2388
|
-
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2389
|
-
}
|
|
2390
|
-
export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
2391
|
-
private http;
|
|
2392
|
-
private baseUrl;
|
|
2393
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
2394
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2395
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2396
|
-
});
|
|
2397
|
-
listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
|
|
2398
|
-
protected processListWeldingSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
|
|
2399
|
-
listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
|
|
2400
|
-
protected processListElectricalDataConfigs(response: Response): Promise<WeldingIotConfigDto[]>;
|
|
2401
|
-
createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
|
|
2402
|
-
protected processCreateWeldingIotConfig(response: Response): Promise<WeldingIotConfigDto>;
|
|
2403
|
-
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2404
|
-
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2405
|
-
}
|
|
2406
2412
|
export interface ICompaniesClient {
|
|
2407
2413
|
listProductionCompanies(): Promise<ProductionCompanyDto[]>;
|
|
2408
2414
|
selectProductionCompany(request: SelectProductionCompany): Promise<ProductionCompanyDto>;
|
|
@@ -5935,6 +5941,7 @@ export declare class CalendarDayDto implements ICalendarDayDto {
|
|
|
5935
5941
|
date?: Date;
|
|
5936
5942
|
dayCapacity?: CalendarDayCapacityDto;
|
|
5937
5943
|
capacityHours?: number;
|
|
5944
|
+
companyId?: string | null;
|
|
5938
5945
|
constructor(data?: ICalendarDayDto);
|
|
5939
5946
|
init(_data?: any): void;
|
|
5940
5947
|
static fromJS(data: any): CalendarDayDto;
|
|
@@ -5944,6 +5951,7 @@ export interface ICalendarDayDto {
|
|
|
5944
5951
|
date?: Date;
|
|
5945
5952
|
dayCapacity?: CalendarDayCapacityDto;
|
|
5946
5953
|
capacityHours?: number;
|
|
5954
|
+
companyId?: string | null;
|
|
5947
5955
|
}
|
|
5948
5956
|
export type CalendarDayCapacityDto = "WorkingDay" | "HalfDay" | "Holiday";
|
|
5949
5957
|
export declare class CalendarCapacityDto implements ICalendarCapacityDto {
|
|
@@ -11673,6 +11681,78 @@ export interface IProductionResourceDto {
|
|
|
11673
11681
|
name?: string | null;
|
|
11674
11682
|
department?: DepartmentDto | null;
|
|
11675
11683
|
}
|
|
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
|
+
}
|
|
11676
11756
|
export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
|
|
11677
11757
|
results: MeasurementFormListDto[];
|
|
11678
11758
|
continuationToken?: string | null;
|
|
@@ -11828,7 +11908,8 @@ export interface IMeasurementFormSchemaAttachmentDto {
|
|
|
11828
11908
|
}
|
|
11829
11909
|
export declare class MeasurementFormGroupedElementDto implements IMeasurementFormGroupedElementDto {
|
|
11830
11910
|
id: string;
|
|
11831
|
-
balloonId
|
|
11911
|
+
balloonId?: string | null;
|
|
11912
|
+
reference: number;
|
|
11832
11913
|
imageUrl?: string | null;
|
|
11833
11914
|
thumbnailUrl?: string | null;
|
|
11834
11915
|
section?: string | null;
|
|
@@ -11855,6 +11936,7 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11855
11936
|
includeInCustomerDocumentation: boolean;
|
|
11856
11937
|
isDocumentedExternally: boolean;
|
|
11857
11938
|
balloonQuantity?: number | null;
|
|
11939
|
+
referenceQuantity?: number | null;
|
|
11858
11940
|
plusToleranceText?: string | null;
|
|
11859
11941
|
minusToleranceText?: string | null;
|
|
11860
11942
|
coatingThickness?: number | null;
|
|
@@ -11874,7 +11956,8 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11874
11956
|
}
|
|
11875
11957
|
export interface IMeasurementFormGroupedElementDto {
|
|
11876
11958
|
id: string;
|
|
11877
|
-
balloonId
|
|
11959
|
+
balloonId?: string | null;
|
|
11960
|
+
reference: number;
|
|
11878
11961
|
imageUrl?: string | null;
|
|
11879
11962
|
thumbnailUrl?: string | null;
|
|
11880
11963
|
section?: string | null;
|
|
@@ -11901,6 +11984,7 @@ export interface IMeasurementFormGroupedElementDto {
|
|
|
11901
11984
|
includeInCustomerDocumentation: boolean;
|
|
11902
11985
|
isDocumentedExternally: boolean;
|
|
11903
11986
|
balloonQuantity?: number | null;
|
|
11987
|
+
referenceQuantity?: number | null;
|
|
11904
11988
|
plusToleranceText?: string | null;
|
|
11905
11989
|
minusToleranceText?: string | null;
|
|
11906
11990
|
coatingThickness?: number | null;
|
|
@@ -12050,7 +12134,8 @@ export interface IUpdateSchemaGroupedElementsRequest {
|
|
|
12050
12134
|
groupedElements: UpdateSchemaGroupedElementDto[];
|
|
12051
12135
|
}
|
|
12052
12136
|
export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElementDto {
|
|
12053
|
-
balloonId
|
|
12137
|
+
balloonId?: string | null;
|
|
12138
|
+
reference: number;
|
|
12054
12139
|
frequency: MeasurementFrequency;
|
|
12055
12140
|
frequencyParameter?: number | null;
|
|
12056
12141
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12063,7 +12148,8 @@ export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroup
|
|
|
12063
12148
|
toJSON(data?: any): any;
|
|
12064
12149
|
}
|
|
12065
12150
|
export interface IUpdateSchemaGroupedElementDto {
|
|
12066
|
-
balloonId
|
|
12151
|
+
balloonId?: string | null;
|
|
12152
|
+
reference: number;
|
|
12067
12153
|
frequency: MeasurementFrequency;
|
|
12068
12154
|
frequencyParameter?: number | null;
|
|
12069
12155
|
includeInCustomerDocumentation: boolean;
|
|
@@ -12072,8 +12158,10 @@ export interface IUpdateSchemaGroupedElementDto {
|
|
|
12072
12158
|
coatingThickness?: number | null;
|
|
12073
12159
|
}
|
|
12074
12160
|
export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
|
|
12075
|
-
id
|
|
12076
|
-
balloonId
|
|
12161
|
+
id?: string;
|
|
12162
|
+
balloonId?: string;
|
|
12163
|
+
oldReference: number;
|
|
12164
|
+
newReference: number;
|
|
12077
12165
|
section?: string | null;
|
|
12078
12166
|
pageNumber?: number | null;
|
|
12079
12167
|
measurements?: number | null;
|
|
@@ -12097,8 +12185,10 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
12097
12185
|
toJSON(data?: any): any;
|
|
12098
12186
|
}
|
|
12099
12187
|
export interface IUpdateSchemaGroupedElementRowDto {
|
|
12100
|
-
id
|
|
12101
|
-
balloonId
|
|
12188
|
+
id?: string;
|
|
12189
|
+
balloonId?: string;
|
|
12190
|
+
oldReference: number;
|
|
12191
|
+
newReference: number;
|
|
12102
12192
|
section?: string | null;
|
|
12103
12193
|
pageNumber?: number | null;
|
|
12104
12194
|
measurements?: number | null;
|
|
@@ -12118,19 +12208,22 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
12118
12208
|
isDocumentedExternally: boolean;
|
|
12119
12209
|
}
|
|
12120
12210
|
export declare class DeleteSchemaGroupedElementRowsDto implements IDeleteSchemaGroupedElementRowsDto {
|
|
12121
|
-
balloonIds
|
|
12211
|
+
balloonIds?: string[];
|
|
12212
|
+
references?: number[];
|
|
12122
12213
|
constructor(data?: IDeleteSchemaGroupedElementRowsDto);
|
|
12123
12214
|
init(_data?: any): void;
|
|
12124
12215
|
static fromJS(data: any): DeleteSchemaGroupedElementRowsDto;
|
|
12125
12216
|
toJSON(data?: any): any;
|
|
12126
12217
|
}
|
|
12127
12218
|
export interface IDeleteSchemaGroupedElementRowsDto {
|
|
12128
|
-
balloonIds
|
|
12219
|
+
balloonIds?: string[];
|
|
12220
|
+
references?: number[];
|
|
12129
12221
|
}
|
|
12130
12222
|
export declare class UploadMeasurementImageRequest implements IUploadMeasurementImageRequest {
|
|
12131
12223
|
uploadKey: string;
|
|
12132
12224
|
filename: string;
|
|
12133
|
-
ballonId
|
|
12225
|
+
ballonId?: string;
|
|
12226
|
+
reference: number;
|
|
12134
12227
|
constructor(data?: IUploadMeasurementImageRequest);
|
|
12135
12228
|
init(_data?: any): void;
|
|
12136
12229
|
static fromJS(data: any): UploadMeasurementImageRequest;
|
|
@@ -12139,7 +12232,8 @@ export declare class UploadMeasurementImageRequest implements IUploadMeasurement
|
|
|
12139
12232
|
export interface IUploadMeasurementImageRequest {
|
|
12140
12233
|
uploadKey: string;
|
|
12141
12234
|
filename: string;
|
|
12142
|
-
ballonId
|
|
12235
|
+
ballonId?: string;
|
|
12236
|
+
reference: number;
|
|
12143
12237
|
}
|
|
12144
12238
|
export declare class UpdateSchemaSettingsRequest implements IUpdateSchemaSettingsRequest {
|
|
12145
12239
|
unitOfMeasure: UnitOfMeasureDto;
|
|
@@ -12205,7 +12299,7 @@ export declare class CreateMeasurementFormSchemaLinkRequest implements ICreateMe
|
|
|
12205
12299
|
export interface ICreateMeasurementFormSchemaLinkRequest {
|
|
12206
12300
|
linkSchemaId: string;
|
|
12207
12301
|
}
|
|
12208
|
-
export declare class
|
|
12302
|
+
export declare class InspectCompanySettingsDto implements IInspectCompanySettingsDto {
|
|
12209
12303
|
convertInchToMm: boolean;
|
|
12210
12304
|
convertMicroInchToMicroMeter: boolean;
|
|
12211
12305
|
validateMeasuringTools: boolean;
|
|
@@ -12220,12 +12314,12 @@ export declare class MeasurementFormSettingsDto implements IMeasurementFormSetti
|
|
|
12220
12314
|
allowSchemaUpdates: boolean;
|
|
12221
12315
|
allowCreateInstances: boolean;
|
|
12222
12316
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
12223
|
-
constructor(data?:
|
|
12317
|
+
constructor(data?: IInspectCompanySettingsDto);
|
|
12224
12318
|
init(_data?: any): void;
|
|
12225
|
-
static fromJS(data: any):
|
|
12319
|
+
static fromJS(data: any): InspectCompanySettingsDto;
|
|
12226
12320
|
toJSON(data?: any): any;
|
|
12227
12321
|
}
|
|
12228
|
-
export interface
|
|
12322
|
+
export interface IInspectCompanySettingsDto {
|
|
12229
12323
|
convertInchToMm: boolean;
|
|
12230
12324
|
convertMicroInchToMicroMeter: boolean;
|
|
12231
12325
|
validateMeasuringTools: boolean;
|
|
@@ -12317,8 +12411,10 @@ export declare class MeasurementFormMappingDto implements IMeasurementFormMappin
|
|
|
12317
12411
|
id: string;
|
|
12318
12412
|
measurementSchemaSourceId: string;
|
|
12319
12413
|
measurementSchemaTargetId: string;
|
|
12320
|
-
sourceBalloons
|
|
12321
|
-
targetBalloons
|
|
12414
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12415
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12416
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12417
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12322
12418
|
constructor(data?: IMeasurementFormMappingDto);
|
|
12323
12419
|
init(_data?: any): void;
|
|
12324
12420
|
static fromJS(data: any): MeasurementFormMappingDto;
|
|
@@ -12328,21 +12424,23 @@ export interface IMeasurementFormMappingDto {
|
|
|
12328
12424
|
id: string;
|
|
12329
12425
|
measurementSchemaSourceId: string;
|
|
12330
12426
|
measurementSchemaTargetId: string;
|
|
12331
|
-
sourceBalloons
|
|
12332
|
-
targetBalloons
|
|
12333
|
-
|
|
12334
|
-
|
|
12335
|
-
|
|
12336
|
-
|
|
12427
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12428
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12429
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12430
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12431
|
+
}
|
|
12432
|
+
export declare class MeasurementFormReferenceMappingDto implements IMeasurementFormReferenceMappingDto {
|
|
12433
|
+
reference: MeasurementFormGroupedElementDto;
|
|
12434
|
+
mappedReference?: number;
|
|
12337
12435
|
mappingScorePercent?: number | null;
|
|
12338
|
-
constructor(data?:
|
|
12436
|
+
constructor(data?: IMeasurementFormReferenceMappingDto);
|
|
12339
12437
|
init(_data?: any): void;
|
|
12340
|
-
static fromJS(data: any):
|
|
12438
|
+
static fromJS(data: any): MeasurementFormReferenceMappingDto;
|
|
12341
12439
|
toJSON(data?: any): any;
|
|
12342
12440
|
}
|
|
12343
|
-
export interface
|
|
12344
|
-
|
|
12345
|
-
|
|
12441
|
+
export interface IMeasurementFormReferenceMappingDto {
|
|
12442
|
+
reference: MeasurementFormGroupedElementDto;
|
|
12443
|
+
mappedReference?: number;
|
|
12346
12444
|
mappingScorePercent?: number | null;
|
|
12347
12445
|
}
|
|
12348
12446
|
export declare class CreateMeasurementFormMapping implements ICreateMeasurementFormMapping {
|
|
@@ -12357,35 +12455,41 @@ export interface ICreateMeasurementFormMapping {
|
|
|
12357
12455
|
sourceId: string;
|
|
12358
12456
|
targetId: string;
|
|
12359
12457
|
}
|
|
12360
|
-
export declare class
|
|
12361
|
-
|
|
12362
|
-
|
|
12363
|
-
mappingScorePercent?: number | null;
|
|
12364
|
-
constructor(data?: IMeasurementFormBalloonMappingRequestDto);
|
|
12458
|
+
export declare class SetMeasurementFormReferencesMappingRequest implements ISetMeasurementFormReferencesMappingRequest {
|
|
12459
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
12460
|
+
constructor(data?: ISetMeasurementFormReferencesMappingRequest);
|
|
12365
12461
|
init(_data?: any): void;
|
|
12366
|
-
static fromJS(data: any):
|
|
12462
|
+
static fromJS(data: any): SetMeasurementFormReferencesMappingRequest;
|
|
12367
12463
|
toJSON(data?: any): any;
|
|
12368
12464
|
}
|
|
12369
|
-
export interface
|
|
12370
|
-
|
|
12371
|
-
targetBalloonId: string;
|
|
12372
|
-
mappingScorePercent?: number | null;
|
|
12465
|
+
export interface ISetMeasurementFormReferencesMappingRequest {
|
|
12466
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
12373
12467
|
}
|
|
12374
|
-
export declare class
|
|
12375
|
-
|
|
12376
|
-
|
|
12468
|
+
export declare class MeasurementFormReferenceMappingRequestDto implements IMeasurementFormReferenceMappingRequestDto {
|
|
12469
|
+
sourceBalloonId?: string | null;
|
|
12470
|
+
targetBalloonId?: string | null;
|
|
12471
|
+
sourceReference: number;
|
|
12472
|
+
targetReference: number;
|
|
12473
|
+
mappingScorePercent?: number | null;
|
|
12474
|
+
constructor(data?: IMeasurementFormReferenceMappingRequestDto);
|
|
12377
12475
|
init(_data?: any): void;
|
|
12378
|
-
static fromJS(data: any):
|
|
12476
|
+
static fromJS(data: any): MeasurementFormReferenceMappingRequestDto;
|
|
12379
12477
|
toJSON(data?: any): any;
|
|
12380
12478
|
}
|
|
12381
|
-
export interface
|
|
12382
|
-
|
|
12479
|
+
export interface IMeasurementFormReferenceMappingRequestDto {
|
|
12480
|
+
sourceBalloonId?: string | null;
|
|
12481
|
+
targetBalloonId?: string | null;
|
|
12482
|
+
sourceReference: number;
|
|
12483
|
+
targetReference: number;
|
|
12484
|
+
mappingScorePercent?: number | null;
|
|
12383
12485
|
}
|
|
12384
12486
|
export declare class MeasurementFormMappingSuggestionDto implements IMeasurementFormMappingSuggestionDto {
|
|
12385
12487
|
measurementSchemaSourceId: string;
|
|
12386
12488
|
measurementSchemaTargetId: string;
|
|
12387
|
-
sourceBalloons
|
|
12388
|
-
targetBalloons
|
|
12489
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12490
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12491
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12492
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12389
12493
|
constructor(data?: IMeasurementFormMappingSuggestionDto);
|
|
12390
12494
|
init(_data?: any): void;
|
|
12391
12495
|
static fromJS(data: any): MeasurementFormMappingSuggestionDto;
|
|
@@ -12394,8 +12498,10 @@ export declare class MeasurementFormMappingSuggestionDto implements IMeasurement
|
|
|
12394
12498
|
export interface IMeasurementFormMappingSuggestionDto {
|
|
12395
12499
|
measurementSchemaSourceId: string;
|
|
12396
12500
|
measurementSchemaTargetId: string;
|
|
12397
|
-
sourceBalloons
|
|
12398
|
-
targetBalloons
|
|
12501
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12502
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
12503
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
12504
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
12399
12505
|
}
|
|
12400
12506
|
export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
|
|
12401
12507
|
results: MeasurementFormNeedDto[];
|
|
@@ -12618,6 +12724,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
|
|
|
12618
12724
|
versionId?: number;
|
|
12619
12725
|
schemaInstanceId: string;
|
|
12620
12726
|
balloonId?: string | null;
|
|
12727
|
+
reference?: number;
|
|
12621
12728
|
feedback: string;
|
|
12622
12729
|
from: string;
|
|
12623
12730
|
created: Date;
|
|
@@ -12641,6 +12748,7 @@ export interface ISchemaFeedbackDto {
|
|
|
12641
12748
|
versionId?: number;
|
|
12642
12749
|
schemaInstanceId: string;
|
|
12643
12750
|
balloonId?: string | null;
|
|
12751
|
+
reference?: number;
|
|
12644
12752
|
feedback: string;
|
|
12645
12753
|
from: string;
|
|
12646
12754
|
created: Date;
|
|
@@ -12984,6 +13092,7 @@ export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementF
|
|
|
12984
13092
|
versionId?: number;
|
|
12985
13093
|
schemaInstanceId: string;
|
|
12986
13094
|
balloonId?: string | null;
|
|
13095
|
+
reference?: number;
|
|
12987
13096
|
feedback: string;
|
|
12988
13097
|
from: string;
|
|
12989
13098
|
created: Date;
|
|
@@ -12999,6 +13108,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
12999
13108
|
versionId?: number;
|
|
13000
13109
|
schemaInstanceId: string;
|
|
13001
13110
|
balloonId?: string | null;
|
|
13111
|
+
reference?: number;
|
|
13002
13112
|
feedback: string;
|
|
13003
13113
|
from: string;
|
|
13004
13114
|
created: Date;
|
|
@@ -13080,6 +13190,7 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13080
13190
|
imageUrl?: string | null;
|
|
13081
13191
|
thumbnailUrl?: string | null;
|
|
13082
13192
|
balloonId?: string | null;
|
|
13193
|
+
reference?: number;
|
|
13083
13194
|
section?: string | null;
|
|
13084
13195
|
pageNumber?: number | null;
|
|
13085
13196
|
sheetZone?: string | null;
|
|
@@ -13103,7 +13214,9 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
|
|
|
13103
13214
|
isDocumentedExternally: boolean;
|
|
13104
13215
|
canOverrideIsDocumentedExternally: boolean;
|
|
13105
13216
|
balloonSequence?: number | null;
|
|
13217
|
+
referenceSerialNumber?: number | null;
|
|
13106
13218
|
balloonQuantity?: number | null;
|
|
13219
|
+
referenceQuantity?: number | null;
|
|
13107
13220
|
plusTolerance?: string | null;
|
|
13108
13221
|
minusTolerance?: string | null;
|
|
13109
13222
|
coatingThickness?: number | null;
|
|
@@ -13127,6 +13240,7 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13127
13240
|
imageUrl?: string | null;
|
|
13128
13241
|
thumbnailUrl?: string | null;
|
|
13129
13242
|
balloonId?: string | null;
|
|
13243
|
+
reference?: number;
|
|
13130
13244
|
section?: string | null;
|
|
13131
13245
|
pageNumber?: number | null;
|
|
13132
13246
|
sheetZone?: string | null;
|
|
@@ -13150,7 +13264,9 @@ export interface IMeasurementFormInstanceElementDto {
|
|
|
13150
13264
|
isDocumentedExternally: boolean;
|
|
13151
13265
|
canOverrideIsDocumentedExternally: boolean;
|
|
13152
13266
|
balloonSequence?: number | null;
|
|
13267
|
+
referenceSerialNumber?: number | null;
|
|
13153
13268
|
balloonQuantity?: number | null;
|
|
13269
|
+
referenceQuantity?: number | null;
|
|
13154
13270
|
plusTolerance?: string | null;
|
|
13155
13271
|
minusTolerance?: string | null;
|
|
13156
13272
|
coatingThickness?: number | null;
|
|
@@ -13394,6 +13510,7 @@ export declare class SchemaFeedbackCreatedDto implements ISchemaFeedbackCreatedD
|
|
|
13394
13510
|
versionId: number;
|
|
13395
13511
|
schemaInstanceId: string;
|
|
13396
13512
|
balloonId?: string | null;
|
|
13513
|
+
reference?: number;
|
|
13397
13514
|
feedback: string;
|
|
13398
13515
|
from: string;
|
|
13399
13516
|
created: Date;
|
|
@@ -13409,12 +13526,14 @@ export interface ISchemaFeedbackCreatedDto {
|
|
|
13409
13526
|
versionId: number;
|
|
13410
13527
|
schemaInstanceId: string;
|
|
13411
13528
|
balloonId?: string | null;
|
|
13529
|
+
reference?: number;
|
|
13412
13530
|
feedback: string;
|
|
13413
13531
|
from: string;
|
|
13414
13532
|
created: Date;
|
|
13415
13533
|
}
|
|
13416
13534
|
export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13417
13535
|
balloonId?: string | null;
|
|
13536
|
+
reference?: number;
|
|
13418
13537
|
feedback: string;
|
|
13419
13538
|
constructor(data?: ICreateMeasurementFormSchemaFeedbackRequest);
|
|
13420
13539
|
init(_data?: any): void;
|
|
@@ -13423,6 +13542,7 @@ export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICrea
|
|
|
13423
13542
|
}
|
|
13424
13543
|
export interface ICreateMeasurementFormSchemaFeedbackRequest {
|
|
13425
13544
|
balloonId?: string | null;
|
|
13545
|
+
reference?: number;
|
|
13426
13546
|
feedback: string;
|
|
13427
13547
|
}
|
|
13428
13548
|
export declare class MeasurementFormSupplierAccessInstanceDto implements IMeasurementFormSupplierAccessInstanceDto {
|
|
@@ -13505,7 +13625,8 @@ export interface IUpdateSchemaInstanceElementsRequest {
|
|
|
13505
13625
|
}
|
|
13506
13626
|
export declare class SchemaInstanceElementDto implements ISchemaInstanceElementDto {
|
|
13507
13627
|
elementId: string;
|
|
13508
|
-
balloonId
|
|
13628
|
+
balloonId?: string | null;
|
|
13629
|
+
reference: number;
|
|
13509
13630
|
disabled: boolean;
|
|
13510
13631
|
constructor(data?: ISchemaInstanceElementDto);
|
|
13511
13632
|
init(_data?: any): void;
|
|
@@ -13514,81 +13635,10 @@ export declare class SchemaInstanceElementDto implements ISchemaInstanceElementD
|
|
|
13514
13635
|
}
|
|
13515
13636
|
export interface ISchemaInstanceElementDto {
|
|
13516
13637
|
elementId: string;
|
|
13517
|
-
balloonId
|
|
13638
|
+
balloonId?: string | null;
|
|
13639
|
+
reference: number;
|
|
13518
13640
|
disabled: boolean;
|
|
13519
13641
|
}
|
|
13520
|
-
export declare class IotTypeSourceDto implements IIotTypeSourceDto {
|
|
13521
|
-
id: string;
|
|
13522
|
-
name: string;
|
|
13523
|
-
constructor(data?: IIotTypeSourceDto);
|
|
13524
|
-
init(_data?: any): void;
|
|
13525
|
-
static fromJS(data: any): IotTypeSourceDto;
|
|
13526
|
-
toJSON(data?: any): any;
|
|
13527
|
-
}
|
|
13528
|
-
export interface IIotTypeSourceDto {
|
|
13529
|
-
id: string;
|
|
13530
|
-
name: string;
|
|
13531
|
-
}
|
|
13532
|
-
export declare class ElectricalIotConfigDto implements IElectricalIotConfigDto {
|
|
13533
|
-
id: string;
|
|
13534
|
-
typeId: string;
|
|
13535
|
-
serialNumber?: string | null;
|
|
13536
|
-
assetId: number;
|
|
13537
|
-
assetExternalId?: string | null;
|
|
13538
|
-
phases?: number;
|
|
13539
|
-
electricalAssetId?: number;
|
|
13540
|
-
electricalAssetExternalId?: string | null;
|
|
13541
|
-
electricalTimeseriesId?: number;
|
|
13542
|
-
electricalTimeseriesExternalId?: string | null;
|
|
13543
|
-
constructor(data?: IElectricalIotConfigDto);
|
|
13544
|
-
init(_data?: any): void;
|
|
13545
|
-
static fromJS(data: any): ElectricalIotConfigDto;
|
|
13546
|
-
toJSON(data?: any): any;
|
|
13547
|
-
}
|
|
13548
|
-
export interface IElectricalIotConfigDto {
|
|
13549
|
-
id: string;
|
|
13550
|
-
typeId: string;
|
|
13551
|
-
serialNumber?: string | null;
|
|
13552
|
-
assetId: number;
|
|
13553
|
-
assetExternalId?: string | null;
|
|
13554
|
-
phases?: number;
|
|
13555
|
-
electricalAssetId?: number;
|
|
13556
|
-
electricalAssetExternalId?: string | null;
|
|
13557
|
-
electricalTimeseriesId?: number;
|
|
13558
|
-
electricalTimeseriesExternalId?: string | null;
|
|
13559
|
-
}
|
|
13560
|
-
export declare class CreateElectricalIotConfig implements ICreateElectricalIotConfig {
|
|
13561
|
-
typeId?: string | null;
|
|
13562
|
-
serialNumber?: string | null;
|
|
13563
|
-
assetId?: number | null;
|
|
13564
|
-
assetExternalId?: string | null;
|
|
13565
|
-
constructor(data?: ICreateElectricalIotConfig);
|
|
13566
|
-
init(_data?: any): void;
|
|
13567
|
-
static fromJS(data: any): CreateElectricalIotConfig;
|
|
13568
|
-
toJSON(data?: any): any;
|
|
13569
|
-
}
|
|
13570
|
-
export interface ICreateElectricalIotConfig {
|
|
13571
|
-
typeId?: string | null;
|
|
13572
|
-
serialNumber?: string | null;
|
|
13573
|
-
assetId?: number | null;
|
|
13574
|
-
assetExternalId?: string | null;
|
|
13575
|
-
}
|
|
13576
|
-
export declare class WeldingIotConfigDto implements IWeldingIotConfigDto {
|
|
13577
|
-
constructor(data?: IWeldingIotConfigDto);
|
|
13578
|
-
init(_data?: any): void;
|
|
13579
|
-
static fromJS(data: any): WeldingIotConfigDto;
|
|
13580
|
-
toJSON(data?: any): any;
|
|
13581
|
-
}
|
|
13582
|
-
export interface IWeldingIotConfigDto {
|
|
13583
|
-
}
|
|
13584
|
-
export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
|
|
13585
|
-
constructor(data?: ICreateWeldingIotConfig);
|
|
13586
|
-
init(_data?: any): void;
|
|
13587
|
-
static fromJS(data: any): CreateWeldingIotConfig;
|
|
13588
|
-
toJSON(data?: any): any;
|
|
13589
|
-
}
|
|
13590
|
-
export interface ICreateWeldingIotConfig {
|
|
13591
|
-
}
|
|
13592
13642
|
export declare class ProductionCompanyDto implements IProductionCompanyDto {
|
|
13593
13643
|
id: string;
|
|
13594
13644
|
name: string;
|