@ignos/api-client 20250808.0.12338 → 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.
@@ -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>;
@@ -2053,7 +2097,6 @@ export interface IMeasurementFormSchemasClient {
2053
2097
  updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
2054
2098
  uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
2055
2099
  uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
2056
- getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
2057
2100
  listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
2058
2101
  postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
2059
2102
  createMeasurementFormSchemaLink(schemaId: string, request: CreateMeasurementFormSchemaLinkRequest): Promise<MeasurementFormDto>;
@@ -2065,11 +2108,11 @@ export interface IMeasurementFormSchemasClient {
2065
2108
  /**
2066
2109
  * @deprecated
2067
2110
  */
2068
- getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
2111
+ getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
2069
2112
  /**
2070
2113
  * @deprecated
2071
2114
  */
2072
- updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
2115
+ updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
2073
2116
  /**
2074
2117
  * @deprecated
2075
2118
  */
@@ -2082,13 +2125,12 @@ export interface IMeasurementFormSchemasClient {
2082
2125
  createMeasurementFormMapping(request: CreateMeasurementFormMapping): Promise<MeasurementFormMappingDto>;
2083
2126
  getMeasurementFormMapping(id: string): Promise<MeasurementFormMappingDto>;
2084
2127
  deleteMeasurementFormMapping(id: string): Promise<void>;
2085
- setMeasurementFormMappingBalloons(id: string, request: MeasurementFormBalloonMappingRequestDto[]): Promise<MeasurementFormMappingDto>;
2086
- setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormMappingBalloonsRequest): Promise<MeasurementFormMappingDto>;
2087
- getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
2088
2128
  /**
2089
- * Custom api for initial import. Not to be used more than once per customer.
2129
+ * @deprecated
2090
2130
  */
2091
- importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
2131
+ setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
2132
+ setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
2133
+ getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
2092
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>;
2093
2135
  postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
2094
2136
  setMeasurementFormNeedUser(id: string, request: SetMeasurementFormNeedUserRequest): Promise<void>;
@@ -2145,8 +2187,6 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
2145
2187
  protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
2146
2188
  uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
2147
2189
  protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
2148
- getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
2149
- protected processGetMeasurementFormImportStatus(response: Response): Promise<MeasurementFormImportStatusDto>;
2150
2190
  listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
2151
2191
  protected processListLinkableMeasurementFormSchemas(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
2152
2192
  postListLinkableMeasurementFormSchemas(request: ListLinkableMeasurementFormSchemasRequest): Promise<PagedResultOfMeasurementFormListDto>;
@@ -2166,13 +2206,13 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
2166
2206
  /**
2167
2207
  * @deprecated
2168
2208
  */
2169
- getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
2170
- protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
2209
+ getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
2210
+ protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
2171
2211
  /**
2172
2212
  * @deprecated
2173
2213
  */
2174
- updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
2175
- protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
2214
+ updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
2215
+ protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
2176
2216
  /**
2177
2217
  * @deprecated
2178
2218
  */
@@ -2191,17 +2231,15 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
2191
2231
  protected processGetMeasurementFormMapping(response: Response): Promise<MeasurementFormMappingDto>;
2192
2232
  deleteMeasurementFormMapping(id: string): Promise<void>;
2193
2233
  protected processDeleteMeasurementFormMapping(response: Response): Promise<void>;
2194
- setMeasurementFormMappingBalloons(id: string, request: MeasurementFormBalloonMappingRequestDto[]): Promise<MeasurementFormMappingDto>;
2195
- protected processSetMeasurementFormMappingBalloons(response: Response): Promise<MeasurementFormMappingDto>;
2196
- setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormMappingBalloonsRequest): Promise<MeasurementFormMappingDto>;
2234
+ /**
2235
+ * @deprecated
2236
+ */
2237
+ setMeasurementFormMappingBalloonsV2(id: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
2197
2238
  protected processSetMeasurementFormMappingBalloonsV2(response: Response): Promise<MeasurementFormMappingDto>;
2239
+ setMeasurementFormReferencesMapping(mappingId: string, request: SetMeasurementFormReferencesMappingRequest): Promise<MeasurementFormMappingDto>;
2240
+ protected processSetMeasurementFormReferencesMapping(response: Response): Promise<MeasurementFormMappingDto>;
2198
2241
  getMeasurementFormMappingSuggestion(targetId: string | null | undefined, sourceId: string | null | undefined): Promise<MeasurementFormMappingSuggestionDto>;
2199
2242
  protected processGetMeasurementFormMappingSuggestion(response: Response): Promise<MeasurementFormMappingSuggestionDto>;
2200
- /**
2201
- * Custom api for initial import. Not to be used more than once per customer.
2202
- */
2203
- importMeasurementFormSchema(request: ImportMeasurementFormSchema): Promise<MeasurementFormDto>;
2204
- protected processImportMeasurementFormSchema(response: Response): Promise<MeasurementFormDto>;
2205
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>;
2206
2244
  protected processListMeasurementFormNeeds(response: Response): Promise<PagedResultOfMeasurementFormNeedDto>;
2207
2245
  postListMeasurementFormNeeds(request: ListMeasurementFormNeedsRequest | undefined): Promise<PagedResultOfMeasurementFormNeedDto>;
@@ -2244,8 +2282,8 @@ export declare class MeasurementFormSchemasClient extends AuthorizedApiBase impl
2244
2282
  protected processPostListMeasurementFormSchemasWithHistory(response: Response): Promise<PagedResultOfMeasurementFormListDto>;
2245
2283
  }
2246
2284
  export interface IMeasurementFormSettingsClient {
2247
- getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
2248
- updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
2285
+ getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
2286
+ updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
2249
2287
  getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
2250
2288
  updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
2251
2289
  }
@@ -2256,10 +2294,10 @@ export declare class MeasurementFormSettingsClient extends AuthorizedApiBase imp
2256
2294
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2257
2295
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2258
2296
  });
2259
- getMeasurementFormSettings(): Promise<MeasurementFormSettingsDto>;
2260
- protected processGetMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
2261
- updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<MeasurementFormSettingsDto>;
2262
- protected processUpdateMeasurementFormSettings(response: Response): Promise<MeasurementFormSettingsDto>;
2297
+ getMeasurementFormSettings(): Promise<InspectCompanySettingsDto>;
2298
+ protected processGetMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
2299
+ updateMeasurementFormSettings(request: UpdateMeasurementFormSettings): Promise<InspectCompanySettingsDto>;
2300
+ protected processUpdateMeasurementFormSettings(response: Response): Promise<InspectCompanySettingsDto>;
2263
2301
  getMeasurementFormCustomerSettings(id: string): Promise<MeasurementFormCustomerSettingsDto>;
2264
2302
  protected processGetMeasurementFormCustomerSettings(response: Response): Promise<MeasurementFormCustomerSettingsDto>;
2265
2303
  updateMeasurementFormCustomerSettings(request: UpdateMeasurementFormCustomerSettings): Promise<MeasurementFormCustomerSettingsDto>;
@@ -2280,9 +2318,9 @@ export interface IMeasurementFormsInstancesClient {
2280
2318
  approveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2281
2319
  disapproveMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2282
2320
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2283
- getMeasurementFormInstanceSchema(id: string, schemaId: string, sequence: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2321
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2284
2322
  getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2285
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, sequence: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2323
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2286
2324
  getValidationRules(): Promise<ValidationRuleDto[]>;
2287
2325
  saveValue(id: string, tenantId: string | null | undefined, request: SaveValueRequest): Promise<SaveValueResponseDto>;
2288
2326
  saveTool(id: string, tenantId: string | null | undefined, request: SaveToolRequest): Promise<SaveValueResponseDto>;
@@ -2298,7 +2336,6 @@ export interface IMeasurementFormsInstancesClient {
2298
2336
  updateSchemaInstanceElements(id: string, schemaId: string, request: UpdateSchemaInstanceElementsRequest): Promise<void>;
2299
2337
  getSchemaInstanceElements(id: string, schemaId: string): Promise<SchemaInstanceElementDto[]>;
2300
2338
  toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2301
- importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2302
2339
  }
2303
2340
  export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase implements IMeasurementFormsInstancesClient {
2304
2341
  private http;
@@ -2335,11 +2372,11 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2335
2372
  protected processDisapproveMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2336
2373
  cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2337
2374
  protected processCancelMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2338
- getMeasurementFormInstanceSchema(id: string, schemaId: string, sequence: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2375
+ getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
2339
2376
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
2340
2377
  getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
2341
2378
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
2342
- getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, sequence: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2379
+ getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
2343
2380
  protected processGetAuditLog(response: Response): Promise<MeasurementFormElementValueAuditDto[]>;
2344
2381
  getValidationRules(): Promise<ValidationRuleDto[]>;
2345
2382
  protected processGetValidationRules(response: Response): Promise<ValidationRuleDto[]>;
@@ -2371,52 +2408,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2371
2408
  protected processGetSchemaInstanceElements(response: Response): Promise<SchemaInstanceElementDto[]>;
2372
2409
  toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
2373
2410
  protected processToggleSchemaInstanceElementDocumentedExternallyOverride(response: Response): Promise<void>;
2374
- importMeasurementFormInstance(id: string, request: ImportMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
2375
- protected processImportMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2376
- }
2377
- export interface IElectricalClient {
2378
- listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
2379
- listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
2380
- createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
2381
- deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
2382
- }
2383
- export declare class ElectricalClient extends AuthorizedApiBase implements IElectricalClient {
2384
- private http;
2385
- private baseUrl;
2386
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
2387
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2388
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2389
- });
2390
- listElectricalSourceTypes(): Promise<IotTypeSourceDto[]>;
2391
- protected processListElectricalSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
2392
- listElectricalDataConfigs(): Promise<ElectricalIotConfigDto[]>;
2393
- protected processListElectricalDataConfigs(response: Response): Promise<ElectricalIotConfigDto[]>;
2394
- createElectricalIotConfig(request: CreateElectricalIotConfig): Promise<ElectricalIotConfigDto>;
2395
- protected processCreateElectricalIotConfig(response: Response): Promise<ElectricalIotConfigDto>;
2396
- deleteElectricalIotConfig(typeId: string, id: string): Promise<void>;
2397
- protected processDeleteElectricalIotConfig(response: Response): Promise<void>;
2398
- }
2399
- export interface IWeldingClient {
2400
- listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
2401
- listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
2402
- createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
2403
- deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2404
- }
2405
- export declare class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
2406
- private http;
2407
- private baseUrl;
2408
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
2409
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2410
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2411
- });
2412
- listWeldingSourceTypes(): Promise<IotTypeSourceDto[]>;
2413
- protected processListWeldingSourceTypes(response: Response): Promise<IotTypeSourceDto[]>;
2414
- listElectricalDataConfigs(): Promise<WeldingIotConfigDto[]>;
2415
- protected processListElectricalDataConfigs(response: Response): Promise<WeldingIotConfigDto[]>;
2416
- createWeldingIotConfig(request: CreateWeldingIotConfig): Promise<WeldingIotConfigDto>;
2417
- protected processCreateWeldingIotConfig(response: Response): Promise<WeldingIotConfigDto>;
2418
- deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2419
- protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2420
2411
  }
2421
2412
  export interface ICompaniesClient {
2422
2413
  listProductionCompanies(): Promise<ProductionCompanyDto[]>;
@@ -5950,6 +5941,7 @@ export declare class CalendarDayDto implements ICalendarDayDto {
5950
5941
  date?: Date;
5951
5942
  dayCapacity?: CalendarDayCapacityDto;
5952
5943
  capacityHours?: number;
5944
+ companyId?: string | null;
5953
5945
  constructor(data?: ICalendarDayDto);
5954
5946
  init(_data?: any): void;
5955
5947
  static fromJS(data: any): CalendarDayDto;
@@ -5959,6 +5951,7 @@ export interface ICalendarDayDto {
5959
5951
  date?: Date;
5960
5952
  dayCapacity?: CalendarDayCapacityDto;
5961
5953
  capacityHours?: number;
5954
+ companyId?: string | null;
5962
5955
  }
5963
5956
  export type CalendarDayCapacityDto = "WorkingDay" | "HalfDay" | "Holiday";
5964
5957
  export declare class CalendarCapacityDto implements ICalendarCapacityDto {
@@ -11688,6 +11681,78 @@ export interface IProductionResourceDto {
11688
11681
  name?: string | null;
11689
11682
  department?: DepartmentDto | null;
11690
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
+ }
11691
11756
  export declare class PagedResultOfMeasurementFormListDto implements IPagedResultOfMeasurementFormListDto {
11692
11757
  results: MeasurementFormListDto[];
11693
11758
  continuationToken?: string | null;
@@ -11843,7 +11908,8 @@ export interface IMeasurementFormSchemaAttachmentDto {
11843
11908
  }
11844
11909
  export declare class MeasurementFormGroupedElementDto implements IMeasurementFormGroupedElementDto {
11845
11910
  id: string;
11846
- balloonId: string;
11911
+ balloonId?: string | null;
11912
+ reference: number;
11847
11913
  imageUrl?: string | null;
11848
11914
  thumbnailUrl?: string | null;
11849
11915
  section?: string | null;
@@ -11870,6 +11936,7 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
11870
11936
  includeInCustomerDocumentation: boolean;
11871
11937
  isDocumentedExternally: boolean;
11872
11938
  balloonQuantity?: number | null;
11939
+ referenceQuantity?: number | null;
11873
11940
  plusToleranceText?: string | null;
11874
11941
  minusToleranceText?: string | null;
11875
11942
  coatingThickness?: number | null;
@@ -11889,7 +11956,8 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
11889
11956
  }
11890
11957
  export interface IMeasurementFormGroupedElementDto {
11891
11958
  id: string;
11892
- balloonId: string;
11959
+ balloonId?: string | null;
11960
+ reference: number;
11893
11961
  imageUrl?: string | null;
11894
11962
  thumbnailUrl?: string | null;
11895
11963
  section?: string | null;
@@ -11916,6 +11984,7 @@ export interface IMeasurementFormGroupedElementDto {
11916
11984
  includeInCustomerDocumentation: boolean;
11917
11985
  isDocumentedExternally: boolean;
11918
11986
  balloonQuantity?: number | null;
11987
+ referenceQuantity?: number | null;
11919
11988
  plusToleranceText?: string | null;
11920
11989
  minusToleranceText?: string | null;
11921
11990
  coatingThickness?: number | null;
@@ -12065,7 +12134,8 @@ export interface IUpdateSchemaGroupedElementsRequest {
12065
12134
  groupedElements: UpdateSchemaGroupedElementDto[];
12066
12135
  }
12067
12136
  export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroupedElementDto {
12068
- balloonId: string;
12137
+ balloonId?: string | null;
12138
+ reference: number;
12069
12139
  frequency: MeasurementFrequency;
12070
12140
  frequencyParameter?: number | null;
12071
12141
  includeInCustomerDocumentation: boolean;
@@ -12078,7 +12148,8 @@ export declare class UpdateSchemaGroupedElementDto implements IUpdateSchemaGroup
12078
12148
  toJSON(data?: any): any;
12079
12149
  }
12080
12150
  export interface IUpdateSchemaGroupedElementDto {
12081
- balloonId: string;
12151
+ balloonId?: string | null;
12152
+ reference: number;
12082
12153
  frequency: MeasurementFrequency;
12083
12154
  frequencyParameter?: number | null;
12084
12155
  includeInCustomerDocumentation: boolean;
@@ -12087,8 +12158,10 @@ export interface IUpdateSchemaGroupedElementDto {
12087
12158
  coatingThickness?: number | null;
12088
12159
  }
12089
12160
  export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedElementRowDto {
12090
- id: string;
12091
- balloonId: string;
12161
+ id?: string;
12162
+ balloonId?: string;
12163
+ oldReference: number;
12164
+ newReference: number;
12092
12165
  section?: string | null;
12093
12166
  pageNumber?: number | null;
12094
12167
  measurements?: number | null;
@@ -12112,8 +12185,10 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
12112
12185
  toJSON(data?: any): any;
12113
12186
  }
12114
12187
  export interface IUpdateSchemaGroupedElementRowDto {
12115
- id: string;
12116
- balloonId: string;
12188
+ id?: string;
12189
+ balloonId?: string;
12190
+ oldReference: number;
12191
+ newReference: number;
12117
12192
  section?: string | null;
12118
12193
  pageNumber?: number | null;
12119
12194
  measurements?: number | null;
@@ -12133,19 +12208,22 @@ export interface IUpdateSchemaGroupedElementRowDto {
12133
12208
  isDocumentedExternally: boolean;
12134
12209
  }
12135
12210
  export declare class DeleteSchemaGroupedElementRowsDto implements IDeleteSchemaGroupedElementRowsDto {
12136
- balloonIds: string[];
12211
+ balloonIds?: string[];
12212
+ references?: number[];
12137
12213
  constructor(data?: IDeleteSchemaGroupedElementRowsDto);
12138
12214
  init(_data?: any): void;
12139
12215
  static fromJS(data: any): DeleteSchemaGroupedElementRowsDto;
12140
12216
  toJSON(data?: any): any;
12141
12217
  }
12142
12218
  export interface IDeleteSchemaGroupedElementRowsDto {
12143
- balloonIds: string[];
12219
+ balloonIds?: string[];
12220
+ references?: number[];
12144
12221
  }
12145
12222
  export declare class UploadMeasurementImageRequest implements IUploadMeasurementImageRequest {
12146
12223
  uploadKey: string;
12147
12224
  filename: string;
12148
- ballonId: string;
12225
+ ballonId?: string;
12226
+ reference: number;
12149
12227
  constructor(data?: IUploadMeasurementImageRequest);
12150
12228
  init(_data?: any): void;
12151
12229
  static fromJS(data: any): UploadMeasurementImageRequest;
@@ -12154,7 +12232,8 @@ export declare class UploadMeasurementImageRequest implements IUploadMeasurement
12154
12232
  export interface IUploadMeasurementImageRequest {
12155
12233
  uploadKey: string;
12156
12234
  filename: string;
12157
- ballonId: string;
12235
+ ballonId?: string;
12236
+ reference: number;
12158
12237
  }
12159
12238
  export declare class UpdateSchemaSettingsRequest implements IUpdateSchemaSettingsRequest {
12160
12239
  unitOfMeasure: UnitOfMeasureDto;
@@ -12194,22 +12273,6 @@ export interface IUploadRequest {
12194
12273
  uploadKey: string;
12195
12274
  filename: string;
12196
12275
  }
12197
- export declare class MeasurementFormImportStatusDto implements IMeasurementFormImportStatusDto {
12198
- progress: number;
12199
- totalElements: number;
12200
- errorMessage: string;
12201
- timestamp: Date;
12202
- constructor(data?: IMeasurementFormImportStatusDto);
12203
- init(_data?: any): void;
12204
- static fromJS(data: any): MeasurementFormImportStatusDto;
12205
- toJSON(data?: any): any;
12206
- }
12207
- export interface IMeasurementFormImportStatusDto {
12208
- progress: number;
12209
- totalElements: number;
12210
- errorMessage: string;
12211
- timestamp: Date;
12212
- }
12213
12276
  export declare class ListLinkableMeasurementFormSchemasRequest implements IListLinkableMeasurementFormSchemasRequest {
12214
12277
  schemaId: string;
12215
12278
  pageSize?: number | null;
@@ -12236,7 +12299,7 @@ export declare class CreateMeasurementFormSchemaLinkRequest implements ICreateMe
12236
12299
  export interface ICreateMeasurementFormSchemaLinkRequest {
12237
12300
  linkSchemaId: string;
12238
12301
  }
12239
- export declare class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
12302
+ export declare class InspectCompanySettingsDto implements IInspectCompanySettingsDto {
12240
12303
  convertInchToMm: boolean;
12241
12304
  convertMicroInchToMicroMeter: boolean;
12242
12305
  validateMeasuringTools: boolean;
@@ -12251,12 +12314,12 @@ export declare class MeasurementFormSettingsDto implements IMeasurementFormSetti
12251
12314
  allowSchemaUpdates: boolean;
12252
12315
  allowCreateInstances: boolean;
12253
12316
  resourceTypesBlockingAutoWorkflow?: string[] | null;
12254
- constructor(data?: IMeasurementFormSettingsDto);
12317
+ constructor(data?: IInspectCompanySettingsDto);
12255
12318
  init(_data?: any): void;
12256
- static fromJS(data: any): MeasurementFormSettingsDto;
12319
+ static fromJS(data: any): InspectCompanySettingsDto;
12257
12320
  toJSON(data?: any): any;
12258
12321
  }
12259
- export interface IMeasurementFormSettingsDto {
12322
+ export interface IInspectCompanySettingsDto {
12260
12323
  convertInchToMm: boolean;
12261
12324
  convertMicroInchToMicroMeter: boolean;
12262
12325
  validateMeasuringTools: boolean;
@@ -12348,8 +12411,10 @@ export declare class MeasurementFormMappingDto implements IMeasurementFormMappin
12348
12411
  id: string;
12349
12412
  measurementSchemaSourceId: string;
12350
12413
  measurementSchemaTargetId: string;
12351
- sourceBalloons: MeasurementFormBalloonMappingDto[];
12352
- targetBalloons: MeasurementFormBalloonMappingDto[];
12414
+ sourceBalloons?: MeasurementFormReferenceMappingDto[];
12415
+ targetBalloons?: MeasurementFormReferenceMappingDto[];
12416
+ sourceReferences: MeasurementFormReferenceMappingDto[];
12417
+ targetReferences: MeasurementFormReferenceMappingDto[];
12353
12418
  constructor(data?: IMeasurementFormMappingDto);
12354
12419
  init(_data?: any): void;
12355
12420
  static fromJS(data: any): MeasurementFormMappingDto;
@@ -12359,21 +12424,23 @@ export interface IMeasurementFormMappingDto {
12359
12424
  id: string;
12360
12425
  measurementSchemaSourceId: string;
12361
12426
  measurementSchemaTargetId: string;
12362
- sourceBalloons: MeasurementFormBalloonMappingDto[];
12363
- targetBalloons: MeasurementFormBalloonMappingDto[];
12364
- }
12365
- export declare class MeasurementFormBalloonMappingDto implements IMeasurementFormBalloonMappingDto {
12366
- balloon: MeasurementFormGroupedElementDto;
12367
- mappedBalloonId?: string | null;
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;
12368
12435
  mappingScorePercent?: number | null;
12369
- constructor(data?: IMeasurementFormBalloonMappingDto);
12436
+ constructor(data?: IMeasurementFormReferenceMappingDto);
12370
12437
  init(_data?: any): void;
12371
- static fromJS(data: any): MeasurementFormBalloonMappingDto;
12438
+ static fromJS(data: any): MeasurementFormReferenceMappingDto;
12372
12439
  toJSON(data?: any): any;
12373
12440
  }
12374
- export interface IMeasurementFormBalloonMappingDto {
12375
- balloon: MeasurementFormGroupedElementDto;
12376
- mappedBalloonId?: string | null;
12441
+ export interface IMeasurementFormReferenceMappingDto {
12442
+ reference: MeasurementFormGroupedElementDto;
12443
+ mappedReference?: number;
12377
12444
  mappingScorePercent?: number | null;
12378
12445
  }
12379
12446
  export declare class CreateMeasurementFormMapping implements ICreateMeasurementFormMapping {
@@ -12388,35 +12455,41 @@ export interface ICreateMeasurementFormMapping {
12388
12455
  sourceId: string;
12389
12456
  targetId: string;
12390
12457
  }
12391
- export declare class MeasurementFormBalloonMappingRequestDto implements IMeasurementFormBalloonMappingRequestDto {
12392
- sourceBalloonId: string;
12393
- targetBalloonId: string;
12394
- mappingScorePercent?: number | null;
12395
- constructor(data?: IMeasurementFormBalloonMappingRequestDto);
12458
+ export declare class SetMeasurementFormReferencesMappingRequest implements ISetMeasurementFormReferencesMappingRequest {
12459
+ mappings: MeasurementFormReferenceMappingRequestDto[];
12460
+ constructor(data?: ISetMeasurementFormReferencesMappingRequest);
12396
12461
  init(_data?: any): void;
12397
- static fromJS(data: any): MeasurementFormBalloonMappingRequestDto;
12462
+ static fromJS(data: any): SetMeasurementFormReferencesMappingRequest;
12398
12463
  toJSON(data?: any): any;
12399
12464
  }
12400
- export interface IMeasurementFormBalloonMappingRequestDto {
12401
- sourceBalloonId: string;
12402
- targetBalloonId: string;
12403
- mappingScorePercent?: number | null;
12465
+ export interface ISetMeasurementFormReferencesMappingRequest {
12466
+ mappings: MeasurementFormReferenceMappingRequestDto[];
12404
12467
  }
12405
- export declare class SetMeasurementFormMappingBalloonsRequest implements ISetMeasurementFormMappingBalloonsRequest {
12406
- mappings: MeasurementFormBalloonMappingRequestDto[];
12407
- constructor(data?: ISetMeasurementFormMappingBalloonsRequest);
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);
12408
12475
  init(_data?: any): void;
12409
- static fromJS(data: any): SetMeasurementFormMappingBalloonsRequest;
12476
+ static fromJS(data: any): MeasurementFormReferenceMappingRequestDto;
12410
12477
  toJSON(data?: any): any;
12411
12478
  }
12412
- export interface ISetMeasurementFormMappingBalloonsRequest {
12413
- mappings: MeasurementFormBalloonMappingRequestDto[];
12479
+ export interface IMeasurementFormReferenceMappingRequestDto {
12480
+ sourceBalloonId?: string | null;
12481
+ targetBalloonId?: string | null;
12482
+ sourceReference: number;
12483
+ targetReference: number;
12484
+ mappingScorePercent?: number | null;
12414
12485
  }
12415
12486
  export declare class MeasurementFormMappingSuggestionDto implements IMeasurementFormMappingSuggestionDto {
12416
12487
  measurementSchemaSourceId: string;
12417
12488
  measurementSchemaTargetId: string;
12418
- sourceBalloons: MeasurementFormBalloonMappingDto[];
12419
- targetBalloons: MeasurementFormBalloonMappingDto[];
12489
+ sourceBalloons?: MeasurementFormReferenceMappingDto[];
12490
+ targetBalloons?: MeasurementFormReferenceMappingDto[];
12491
+ sourceReferences: MeasurementFormReferenceMappingDto[];
12492
+ targetReferences: MeasurementFormReferenceMappingDto[];
12420
12493
  constructor(data?: IMeasurementFormMappingSuggestionDto);
12421
12494
  init(_data?: any): void;
12422
12495
  static fromJS(data: any): MeasurementFormMappingSuggestionDto;
@@ -12425,186 +12498,10 @@ export declare class MeasurementFormMappingSuggestionDto implements IMeasurement
12425
12498
  export interface IMeasurementFormMappingSuggestionDto {
12426
12499
  measurementSchemaSourceId: string;
12427
12500
  measurementSchemaTargetId: string;
12428
- sourceBalloons: MeasurementFormBalloonMappingDto[];
12429
- targetBalloons: MeasurementFormBalloonMappingDto[];
12430
- }
12431
- export declare class ImportMeasurementFormSchema implements IImportMeasurementFormSchema {
12432
- customerId?: string | null;
12433
- customerName?: string | null;
12434
- partNumber: string;
12435
- partName?: string | null;
12436
- partRevision?: string | null;
12437
- drawing?: string | null;
12438
- drawingRevision?: string | null;
12439
- includeToolsInReport: boolean;
12440
- created?: Date;
12441
- createdBy?: string | null;
12442
- updatedBy?: string | null;
12443
- excludeFromCustomerDocumentation: boolean;
12444
- source: MeasurementFormSource;
12445
- extraSchemas?: MeasurementFormImportLinkedSchemaDto[] | null;
12446
- versions: MeasurementFormVersionImportDto[];
12447
- constructor(data?: IImportMeasurementFormSchema);
12448
- init(_data?: any): void;
12449
- static fromJS(data: any): ImportMeasurementFormSchema;
12450
- toJSON(data?: any): any;
12451
- }
12452
- export interface IImportMeasurementFormSchema {
12453
- customerId?: string | null;
12454
- customerName?: string | null;
12455
- partNumber: string;
12456
- partName?: string | null;
12457
- partRevision?: string | null;
12458
- drawing?: string | null;
12459
- drawingRevision?: string | null;
12460
- includeToolsInReport: boolean;
12461
- created?: Date;
12462
- createdBy?: string | null;
12463
- updatedBy?: string | null;
12464
- excludeFromCustomerDocumentation: boolean;
12465
- source: MeasurementFormSource;
12466
- extraSchemas?: MeasurementFormImportLinkedSchemaDto[] | null;
12467
- versions: MeasurementFormVersionImportDto[];
12468
- }
12469
- export declare class MeasurementFormImportLinkedSchemaDto implements IMeasurementFormImportLinkedSchemaDto {
12470
- customerId?: string | null;
12471
- partNumber?: string | null;
12472
- partName?: string | null;
12473
- partRevision?: string | null;
12474
- drawing: string;
12475
- drawingRevision?: string | null;
12476
- schemaId?: string | null;
12477
- constructor(data?: IMeasurementFormImportLinkedSchemaDto);
12478
- init(_data?: any): void;
12479
- static fromJS(data: any): MeasurementFormImportLinkedSchemaDto;
12480
- toJSON(data?: any): any;
12481
- }
12482
- export interface IMeasurementFormImportLinkedSchemaDto {
12483
- customerId?: string | null;
12484
- partNumber?: string | null;
12485
- partName?: string | null;
12486
- partRevision?: string | null;
12487
- drawing: string;
12488
- drawingRevision?: string | null;
12489
- schemaId?: string | null;
12490
- }
12491
- export declare class MeasurementFormVersionImportDto implements IMeasurementFormVersionImportDto {
12492
- version: number;
12493
- specification?: string | null;
12494
- drawingUrl?: string | null;
12495
- markedDrawingUrl?: string | null;
12496
- xmlUrl?: string | null;
12497
- inspectionXpertProjectUrl?: string | null;
12498
- created: Date;
12499
- createdBy: string;
12500
- updated?: Date | null;
12501
- updatedBy?: string | null;
12502
- elements: MeasurementFormElementImportDto[];
12503
- isUsed: boolean;
12504
- constructor(data?: IMeasurementFormVersionImportDto);
12505
- init(_data?: any): void;
12506
- static fromJS(data: any): MeasurementFormVersionImportDto;
12507
- toJSON(data?: any): any;
12508
- }
12509
- export interface IMeasurementFormVersionImportDto {
12510
- version: number;
12511
- specification?: string | null;
12512
- drawingUrl?: string | null;
12513
- markedDrawingUrl?: string | null;
12514
- xmlUrl?: string | null;
12515
- inspectionXpertProjectUrl?: string | null;
12516
- created: Date;
12517
- createdBy: string;
12518
- updated?: Date | null;
12519
- updatedBy?: string | null;
12520
- elements: MeasurementFormElementImportDto[];
12521
- isUsed: boolean;
12522
- }
12523
- export declare class MeasurementFormElementImportDto implements IMeasurementFormElementImportDto {
12524
- id?: string | null;
12525
- imageUrl?: string | null;
12526
- thumbnailUrl?: string | null;
12527
- balloonId?: string | null;
12528
- section?: string | null;
12529
- pageNumber?: number;
12530
- sheetZone?: string | null;
12531
- places?: number | null;
12532
- nominal?: number | null;
12533
- nominalText?: string | null;
12534
- type?: string | null;
12535
- subType?: string | null;
12536
- unitOfMeasure?: string | null;
12537
- typeCharacter?: string | null;
12538
- plusTolerance?: number | null;
12539
- minusTolerance?: number | null;
12540
- upperLimit?: number | null;
12541
- lowerLimit?: number | null;
12542
- comments?: string | null;
12543
- updatedByUser?: string | null;
12544
- updatedDate?: Date | null;
12545
- createdByUser?: string | null;
12546
- createdDate?: Date;
12547
- frequency?: MeasurementFrequency;
12548
- frequencyParameter?: number | null;
12549
- includeInCustomerDocumentation?: boolean;
12550
- balloonSequence?: number | null;
12551
- balloonQuantity?: number | null;
12552
- plusToleranceText?: string | null;
12553
- minusToleranceText?: string | null;
12554
- coatingThickness?: number | null;
12555
- canCopy?: boolean;
12556
- valueType?: MeasurementFormValueType;
12557
- inspectionMethod?: string | null;
12558
- process?: string | null;
12559
- classification?: string | null;
12560
- fitGrade?: string | null;
12561
- fitType?: number | null;
12562
- forReference?: boolean;
12563
- constructor(data?: IMeasurementFormElementImportDto);
12564
- init(_data?: any): void;
12565
- static fromJS(data: any): MeasurementFormElementImportDto;
12566
- toJSON(data?: any): any;
12567
- }
12568
- export interface IMeasurementFormElementImportDto {
12569
- id?: string | null;
12570
- imageUrl?: string | null;
12571
- thumbnailUrl?: string | null;
12572
- balloonId?: string | null;
12573
- section?: string | null;
12574
- pageNumber?: number;
12575
- sheetZone?: string | null;
12576
- places?: number | null;
12577
- nominal?: number | null;
12578
- nominalText?: string | null;
12579
- type?: string | null;
12580
- subType?: string | null;
12581
- unitOfMeasure?: string | null;
12582
- typeCharacter?: string | null;
12583
- plusTolerance?: number | null;
12584
- minusTolerance?: number | null;
12585
- upperLimit?: number | null;
12586
- lowerLimit?: number | null;
12587
- comments?: string | null;
12588
- updatedByUser?: string | null;
12589
- updatedDate?: Date | null;
12590
- createdByUser?: string | null;
12591
- createdDate?: Date;
12592
- frequency?: MeasurementFrequency;
12593
- frequencyParameter?: number | null;
12594
- includeInCustomerDocumentation?: boolean;
12595
- balloonSequence?: number | null;
12596
- balloonQuantity?: number | null;
12597
- plusToleranceText?: string | null;
12598
- minusToleranceText?: string | null;
12599
- coatingThickness?: number | null;
12600
- canCopy?: boolean;
12601
- valueType?: MeasurementFormValueType;
12602
- inspectionMethod?: string | null;
12603
- process?: string | null;
12604
- classification?: string | null;
12605
- fitGrade?: string | null;
12606
- fitType?: number | null;
12607
- forReference?: boolean;
12501
+ sourceBalloons?: MeasurementFormReferenceMappingDto[];
12502
+ targetBalloons?: MeasurementFormReferenceMappingDto[];
12503
+ sourceReferences: MeasurementFormReferenceMappingDto[];
12504
+ targetReferences: MeasurementFormReferenceMappingDto[];
12608
12505
  }
12609
12506
  export declare class PagedResultOfMeasurementFormNeedDto implements IPagedResultOfMeasurementFormNeedDto {
12610
12507
  results: MeasurementFormNeedDto[];
@@ -12827,6 +12724,7 @@ export declare class SchemaFeedbackDto implements ISchemaFeedbackDto {
12827
12724
  versionId?: number;
12828
12725
  schemaInstanceId: string;
12829
12726
  balloonId?: string | null;
12727
+ reference?: number;
12830
12728
  feedback: string;
12831
12729
  from: string;
12832
12730
  created: Date;
@@ -12850,6 +12748,7 @@ export interface ISchemaFeedbackDto {
12850
12748
  versionId?: number;
12851
12749
  schemaInstanceId: string;
12852
12750
  balloonId?: string | null;
12751
+ reference?: number;
12853
12752
  feedback: string;
12854
12753
  from: string;
12855
12754
  created: Date;
@@ -13054,7 +12953,8 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
13054
12953
  status: MeasurementFormInstanceStatus;
13055
12954
  statusChangedDate?: Date | null;
13056
12955
  schemas: MeasurementFormWorkorderSchemaDto[];
13057
- sequences: MeasurementFormWorkorderSequenceDto[];
12956
+ sequences?: MeasurementFormWorkorderSequenceDto[] | null;
12957
+ serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13058
12958
  suppliers: MeasurementFormWorkorderSupplierDto[];
13059
12959
  progress: MeasurementFormProgressDto;
13060
12960
  approvedReportUrl?: string | null;
@@ -13078,7 +12978,8 @@ export interface IMeasurementFormInstanceDto {
13078
12978
  status: MeasurementFormInstanceStatus;
13079
12979
  statusChangedDate?: Date | null;
13080
12980
  schemas: MeasurementFormWorkorderSchemaDto[];
13081
- sequences: MeasurementFormWorkorderSequenceDto[];
12981
+ sequences?: MeasurementFormWorkorderSequenceDto[] | null;
12982
+ serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13082
12983
  suppliers: MeasurementFormWorkorderSupplierDto[];
13083
12984
  progress: MeasurementFormProgressDto;
13084
12985
  approvedReportUrl?: string | null;
@@ -13130,6 +13031,20 @@ export interface IMeasurementFormWorkorderSequenceDto {
13130
13031
  sequence: string;
13131
13032
  serialNumber?: string | null;
13132
13033
  }
13034
+ export declare class MeasurementFormWorkorderSerialNumberDto implements IMeasurementFormWorkorderSerialNumberDto {
13035
+ lot?: string | null;
13036
+ serialNumber: string;
13037
+ customerSerialNumber?: string | null;
13038
+ constructor(data?: IMeasurementFormWorkorderSerialNumberDto);
13039
+ init(_data?: any): void;
13040
+ static fromJS(data: any): MeasurementFormWorkorderSerialNumberDto;
13041
+ toJSON(data?: any): any;
13042
+ }
13043
+ export interface IMeasurementFormWorkorderSerialNumberDto {
13044
+ lot?: string | null;
13045
+ serialNumber: string;
13046
+ customerSerialNumber?: string | null;
13047
+ }
13133
13048
  export declare class MeasurementFormWorkorderSupplierDto implements IMeasurementFormWorkorderSupplierDto {
13134
13049
  supplierId: string;
13135
13050
  supplierName?: string | null;
@@ -13177,6 +13092,7 @@ export declare class MeasurementFormInstanceFeedbackDto implements IMeasurementF
13177
13092
  versionId?: number;
13178
13093
  schemaInstanceId: string;
13179
13094
  balloonId?: string | null;
13095
+ reference?: number;
13180
13096
  feedback: string;
13181
13097
  from: string;
13182
13098
  created: Date;
@@ -13192,6 +13108,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
13192
13108
  versionId?: number;
13193
13109
  schemaInstanceId: string;
13194
13110
  balloonId?: string | null;
13111
+ reference?: number;
13195
13112
  feedback: string;
13196
13113
  from: string;
13197
13114
  created: Date;
@@ -13202,6 +13119,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
13202
13119
  customerName?: string | null;
13203
13120
  purchaseOrder?: string | null;
13204
13121
  sequences: CreateMeasurementFormInstanceRequestSequence[];
13122
+ serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
13205
13123
  constructor(data?: ICreateMeasurementFormInstanceRequest);
13206
13124
  init(_data?: any): void;
13207
13125
  static fromJS(data: any): CreateMeasurementFormInstanceRequest;
@@ -13213,6 +13131,7 @@ export interface ICreateMeasurementFormInstanceRequest {
13213
13131
  customerName?: string | null;
13214
13132
  purchaseOrder?: string | null;
13215
13133
  sequences: CreateMeasurementFormInstanceRequestSequence[];
13134
+ serialNumbers: CreateMeasurementFormInstanceRequestSerialNumber[];
13216
13135
  }
13217
13136
  export declare class CreateMeasurementFormInstanceRequestSequence implements ICreateMeasurementFormInstanceRequestSequence {
13218
13137
  sequenceNumber: string;
@@ -13226,8 +13145,21 @@ export interface ICreateMeasurementFormInstanceRequestSequence {
13226
13145
  sequenceNumber: string;
13227
13146
  serialNumber?: string | null;
13228
13147
  }
13148
+ export declare class CreateMeasurementFormInstanceRequestSerialNumber implements ICreateMeasurementFormInstanceRequestSerialNumber {
13149
+ serialNumber: string;
13150
+ customerSerialNumber?: string | null;
13151
+ constructor(data?: ICreateMeasurementFormInstanceRequestSerialNumber);
13152
+ init(_data?: any): void;
13153
+ static fromJS(data: any): CreateMeasurementFormInstanceRequestSerialNumber;
13154
+ toJSON(data?: any): any;
13155
+ }
13156
+ export interface ICreateMeasurementFormInstanceRequestSerialNumber {
13157
+ serialNumber: string;
13158
+ customerSerialNumber?: string | null;
13159
+ }
13229
13160
  export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeasurementFormInstanceRequest {
13230
- sequences: MeasurementFormWorkorderSequenceDto[];
13161
+ sequences?: MeasurementFormWorkorderSequenceDto[] | null;
13162
+ serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13231
13163
  suppliers: MeasurementFormWorkorderSupplierDto[];
13232
13164
  constructor(data?: IUpdateMeasurementFormInstanceRequest);
13233
13165
  init(_data?: any): void;
@@ -13235,7 +13167,8 @@ export declare class UpdateMeasurementFormInstanceRequest implements IUpdateMeas
13235
13167
  toJSON(data?: any): any;
13236
13168
  }
13237
13169
  export interface IUpdateMeasurementFormInstanceRequest {
13238
- sequences: MeasurementFormWorkorderSequenceDto[];
13170
+ sequences?: MeasurementFormWorkorderSequenceDto[] | null;
13171
+ serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
13239
13172
  suppliers: MeasurementFormWorkorderSupplierDto[];
13240
13173
  }
13241
13174
  export declare class MeasurementFormInstanceSchemaDto implements IMeasurementFormInstanceSchemaDto {
@@ -13257,6 +13190,7 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
13257
13190
  imageUrl?: string | null;
13258
13191
  thumbnailUrl?: string | null;
13259
13192
  balloonId?: string | null;
13193
+ reference?: number;
13260
13194
  section?: string | null;
13261
13195
  pageNumber?: number | null;
13262
13196
  sheetZone?: string | null;
@@ -13280,7 +13214,9 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
13280
13214
  isDocumentedExternally: boolean;
13281
13215
  canOverrideIsDocumentedExternally: boolean;
13282
13216
  balloonSequence?: number | null;
13217
+ referenceSerialNumber?: number | null;
13283
13218
  balloonQuantity?: number | null;
13219
+ referenceQuantity?: number | null;
13284
13220
  plusTolerance?: string | null;
13285
13221
  minusTolerance?: string | null;
13286
13222
  coatingThickness?: number | null;
@@ -13304,6 +13240,7 @@ export interface IMeasurementFormInstanceElementDto {
13304
13240
  imageUrl?: string | null;
13305
13241
  thumbnailUrl?: string | null;
13306
13242
  balloonId?: string | null;
13243
+ reference?: number;
13307
13244
  section?: string | null;
13308
13245
  pageNumber?: number | null;
13309
13246
  sheetZone?: string | null;
@@ -13327,7 +13264,9 @@ export interface IMeasurementFormInstanceElementDto {
13327
13264
  isDocumentedExternally: boolean;
13328
13265
  canOverrideIsDocumentedExternally: boolean;
13329
13266
  balloonSequence?: number | null;
13267
+ referenceSerialNumber?: number | null;
13330
13268
  balloonQuantity?: number | null;
13269
+ referenceQuantity?: number | null;
13331
13270
  plusTolerance?: string | null;
13332
13271
  minusTolerance?: string | null;
13333
13272
  coatingThickness?: number | null;
@@ -13345,7 +13284,8 @@ export interface IMeasurementFormInstanceElementDto {
13345
13284
  export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
13346
13285
  bonus?: string | null;
13347
13286
  completed: boolean;
13348
- sequence: string;
13287
+ sequence?: string | null;
13288
+ serialNumber: string;
13349
13289
  value?: string | null;
13350
13290
  updatedByUser: string;
13351
13291
  updatedDate: Date;
@@ -13361,7 +13301,8 @@ export declare class MeasurementFormElementValueDto implements IMeasurementFormE
13361
13301
  export interface IMeasurementFormElementValueDto {
13362
13302
  bonus?: string | null;
13363
13303
  completed: boolean;
13364
- sequence: string;
13304
+ sequence?: string | null;
13305
+ serialNumber: string;
13365
13306
  value?: string | null;
13366
13307
  updatedByUser: string;
13367
13308
  updatedDate: Date;
@@ -13403,7 +13344,8 @@ export declare class MeasurementFormElementValueAuditDto implements IMeasurement
13403
13344
  schemaId: string;
13404
13345
  value?: string | null;
13405
13346
  bonus?: number | null;
13406
- sequence: string;
13347
+ sequence?: string | null;
13348
+ serialNumber: string;
13407
13349
  elementId: string;
13408
13350
  updatedByUser: string;
13409
13351
  updatedDate: Date;
@@ -13420,7 +13362,8 @@ export interface IMeasurementFormElementValueAuditDto {
13420
13362
  schemaId: string;
13421
13363
  value?: string | null;
13422
13364
  bonus?: number | null;
13423
- sequence: string;
13365
+ sequence?: string | null;
13366
+ serialNumber: string;
13424
13367
  elementId: string;
13425
13368
  updatedByUser: string;
13426
13369
  updatedDate: Date;
@@ -13461,7 +13404,8 @@ export declare class SaveValueRequest implements ISaveValueRequest {
13461
13404
  resourceName?: string | null;
13462
13405
  schemaId: string;
13463
13406
  elementId: string;
13464
- sequence: string;
13407
+ sequence?: string | null;
13408
+ serialNumber: string;
13465
13409
  value?: string | null;
13466
13410
  bonus?: string | null;
13467
13411
  constructor(data?: ISaveValueRequest);
@@ -13474,14 +13418,16 @@ export interface ISaveValueRequest {
13474
13418
  resourceName?: string | null;
13475
13419
  schemaId: string;
13476
13420
  elementId: string;
13477
- sequence: string;
13421
+ sequence?: string | null;
13422
+ serialNumber: string;
13478
13423
  value?: string | null;
13479
13424
  bonus?: string | null;
13480
13425
  }
13481
13426
  export declare class SaveToolRequest implements ISaveToolRequest {
13482
13427
  schemaId: string;
13483
13428
  elementId: string;
13484
- sequence: string;
13429
+ sequence?: string | null;
13430
+ serialNumber: string;
13485
13431
  tools?: string[] | null;
13486
13432
  force?: boolean;
13487
13433
  constructor(data?: ISaveToolRequest);
@@ -13492,14 +13438,16 @@ export declare class SaveToolRequest implements ISaveToolRequest {
13492
13438
  export interface ISaveToolRequest {
13493
13439
  schemaId: string;
13494
13440
  elementId: string;
13495
- sequence: string;
13441
+ sequence?: string | null;
13442
+ serialNumber: string;
13496
13443
  tools?: string[] | null;
13497
13444
  force?: boolean;
13498
13445
  }
13499
13446
  export declare class SaveCommentRequest implements ISaveCommentRequest {
13500
13447
  schemaId: string;
13501
13448
  elementId: string;
13502
- sequence: string;
13449
+ sequence?: string | null;
13450
+ serialNumber: string;
13503
13451
  comment?: string | null;
13504
13452
  constructor(data?: ISaveCommentRequest);
13505
13453
  init(_data?: any): void;
@@ -13509,7 +13457,8 @@ export declare class SaveCommentRequest implements ISaveCommentRequest {
13509
13457
  export interface ISaveCommentRequest {
13510
13458
  schemaId: string;
13511
13459
  elementId: string;
13512
- sequence: string;
13460
+ sequence?: string | null;
13461
+ serialNumber: string;
13513
13462
  comment?: string | null;
13514
13463
  }
13515
13464
  export declare class BatchInsertValuesResponseDto implements IBatchInsertValuesResponseDto {
@@ -13561,6 +13510,7 @@ export declare class SchemaFeedbackCreatedDto implements ISchemaFeedbackCreatedD
13561
13510
  versionId: number;
13562
13511
  schemaInstanceId: string;
13563
13512
  balloonId?: string | null;
13513
+ reference?: number;
13564
13514
  feedback: string;
13565
13515
  from: string;
13566
13516
  created: Date;
@@ -13576,12 +13526,14 @@ export interface ISchemaFeedbackCreatedDto {
13576
13526
  versionId: number;
13577
13527
  schemaInstanceId: string;
13578
13528
  balloonId?: string | null;
13529
+ reference?: number;
13579
13530
  feedback: string;
13580
13531
  from: string;
13581
13532
  created: Date;
13582
13533
  }
13583
13534
  export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICreateMeasurementFormSchemaFeedbackRequest {
13584
13535
  balloonId?: string | null;
13536
+ reference?: number;
13585
13537
  feedback: string;
13586
13538
  constructor(data?: ICreateMeasurementFormSchemaFeedbackRequest);
13587
13539
  init(_data?: any): void;
@@ -13590,6 +13542,7 @@ export declare class CreateMeasurementFormSchemaFeedbackRequest implements ICrea
13590
13542
  }
13591
13543
  export interface ICreateMeasurementFormSchemaFeedbackRequest {
13592
13544
  balloonId?: string | null;
13545
+ reference?: number;
13593
13546
  feedback: string;
13594
13547
  }
13595
13548
  export declare class MeasurementFormSupplierAccessInstanceDto implements IMeasurementFormSupplierAccessInstanceDto {
@@ -13640,6 +13593,7 @@ export declare class ExportDimensionReportRequest implements IExportDimensionRep
13640
13593
  includeAllSchemasAndElements?: boolean | null;
13641
13594
  createBlankReport?: boolean | null;
13642
13595
  sequences?: string[] | null;
13596
+ serialNumbers?: string[] | null;
13643
13597
  customerPO?: string | null;
13644
13598
  workOrder?: string | null;
13645
13599
  comment?: string | null;
@@ -13654,6 +13608,7 @@ export interface IExportDimensionReportRequest {
13654
13608
  includeAllSchemasAndElements?: boolean | null;
13655
13609
  createBlankReport?: boolean | null;
13656
13610
  sequences?: string[] | null;
13611
+ serialNumbers?: string[] | null;
13657
13612
  customerPO?: string | null;
13658
13613
  workOrder?: string | null;
13659
13614
  comment?: string | null;
@@ -13670,7 +13625,8 @@ export interface IUpdateSchemaInstanceElementsRequest {
13670
13625
  }
13671
13626
  export declare class SchemaInstanceElementDto implements ISchemaInstanceElementDto {
13672
13627
  elementId: string;
13673
- balloonId: string;
13628
+ balloonId?: string | null;
13629
+ reference: number;
13674
13630
  disabled: boolean;
13675
13631
  constructor(data?: ISchemaInstanceElementDto);
13676
13632
  init(_data?: any): void;
@@ -13679,163 +13635,10 @@ export declare class SchemaInstanceElementDto implements ISchemaInstanceElementD
13679
13635
  }
13680
13636
  export interface ISchemaInstanceElementDto {
13681
13637
  elementId: string;
13682
- balloonId: string;
13638
+ balloonId?: string | null;
13639
+ reference: number;
13683
13640
  disabled: boolean;
13684
13641
  }
13685
- export declare class ImportMeasurementFormInstanceRequest implements IImportMeasurementFormInstanceRequest {
13686
- partInfo: ImportMeasurementFormPartDto;
13687
- customerId?: string | null;
13688
- customerGroupId?: string | null;
13689
- customerName?: string | null;
13690
- externalOrderNumber?: string | null;
13691
- quantity: number;
13692
- sequences: WorkorderImportTraceItemDto[];
13693
- status: MeasurementFormInstanceStatus;
13694
- statusChangedBy?: string | null;
13695
- statusChangedDate?: Date | null;
13696
- created: Date;
13697
- createdBy?: string | null;
13698
- updatedBy?: string | null;
13699
- schemas: ImportMeasurementSchemaInstanceDto[];
13700
- constructor(data?: IImportMeasurementFormInstanceRequest);
13701
- init(_data?: any): void;
13702
- static fromJS(data: any): ImportMeasurementFormInstanceRequest;
13703
- toJSON(data?: any): any;
13704
- }
13705
- export interface IImportMeasurementFormInstanceRequest {
13706
- partInfo: ImportMeasurementFormPartDto;
13707
- customerId?: string | null;
13708
- customerGroupId?: string | null;
13709
- customerName?: string | null;
13710
- externalOrderNumber?: string | null;
13711
- quantity: number;
13712
- sequences: WorkorderImportTraceItemDto[];
13713
- status: MeasurementFormInstanceStatus;
13714
- statusChangedBy?: string | null;
13715
- statusChangedDate?: Date | null;
13716
- created: Date;
13717
- createdBy?: string | null;
13718
- updatedBy?: string | null;
13719
- schemas: ImportMeasurementSchemaInstanceDto[];
13720
- }
13721
- export declare class ImportMeasurementFormPartDto implements IImportMeasurementFormPartDto {
13722
- partNumber?: string | null;
13723
- partName?: string | null;
13724
- partRevision?: string | null;
13725
- drawing: string;
13726
- drawingRevision?: string | null;
13727
- constructor(data?: IImportMeasurementFormPartDto);
13728
- init(_data?: any): void;
13729
- static fromJS(data: any): ImportMeasurementFormPartDto;
13730
- toJSON(data?: any): any;
13731
- }
13732
- export interface IImportMeasurementFormPartDto {
13733
- partNumber?: string | null;
13734
- partName?: string | null;
13735
- partRevision?: string | null;
13736
- drawing: string;
13737
- drawingRevision?: string | null;
13738
- }
13739
- export declare class WorkorderImportTraceItemDto implements IWorkorderImportTraceItemDto {
13740
- sequence: string;
13741
- serialNumber?: string | null;
13742
- lot?: string | null;
13743
- active: boolean;
13744
- constructor(data?: IWorkorderImportTraceItemDto);
13745
- init(_data?: any): void;
13746
- static fromJS(data: any): WorkorderImportTraceItemDto;
13747
- toJSON(data?: any): any;
13748
- }
13749
- export interface IWorkorderImportTraceItemDto {
13750
- sequence: string;
13751
- serialNumber?: string | null;
13752
- lot?: string | null;
13753
- active: boolean;
13754
- }
13755
- export declare class ImportMeasurementSchemaInstanceDto implements IImportMeasurementSchemaInstanceDto {
13756
- id: string;
13757
- version: number;
13758
- constructor(data?: IImportMeasurementSchemaInstanceDto);
13759
- init(_data?: any): void;
13760
- static fromJS(data: any): ImportMeasurementSchemaInstanceDto;
13761
- toJSON(data?: any): any;
13762
- }
13763
- export interface IImportMeasurementSchemaInstanceDto {
13764
- id: string;
13765
- version: number;
13766
- }
13767
- export declare class IotTypeSourceDto implements IIotTypeSourceDto {
13768
- id: string;
13769
- name: string;
13770
- constructor(data?: IIotTypeSourceDto);
13771
- init(_data?: any): void;
13772
- static fromJS(data: any): IotTypeSourceDto;
13773
- toJSON(data?: any): any;
13774
- }
13775
- export interface IIotTypeSourceDto {
13776
- id: string;
13777
- name: string;
13778
- }
13779
- export declare class ElectricalIotConfigDto implements IElectricalIotConfigDto {
13780
- id: string;
13781
- typeId: string;
13782
- serialNumber?: string | null;
13783
- assetId: number;
13784
- assetExternalId?: string | null;
13785
- phases?: number;
13786
- electricalAssetId?: number;
13787
- electricalAssetExternalId?: string | null;
13788
- electricalTimeseriesId?: number;
13789
- electricalTimeseriesExternalId?: string | null;
13790
- constructor(data?: IElectricalIotConfigDto);
13791
- init(_data?: any): void;
13792
- static fromJS(data: any): ElectricalIotConfigDto;
13793
- toJSON(data?: any): any;
13794
- }
13795
- export interface IElectricalIotConfigDto {
13796
- id: string;
13797
- typeId: string;
13798
- serialNumber?: string | null;
13799
- assetId: number;
13800
- assetExternalId?: string | null;
13801
- phases?: number;
13802
- electricalAssetId?: number;
13803
- electricalAssetExternalId?: string | null;
13804
- electricalTimeseriesId?: number;
13805
- electricalTimeseriesExternalId?: string | null;
13806
- }
13807
- export declare class CreateElectricalIotConfig implements ICreateElectricalIotConfig {
13808
- typeId?: string | null;
13809
- serialNumber?: string | null;
13810
- assetId?: number | null;
13811
- assetExternalId?: string | null;
13812
- constructor(data?: ICreateElectricalIotConfig);
13813
- init(_data?: any): void;
13814
- static fromJS(data: any): CreateElectricalIotConfig;
13815
- toJSON(data?: any): any;
13816
- }
13817
- export interface ICreateElectricalIotConfig {
13818
- typeId?: string | null;
13819
- serialNumber?: string | null;
13820
- assetId?: number | null;
13821
- assetExternalId?: string | null;
13822
- }
13823
- export declare class WeldingIotConfigDto implements IWeldingIotConfigDto {
13824
- constructor(data?: IWeldingIotConfigDto);
13825
- init(_data?: any): void;
13826
- static fromJS(data: any): WeldingIotConfigDto;
13827
- toJSON(data?: any): any;
13828
- }
13829
- export interface IWeldingIotConfigDto {
13830
- }
13831
- export declare class CreateWeldingIotConfig implements ICreateWeldingIotConfig {
13832
- constructor(data?: ICreateWeldingIotConfig);
13833
- init(_data?: any): void;
13834
- static fromJS(data: any): CreateWeldingIotConfig;
13835
- toJSON(data?: any): any;
13836
- }
13837
- export interface ICreateWeldingIotConfig {
13838
- }
13839
13642
  export declare class ProductionCompanyDto implements IProductionCompanyDto {
13840
13643
  id: string;
13841
13644
  name: string;