@ignos/api-client 20260225.66.1-alpha → 20260303.68.1-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.
@@ -124,6 +124,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
124
124
  }
125
125
  export interface IGuestsClient {
126
126
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
127
128
  }
128
129
  export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
129
130
  private http;
@@ -133,6 +134,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
133
134
  });
134
135
  getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
135
136
  protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
137
+ getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
138
+ protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
136
139
  }
137
140
  export interface IPresentationClient {
138
141
  getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
@@ -1425,99 +1428,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1425
1428
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1426
1429
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1427
1430
  }
1428
- export interface IExternalAccessClient {
1429
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1430
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1431
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1432
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1433
- listRoles(): Promise<ExternalRoleDto[]>;
1434
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1435
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1436
- }
1437
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1438
- private http;
1439
- private baseUrl;
1440
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1441
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1442
- });
1443
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1444
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1445
- createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1446
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1447
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1448
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1449
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1450
- protected processDeleteCompanyUser(response: Response): Promise<void>;
1451
- listRoles(): Promise<ExternalRoleDto[]>;
1452
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1453
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1454
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1455
- deleteCompanyCustomer(tenantId: string): Promise<void>;
1456
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1457
- }
1458
- export interface IExternalClient {
1459
- listInvites(): Promise<InviteDto[]>;
1460
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1461
- listCompanies(): Promise<CompanyDto[]>;
1462
- }
1463
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1464
- private http;
1465
- private baseUrl;
1466
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1467
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1468
- });
1469
- listInvites(): Promise<InviteDto[]>;
1470
- protected processListInvites(response: Response): Promise<InviteDto[]>;
1471
- acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1472
- protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1473
- listCompanies(): Promise<CompanyDto[]>;
1474
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1475
- }
1476
- export interface ISuppliersClient {
1477
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1478
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1479
- deleteSupplierInvite(id: string): Promise<void>;
1480
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1481
- deleteSupplier(id: string): Promise<void>;
1482
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1483
- /**
1484
- * Creates a mapping between old supplier id and new supplier id.
1485
- */
1486
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1487
- /**
1488
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1489
- */
1490
- deleteSupplierMappings(): Promise<void>;
1491
- }
1492
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1493
- private http;
1494
- private baseUrl;
1495
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1496
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1497
- });
1498
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
1499
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1500
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1501
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1502
- deleteSupplierInvite(id: string): Promise<void>;
1503
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
1504
- listSuppliers(): Promise<ExternalSupplierDto[]>;
1505
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1506
- deleteSupplier(id: string): Promise<void>;
1507
- protected processDeleteSupplier(response: Response): Promise<void>;
1508
- importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1509
- protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1510
- /**
1511
- * Creates a mapping between old supplier id and new supplier id.
1512
- */
1513
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1514
- protected processCreateSupplierMapping(response: Response): Promise<void>;
1515
- /**
1516
- * Delete all supplier mappings between old supplier ids and new supplier ids.
1517
- */
1518
- deleteSupplierMappings(): Promise<void>;
1519
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
1520
- }
1521
1431
  export interface ICncFileTransferClient {
1522
1432
  startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1523
1433
  startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
@@ -2076,6 +1986,30 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
2076
1986
  exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
2077
1987
  protected processExportBookings(response: Response): Promise<DownloadDto>;
2078
1988
  }
1989
+ export interface IMoveInfoscreenClient {
1990
+ listInfoscreens(): Promise<MoveInfoscreenDto[]>;
1991
+ createInfoscreen(request: CreateMoveInfoscreenRequestDto): Promise<MoveInfoscreenDto>;
1992
+ getInfoscreenBySlug(slug: string): Promise<MoveInfoscreenDto>;
1993
+ updateInfoscreen(id: string, request: UpdateMoveInfoscreenRequestDto): Promise<MoveInfoscreenDto>;
1994
+ deleteInfoscreen(id: string): Promise<void>;
1995
+ }
1996
+ export declare class MoveInfoscreenClient extends AuthorizedApiBase implements IMoveInfoscreenClient {
1997
+ private http;
1998
+ private baseUrl;
1999
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2000
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2001
+ });
2002
+ listInfoscreens(): Promise<MoveInfoscreenDto[]>;
2003
+ protected processListInfoscreens(response: Response): Promise<MoveInfoscreenDto[]>;
2004
+ createInfoscreen(request: CreateMoveInfoscreenRequestDto): Promise<MoveInfoscreenDto>;
2005
+ protected processCreateInfoscreen(response: Response): Promise<MoveInfoscreenDto>;
2006
+ getInfoscreenBySlug(slug: string): Promise<MoveInfoscreenDto>;
2007
+ protected processGetInfoscreenBySlug(response: Response): Promise<MoveInfoscreenDto>;
2008
+ updateInfoscreen(id: string, request: UpdateMoveInfoscreenRequestDto): Promise<MoveInfoscreenDto>;
2009
+ protected processUpdateInfoscreen(response: Response): Promise<MoveInfoscreenDto>;
2010
+ deleteInfoscreen(id: string): Promise<void>;
2011
+ protected processDeleteInfoscreen(response: Response): Promise<void>;
2012
+ }
2079
2013
  export interface IMoveLocationsClient {
2080
2014
  listLocations(includeAllLocations: boolean | null | undefined): Promise<LocationZoneGroupDto[]>;
2081
2015
  searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
@@ -3165,11 +3099,104 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3165
3099
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3166
3100
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3167
3101
  }
3102
+ export interface IExternalAccessClient {
3103
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3104
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3105
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3106
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3107
+ listRoles(): Promise<ExternalRoleDto[]>;
3108
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3109
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3110
+ }
3111
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
3112
+ private http;
3113
+ private baseUrl;
3114
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3115
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3116
+ });
3117
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3118
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3119
+ createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3120
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3121
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3122
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3123
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3124
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
3125
+ listRoles(): Promise<ExternalRoleDto[]>;
3126
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3127
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3128
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3129
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
3130
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3131
+ }
3132
+ export interface IExternalClient {
3133
+ listCompanies(): Promise<CompanyDto[]>;
3134
+ getCompany(id: string): Promise<CompanyDto>;
3135
+ getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3136
+ acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3137
+ }
3138
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
3139
+ private http;
3140
+ private baseUrl;
3141
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3142
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3143
+ });
3144
+ listCompanies(): Promise<CompanyDto[]>;
3145
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3146
+ getCompany(id: string): Promise<CompanyDto>;
3147
+ protected processGetCompany(response: Response): Promise<CompanyDto>;
3148
+ getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3149
+ protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3150
+ acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3151
+ protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3152
+ }
3153
+ export interface ISuppliersClient {
3154
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3155
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3156
+ deleteSupplierInvite(id: string): Promise<void>;
3157
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3158
+ deleteSupplier(id: string): Promise<void>;
3159
+ /**
3160
+ * Creates a mapping between old supplier id and new supplier id.
3161
+ */
3162
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3163
+ /**
3164
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3165
+ */
3166
+ deleteSupplierMappings(): Promise<void>;
3167
+ }
3168
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
3169
+ private http;
3170
+ private baseUrl;
3171
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3172
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3173
+ });
3174
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
3175
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3176
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3177
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3178
+ deleteSupplierInvite(id: string): Promise<void>;
3179
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
3180
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
3181
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3182
+ deleteSupplier(id: string): Promise<void>;
3183
+ protected processDeleteSupplier(response: Response): Promise<void>;
3184
+ /**
3185
+ * Creates a mapping between old supplier id and new supplier id.
3186
+ */
3187
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3188
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
3189
+ /**
3190
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
3191
+ */
3192
+ deleteSupplierMappings(): Promise<void>;
3193
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
3194
+ }
3168
3195
  export interface IMaterialCertificateChecksClient {
3169
- listMaterialCertificateChecks(request: AmcCheckListRequestDto): Promise<AmcCheckListDto>;
3170
- getMaterialCertificateCheck(materialCertificateCheckId: string): Promise<AmcResultDto>;
3196
+ listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
3197
+ getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
3171
3198
  processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
3172
- updateMaterialCertificate(certificatesRequest: UpdateAmcResultRequestDto): Promise<AmcResultDto>;
3199
+ updateMaterialCertificate(certificatesRequest: AmcUpdateResultRequestDto): Promise<AmcMaterialCheckDto>;
3173
3200
  }
3174
3201
  export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
3175
3202
  private http;
@@ -3177,18 +3204,18 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
3177
3204
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3178
3205
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3179
3206
  });
3180
- listMaterialCertificateChecks(request: AmcCheckListRequestDto): Promise<AmcCheckListDto>;
3181
- protected processListMaterialCertificateChecks(response: Response): Promise<AmcCheckListDto>;
3182
- getMaterialCertificateCheck(materialCertificateCheckId: string): Promise<AmcResultDto>;
3183
- protected processGetMaterialCertificateCheck(response: Response): Promise<AmcResultDto>;
3207
+ listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
3208
+ protected processListMaterialCertificateChecks(response: Response): Promise<AmcMaterialChecksPageDto>;
3209
+ getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
3210
+ protected processGetMaterialCertificateCheck(response: Response): Promise<AmcMaterialCheckDto>;
3184
3211
  processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
3185
3212
  protected processProcessMaterialCertificate(response: Response): Promise<void>;
3186
- updateMaterialCertificate(certificatesRequest: UpdateAmcResultRequestDto): Promise<AmcResultDto>;
3187
- protected processUpdateMaterialCertificate(response: Response): Promise<AmcResultDto>;
3213
+ updateMaterialCertificate(certificatesRequest: AmcUpdateResultRequestDto): Promise<AmcMaterialCheckDto>;
3214
+ protected processUpdateMaterialCertificate(response: Response): Promise<AmcMaterialCheckDto>;
3188
3215
  }
3189
3216
  export interface IMaterialCertificateSpecificationsClient {
3190
3217
  listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
3191
- getSpecification(specificationId: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3218
+ getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3192
3219
  createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3193
3220
  updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3194
3221
  deleteMaterialCertificateTypes(materialCertificateSpecificationId: string, version: string): Promise<void>;
@@ -3201,7 +3228,7 @@ export declare class MaterialCertificateSpecificationsClient extends AuthorizedA
3201
3228
  });
3202
3229
  listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
3203
3230
  protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
3204
- getSpecification(specificationId: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3231
+ getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
3205
3232
  protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
3206
3233
  createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
3207
3234
  protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
@@ -3211,11 +3238,11 @@ export declare class MaterialCertificateSpecificationsClient extends AuthorizedA
3211
3238
  protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
3212
3239
  }
3213
3240
  export interface IMaterialCertificateTypesClient {
3214
- listMaterialCertificateTypes(): Promise<AmcTypeLiteDto[]>;
3215
- getMaterialCertificateTypes(typeId: string, version: number | null | undefined): Promise<AmcTypeDto>;
3216
- createMaterialCertificateTypes(certificatesTypesRequest: CreateAmcTypeRequestDto): Promise<AmcTypeDto>;
3217
- updateMaterialCertificateTypes(certificatesTypesRequest: UpdateAmcTypeDto): Promise<AmcTypeDto>;
3218
- deleteMaterialCertificateTypes(materialCertificateTypeId: string, version: number): Promise<void>;
3241
+ listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
3242
+ getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<AmcCertificateTypeDto>;
3243
+ updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: AmcUpdateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3244
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
3245
+ createMaterialCertificateTypes(payload: AmcCreateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3219
3246
  }
3220
3247
  export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
3221
3248
  private http;
@@ -3223,16 +3250,16 @@ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase im
3223
3250
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3224
3251
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3225
3252
  });
3226
- listMaterialCertificateTypes(): Promise<AmcTypeLiteDto[]>;
3227
- protected processListMaterialCertificateTypes(response: Response): Promise<AmcTypeLiteDto[]>;
3228
- getMaterialCertificateTypes(typeId: string, version: number | null | undefined): Promise<AmcTypeDto>;
3229
- protected processGetMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
3230
- createMaterialCertificateTypes(certificatesTypesRequest: CreateAmcTypeRequestDto): Promise<AmcTypeDto>;
3231
- protected processCreateMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
3232
- updateMaterialCertificateTypes(certificatesTypesRequest: UpdateAmcTypeDto): Promise<AmcTypeDto>;
3233
- protected processUpdateMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
3234
- deleteMaterialCertificateTypes(materialCertificateTypeId: string, version: number): Promise<void>;
3253
+ listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
3254
+ protected processListMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeLiteDto[]>;
3255
+ getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<AmcCertificateTypeDto>;
3256
+ protected processGetMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
3257
+ updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: AmcUpdateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3258
+ protected processUpdateMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
3259
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
3235
3260
  protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
3261
+ createMaterialCertificateTypes(payload: AmcCreateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
3262
+ protected processCreateMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
3236
3263
  }
3237
3264
  export interface AzureRegionDto {
3238
3265
  displayName: string;
@@ -3467,6 +3494,7 @@ export interface UserDetailsDto {
3467
3494
  isExternalUser?: boolean;
3468
3495
  isBetaTester?: boolean | null;
3469
3496
  hasAccessToIgnos?: boolean;
3497
+ isInvitedUser?: boolean;
3470
3498
  }
3471
3499
  export interface UserDto {
3472
3500
  id?: string | null;
@@ -3875,7 +3903,6 @@ export interface UpdateCalendarSettingsCommand {
3875
3903
  };
3876
3904
  halfDayHours?: number;
3877
3905
  holidayHours?: number;
3878
- defaultPerformancePercent?: number | null;
3879
3906
  }
3880
3907
  export interface ResourceKpiDto {
3881
3908
  uptimeToNow: number;
@@ -4189,7 +4216,6 @@ export interface UtilizationDetailsV2Dto {
4189
4216
  uptimeInMilliseconds?: number | null;
4190
4217
  downtimeInMilliseconds?: number | null;
4191
4218
  totalTimeInMilliseconds?: number | null;
4192
- performancePercent?: number | null;
4193
4219
  }
4194
4220
  export interface MachineGroupUtilizationV2Dto {
4195
4221
  name: string;
@@ -5334,97 +5360,6 @@ export interface DocumentGeneratorTypeDto {
5334
5360
  key: string;
5335
5361
  description: string;
5336
5362
  }
5337
- export interface CompanyUserDto {
5338
- companyId?: string | null;
5339
- username?: string | null;
5340
- name?: string | null;
5341
- roles?: string[] | null;
5342
- }
5343
- export interface CreateCompanyUserRequest {
5344
- username: string;
5345
- name: string;
5346
- roles: string[];
5347
- companyId?: string | null;
5348
- }
5349
- export interface UpdateCompanyUserRequest {
5350
- name: string;
5351
- roles: string[];
5352
- companyId?: string | null;
5353
- }
5354
- export interface ExternalRoleDto {
5355
- id: string;
5356
- name: string;
5357
- }
5358
- export interface CompanyCustomerDto {
5359
- customerTenantId?: string | null;
5360
- customerAzureAdTenantId?: string | null;
5361
- customerName?: string | null;
5362
- supplierId?: string | null;
5363
- supplierName?: string | null;
5364
- }
5365
- export interface InviteDto {
5366
- tenantId: string;
5367
- companyName: string;
5368
- id: string;
5369
- supplierId: string;
5370
- supplierName: string;
5371
- username: string;
5372
- deadline: Date;
5373
- createdTime: Date;
5374
- createdBy: string;
5375
- }
5376
- export interface CompanyDto {
5377
- id?: string | null;
5378
- name?: string | null;
5379
- organizationNumber?: string | null;
5380
- country?: string | null;
5381
- tenantId?: string | null;
5382
- }
5383
- export interface AcceptSupplierInviteRequest {
5384
- tenantId: string;
5385
- existingCompanyId?: string | null;
5386
- companyName?: string | null;
5387
- organizationNumber?: string | null;
5388
- threeLetterIsoCountry?: string | null;
5389
- }
5390
- export interface SupplierInviteDto {
5391
- id: string;
5392
- supplierId: string;
5393
- name: string;
5394
- username: string;
5395
- deadline: Date;
5396
- createdTime: Date;
5397
- createdBy: string;
5398
- }
5399
- export interface CreateSupplierInvite {
5400
- supplierId: string;
5401
- name: string;
5402
- username: string;
5403
- deadline: Date;
5404
- }
5405
- export interface ExternalSupplierDto {
5406
- id: string;
5407
- name: string;
5408
- companyId: string;
5409
- active: boolean;
5410
- }
5411
- export interface ImportSupplier {
5412
- supplierId: string;
5413
- name: string;
5414
- organizationNumber?: string | null;
5415
- threeLetterIsoCountry: string;
5416
- users: ImportSupplierUserDto[];
5417
- }
5418
- export interface ImportSupplierUserDto {
5419
- username: string;
5420
- name: string;
5421
- roles: string[];
5422
- }
5423
- export interface CreateSupplierMapping {
5424
- companyId: string;
5425
- existingSupplierId: string;
5426
- newSupplierId: string;
5427
- }
5428
5363
  export interface CncMachineTransferDto {
5429
5364
  id: string;
5430
5365
  cncMachineOperationId?: string | null;
@@ -6503,6 +6438,29 @@ export interface BookingStatusUpdateDto {
6503
6438
  deliveryExceptionToLocationId?: string | null;
6504
6439
  deliveryExceptionComment?: string | null;
6505
6440
  }
6441
+ export interface MoveInfoscreenDto {
6442
+ id?: string;
6443
+ name?: string;
6444
+ slug?: string;
6445
+ fromZoneIds?: string[];
6446
+ fromLocationIds?: string[];
6447
+ toZoneIds?: string[];
6448
+ toLocationIds?: string[];
6449
+ }
6450
+ export interface CreateMoveInfoscreenRequestDto {
6451
+ name?: string;
6452
+ fromZoneIds?: string[];
6453
+ fromLocationIds?: string[];
6454
+ toZoneIds?: string[];
6455
+ toLocationIds?: string[];
6456
+ }
6457
+ export interface UpdateMoveInfoscreenRequestDto {
6458
+ name?: string;
6459
+ fromZoneIds?: string[];
6460
+ fromLocationIds?: string[];
6461
+ toZoneIds?: string[];
6462
+ toLocationIds?: string[];
6463
+ }
6506
6464
  export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "Environmental" | "Gate" | "Ground" | "Inbound" | "Logia" | "LogiaTransit" | "Outbound" | "Pack" | "PalletRack" | "Pick" | "Quality" | "Quarantine" | "Resource" | "ShelvingRack";
6507
6465
  export interface SuggestionsResponseDto {
6508
6466
  parcels: SuggestionsParcelDto[];
@@ -8405,20 +8363,92 @@ export interface SetDiscussionLastReadRequest {
8405
8363
  operationId?: string | null;
8406
8364
  resourceId?: string | null;
8407
8365
  }
8408
- export interface AmcCheckListDto {
8409
- results: AmcResultLiteDto[];
8366
+ export interface CompanyUserDto {
8367
+ companyId: string;
8368
+ userObjectId: string;
8369
+ username?: string | null;
8370
+ name?: string | null;
8371
+ roles: string[];
8372
+ }
8373
+ export interface CreateCompanyUser {
8374
+ username: string;
8375
+ name: string;
8376
+ roles: string[];
8377
+ companyId?: string | null;
8378
+ }
8379
+ export interface UpdateCompanyUserRequest {
8380
+ roles: string[];
8381
+ companyId?: string | null;
8382
+ }
8383
+ export interface ExternalRoleDto {
8384
+ id: string;
8385
+ name: string;
8386
+ }
8387
+ export interface CompanyCustomerDto {
8388
+ customerTenantId?: string | null;
8389
+ customerAzureAdTenantId?: string | null;
8390
+ customerName?: string | null;
8391
+ supplierId?: string | null;
8392
+ supplierName?: string | null;
8393
+ }
8394
+ export interface CompanyDto {
8395
+ id?: string;
8396
+ name?: string;
8397
+ organizationNumber?: string | null;
8398
+ country?: string;
8399
+ tenantId?: string | null;
8400
+ }
8401
+ export interface SupplierInviteDto {
8402
+ id: string;
8403
+ supplierId: string;
8404
+ supplierName?: string | null;
8405
+ customerName?: string | null;
8406
+ userId: string;
8407
+ userName?: string | null;
8408
+ companyId?: string | null;
8409
+ deadline: Date;
8410
+ acceptedTimestamp?: Date | null;
8411
+ createdTime: Date;
8412
+ createdBy: string;
8413
+ }
8414
+ export interface AcceptSupplierInvite {
8415
+ companyName?: string;
8416
+ organizationNumber?: string;
8417
+ threeLetterIsoCountry?: string;
8418
+ }
8419
+ export interface CreateSupplierInvite {
8420
+ supplierId: string;
8421
+ supplierName?: string | null;
8422
+ username: string;
8423
+ invitedName: string;
8424
+ deadline: Date;
8425
+ existingCompanyId?: string | null;
8426
+ }
8427
+ export interface ExternalSupplierDto {
8428
+ id: string;
8429
+ name: string;
8430
+ companyId: string;
8431
+ active: boolean;
8432
+ }
8433
+ export interface CreateSupplierMapping {
8434
+ companyId: string;
8435
+ existingSupplierId: string;
8436
+ newSupplierId: string;
8437
+ }
8438
+ export interface AmcMaterialChecksPageDto {
8439
+ items: AmcMaterialCheckLiteDto[];
8410
8440
  continuationToken?: string | null;
8411
8441
  }
8412
- export interface AmcResultLiteDto {
8413
- resultId: string;
8442
+ export interface AmcMaterialCheckLiteDto {
8443
+ materialCheckId: string;
8414
8444
  originalMaterialCertificate: FileDto;
8415
8445
  generatedMaterialCertificate?: FileDto | null;
8416
8446
  customer?: string | null;
8417
8447
  project?: string | null;
8418
8448
  workOrder?: string | null;
8419
- materialCertificateTypeId?: string | null;
8420
- materialCertificateTypeVersion?: number | null;
8421
- materialCertificateTypeName?: string | null;
8449
+ certificateTypeId?: string | null;
8450
+ certificateTypeVersion?: number | null;
8451
+ certificateTypeName?: string | null;
8422
8452
  specificationId: string;
8423
8453
  specificationVersion: number;
8424
8454
  specificationName: string;
@@ -8427,17 +8457,17 @@ export interface AmcResultLiteDto {
8427
8457
  purchaseOrderItem?: string | null;
8428
8458
  purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
8429
8459
  purchaseOrderLot?: string | null;
8430
- status: AmcCheckStatus;
8460
+ status: AmcMaterialCheckStatus;
8431
8461
  created: Date;
8432
8462
  createdBy: string;
8433
8463
  createdById: string;
8434
8464
  updatedBy?: string | null;
8435
8465
  updatedById?: string | null;
8436
8466
  }
8437
- export type AmcCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
8438
- export interface AmcCheckListRequestDto {
8467
+ export type AmcMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
8468
+ export interface AmcMaterialChecksPageRequestDto {
8439
8469
  pageSize?: number | null;
8440
- orderBy?: AmcCheckListOrderByColumn | null;
8470
+ orderBy?: AmcMaterialChecksOrderByColumn | null;
8441
8471
  searchTerm?: string | null;
8442
8472
  originalReportFilter?: string | null;
8443
8473
  generatedReportFilter?: string | null;
@@ -8452,20 +8482,20 @@ export interface AmcCheckListRequestDto {
8452
8482
  lotFilter?: string | null;
8453
8483
  dateFromFilter?: Date | null;
8454
8484
  dateToFilter?: Date | null;
8455
- statusFilter: AmcCheckStatus[];
8485
+ statusFilter: AmcMaterialCheckStatus[];
8456
8486
  continuationToken?: string | null;
8457
8487
  }
8458
- export type AmcCheckListOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
8459
- export interface AmcResultDto {
8460
- resultId: string;
8488
+ export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
8489
+ export interface AmcMaterialCheckDto {
8490
+ materialCheckId: string;
8461
8491
  originalMaterialCertificate: FileDto;
8462
8492
  generatedMaterialCertificate?: FileDto | null;
8463
8493
  customer?: string | null;
8464
8494
  project?: string | null;
8465
8495
  workOrder?: string | null;
8466
- materialCertificateTypeId?: string | null;
8467
- materialCertificateTypeVersion?: number | null;
8468
- materialCertificateTypeName?: string | null;
8496
+ certificateTypeId?: string | null;
8497
+ certificateTypeVersion?: number | null;
8498
+ certificateTypeName?: string | null;
8469
8499
  specificationId: string;
8470
8500
  specificationVersion: number;
8471
8501
  specificationName: string;
@@ -8474,100 +8504,100 @@ export interface AmcResultDto {
8474
8504
  purchaseOrderItem?: string | null;
8475
8505
  purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
8476
8506
  purchaseOrderLot?: string | null;
8477
- status: AmcCheckStatus;
8507
+ status: AmcMaterialCheckStatus;
8478
8508
  created: Date;
8479
8509
  createdBy: string;
8480
8510
  createdById: string;
8481
8511
  updatedBy?: string | null;
8482
8512
  updatedById?: string | null;
8483
- certificateTypeSection: AmcTypeResultChecksDto;
8484
- chemistrySpecification: AmcChemistrySpecificationResultDto;
8485
- mechanicalSpecification: AmcMechanicalSpecificationResultDto;
8486
- ferriteSpecification: AmcFerriteSpecificationResultDto;
8487
- heatSpecification: AmcHeatTreatmentSpecificationResultDto;
8488
- }
8489
- export interface AmcTypeResultChecksDto {
8490
- manufacturer: AmcTypeManufacturerResultChecksDto;
8491
- signature: AmcTypeSignatureResultChecksDto;
8492
- thirdParty: AmcTypeThirdPartyResultChecksDto;
8493
- certification: AmcTypeCertificationResultChecksDto;
8494
- productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
8495
- testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
8496
- testResults: AmcTypeTestResultsResultChecksDto;
8497
- documentTypes: AmcTypeDocumentTypesResultChecksDto;
8498
- }
8499
- export interface AmcTypeManufacturerResultChecksDto {
8500
- manufacturer?: AmcTypeResultLine | null;
8501
- address?: AmcTypeResultLine | null;
8502
- contact?: AmcTypeResultLine | null;
8503
- }
8504
- export interface AmcTypeResultLine {
8513
+ certificateTypeResults: AmcCertificateTypeResultsDto;
8514
+ specificationChemistry: AmcSpecificationChemistryResultsDto;
8515
+ specificationMechanical: AmcSpecificationMechanicalResultsDto;
8516
+ specificationFerrite: AmcSpecificationFerriteResultsDto;
8517
+ specificationHeat: AmcSpecificationHeatTreatmentResultsDto;
8518
+ }
8519
+ export interface AmcCertificateTypeResultsDto {
8520
+ manufacturer: AmcCertificateTypeManufacturerResultsDto;
8521
+ signature: AmcCertificateTypeSignatureResultsDto;
8522
+ thirdParty: AmcCertificateTypeThirdPartyResultsDto;
8523
+ certification: AmcCertificateTypeCertificationResultsDto;
8524
+ productAndOrderInformation: AmcCertificateTypeProductAndOrderInformationResultsDto;
8525
+ testMethodsAndReferences: AmcCertificateTypeTestMethodsAndReferencesResultsDto;
8526
+ testResults: AmcCertificateTypeTestResultsResultsDto;
8527
+ documentTypes: AmcCertificateTypeDocumentTypesResultsDto;
8528
+ }
8529
+ export interface AmcCertificateTypeManufacturerResultsDto {
8530
+ manufacturer?: AmcCertificateTypeResultLine | null;
8531
+ address?: AmcCertificateTypeResultLine | null;
8532
+ contact?: AmcCertificateTypeResultLine | null;
8533
+ }
8534
+ export interface AmcCertificateTypeResultLine {
8505
8535
  found?: boolean;
8506
8536
  readValue?: string | null;
8507
- override?: AmcResultOverrideDto | null;
8537
+ override?: AmcResultLineOverrideDto | null;
8508
8538
  }
8509
- export interface AmcResultOverrideDto {
8539
+ export interface AmcResultLineOverrideDto {
8510
8540
  approved: boolean;
8511
8541
  comment?: string | null;
8512
8542
  updated: Date;
8513
8543
  updatedBy: string;
8514
8544
  updatedById: string;
8515
8545
  }
8516
- export interface AmcTypeSignatureResultChecksDto {
8517
- certifiedBy?: AmcTypeResultLine | null;
8518
- position?: AmcTypeResultLine | null;
8519
- signature?: AmcTypeResultLine | null;
8520
- date?: AmcTypeResultLine | null;
8521
- stamp?: AmcTypeResultLine | null;
8522
- }
8523
- export interface AmcTypeThirdPartyResultChecksDto {
8524
- inspectionBody?: AmcTypeResultLine | null;
8525
- inspectorName?: AmcTypeResultLine | null;
8526
- position?: AmcTypeResultLine | null;
8527
- verificationMethod?: AmcTypeResultLine | null;
8528
- signature?: AmcTypeResultLine | null;
8529
- date?: AmcTypeResultLine | null;
8530
- stamp?: AmcTypeResultLine | null;
8531
- }
8532
- export interface AmcTypeCertificationResultChecksDto {
8533
- certificateOfCompliance?: AmcTypeResultLine | null;
8534
- inspectionCertificate?: AmcTypeResultLine | null;
8535
- }
8536
- export interface AmcTypeProductAndOrderInformationResultChecksDto {
8537
- productDescription?: AmcTypeResultLine | null;
8538
- materialGrade?: AmcTypeResultLine | null;
8539
- customer?: AmcTypeResultLine | null;
8540
- customerOrderNumber?: AmcTypeResultLine | null;
8541
- dimensionsOrWeight?: AmcTypeResultLine | null;
8542
- batchNumber?: AmcTypeResultLine | null;
8543
- heatNumber?: AmcTypeResultLine | null;
8544
- relatedStandards?: AmcTypeResultLine | null;
8545
- }
8546
- export interface AmcTypeTestMethodsAndReferencesResultChecksDto {
8547
- usedStandards?: AmcTypeResultLine | null;
8548
- }
8549
- export interface AmcTypeTestResultsResultChecksDto {
8550
- mechanicalProperties?: AmcTypeResultLine | null;
8551
- chemicalAnalysis?: AmcTypeResultLine | null;
8552
- impactTests?: AmcTypeResultLine | null;
8553
- corrosionTests?: AmcTypeResultLine | null;
8554
- ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
8555
- }
8556
- export interface AmcTypeDocumentTypesResultChecksDto {
8557
- heatTreatmentCertificate?: AmcTypeResultLine | null;
8558
- ultrasonicControlCertificate?: AmcTypeResultLine | null;
8559
- liquidPenetrantCertificate?: AmcTypeResultLine | null;
8560
- testReport?: AmcTypeResultLine | null;
8561
- dimensionalReport?: AmcTypeResultLine | null;
8562
- dyePenetrantReport?: AmcTypeResultLine | null;
8563
- visualReport?: AmcTypeResultLine | null;
8564
- certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
8565
- certificateOfTest?: AmcTypeResultLine | null;
8566
- technicalReport?: AmcTypeResultLine | null;
8567
- microExaminationReport?: AmcTypeResultLine | null;
8568
- radiologicalReport?: AmcTypeResultLine | null;
8569
- }
8570
- export interface AmcChemistrySpecificationResultDto {
8546
+ export interface AmcCertificateTypeSignatureResultsDto {
8547
+ certifiedBy?: AmcCertificateTypeResultLine | null;
8548
+ position?: AmcCertificateTypeResultLine | null;
8549
+ signature?: AmcCertificateTypeResultLine | null;
8550
+ date?: AmcCertificateTypeResultLine | null;
8551
+ stamp?: AmcCertificateTypeResultLine | null;
8552
+ }
8553
+ export interface AmcCertificateTypeThirdPartyResultsDto {
8554
+ inspectionBody?: AmcCertificateTypeResultLine | null;
8555
+ inspectorName?: AmcCertificateTypeResultLine | null;
8556
+ position?: AmcCertificateTypeResultLine | null;
8557
+ verificationMethod?: AmcCertificateTypeResultLine | null;
8558
+ signature?: AmcCertificateTypeResultLine | null;
8559
+ date?: AmcCertificateTypeResultLine | null;
8560
+ stamp?: AmcCertificateTypeResultLine | null;
8561
+ }
8562
+ export interface AmcCertificateTypeCertificationResultsDto {
8563
+ certificateOfCompliance?: AmcCertificateTypeResultLine | null;
8564
+ inspectionCertificate?: AmcCertificateTypeResultLine | null;
8565
+ }
8566
+ export interface AmcCertificateTypeProductAndOrderInformationResultsDto {
8567
+ productDescription?: AmcCertificateTypeResultLine | null;
8568
+ materialGrade?: AmcCertificateTypeResultLine | null;
8569
+ customer?: AmcCertificateTypeResultLine | null;
8570
+ customerOrderNumber?: AmcCertificateTypeResultLine | null;
8571
+ dimensionsOrWeight?: AmcCertificateTypeResultLine | null;
8572
+ batchNumber?: AmcCertificateTypeResultLine | null;
8573
+ heatNumber?: AmcCertificateTypeResultLine | null;
8574
+ relatedStandards?: AmcCertificateTypeResultLine | null;
8575
+ }
8576
+ export interface AmcCertificateTypeTestMethodsAndReferencesResultsDto {
8577
+ usedStandards?: AmcCertificateTypeResultLine | null;
8578
+ }
8579
+ export interface AmcCertificateTypeTestResultsResultsDto {
8580
+ mechanicalProperties?: AmcCertificateTypeResultLine | null;
8581
+ chemicalAnalysis?: AmcCertificateTypeResultLine | null;
8582
+ impactTests?: AmcCertificateTypeResultLine | null;
8583
+ corrosionTests?: AmcCertificateTypeResultLine | null;
8584
+ ferriteContentAndMicrostructure?: AmcCertificateTypeResultLine | null;
8585
+ }
8586
+ export interface AmcCertificateTypeDocumentTypesResultsDto {
8587
+ heatTreatmentCertificate?: AmcCertificateTypeResultLine | null;
8588
+ ultrasonicControlCertificate?: AmcCertificateTypeResultLine | null;
8589
+ liquidPenetrantCertificate?: AmcCertificateTypeResultLine | null;
8590
+ testReport?: AmcCertificateTypeResultLine | null;
8591
+ dimensionalReport?: AmcCertificateTypeResultLine | null;
8592
+ dyePenetrantReport?: AmcCertificateTypeResultLine | null;
8593
+ visualReport?: AmcCertificateTypeResultLine | null;
8594
+ certificateOfAnalyticalAndMechanicalTests?: AmcCertificateTypeResultLine | null;
8595
+ certificateOfTest?: AmcCertificateTypeResultLine | null;
8596
+ technicalReport?: AmcCertificateTypeResultLine | null;
8597
+ microExaminationReport?: AmcCertificateTypeResultLine | null;
8598
+ radiologicalReport?: AmcCertificateTypeResultLine | null;
8599
+ }
8600
+ export interface AmcSpecificationChemistryResultsDto {
8571
8601
  carbon?: AmcSpecificationResultLineDto | null;
8572
8602
  manganese?: AmcSpecificationResultLineDto | null;
8573
8603
  silicon?: AmcSpecificationResultLineDto | null;
@@ -8583,15 +8613,15 @@ export interface AmcChemistrySpecificationResultDto {
8583
8613
  }
8584
8614
  export interface AmcSpecificationResultLineDto {
8585
8615
  specificationOperator?: string | null;
8586
- specificationValue1?: string | null;
8587
- specificationValue2?: string | null;
8616
+ specificationValue1?: number | null;
8617
+ specificationValue2?: number | null;
8588
8618
  specificationSymbol?: string | null;
8589
8619
  readValue?: string | null;
8590
8620
  status: AmcSpecificationResultLineStatus;
8591
- override?: AmcResultOverrideDto | null;
8621
+ override?: AmcResultLineOverrideDto | null;
8592
8622
  }
8593
- export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok";
8594
- export interface AmcMechanicalSpecificationResultDto {
8623
+ export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
8624
+ export interface AmcSpecificationMechanicalResultsDto {
8595
8625
  yieldStrength?: AmcSpecificationResultLineDto | null;
8596
8626
  tensileStrength?: AmcSpecificationResultLineDto | null;
8597
8627
  elongation?: AmcSpecificationResultLineDto | null;
@@ -8599,23 +8629,23 @@ export interface AmcMechanicalSpecificationResultDto {
8599
8629
  impactEnergy?: AmcSpecificationResultLineDto | null;
8600
8630
  hardness?: AmcSpecificationResultLineDto | null;
8601
8631
  }
8602
- export interface AmcFerriteSpecificationResultDto {
8603
- ferriteContent?: AmcSpecificationResultFerriteLineDto | null;
8632
+ export interface AmcSpecificationFerriteResultsDto {
8633
+ ferriteContent?: AmcSpecificationFerriteResultLineDto | null;
8604
8634
  }
8605
- export interface AmcSpecificationResultFerriteLineDto {
8635
+ export interface AmcSpecificationFerriteResultLineDto {
8606
8636
  specificationOperator?: string | null;
8607
8637
  specificationValue1?: string | null;
8608
8638
  specificationValue2?: string | null;
8609
8639
  specificationSymbol?: string | null;
8610
8640
  readValue?: string | null;
8611
8641
  status: AmcSpecificationResultLineStatus;
8612
- override?: AmcResultOverrideDto | null;
8642
+ override?: AmcResultLineOverrideDto | null;
8613
8643
  measurementMethod?: string | null;
8614
8644
  }
8615
- export interface AmcHeatTreatmentSpecificationResultDto {
8616
- heatTreatments: AmcHeatTreatmentsResultDto[];
8645
+ export interface AmcSpecificationHeatTreatmentResultsDto {
8646
+ heatTreatments: AmcSpecificationHeatTreatmentsResultLineDto[];
8617
8647
  }
8618
- export interface AmcHeatTreatmentsResultDto {
8648
+ export interface AmcSpecificationHeatTreatmentsResultLineDto {
8619
8649
  heatingMethod: AmcHeatingTreatmentMethod;
8620
8650
  specificationHeatingTreatmentTemperature?: number | null;
8621
8651
  specificationHeatingHoldingTime?: number | null;
@@ -8628,7 +8658,7 @@ export interface AmcHeatTreatmentsResultDto {
8628
8658
  coolingTreatmentTemperature?: number | null;
8629
8659
  coolingHoldingTime?: number | null;
8630
8660
  status: AmcSpecificationResultLineStatus;
8631
- override?: AmcResultOverrideDto | null;
8661
+ override?: AmcResultLineOverrideDto | null;
8632
8662
  }
8633
8663
  export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
8634
8664
  export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
@@ -8640,123 +8670,121 @@ export interface ProcessAmcCheckRequestDto {
8640
8670
  certificateTypeVersion?: string | null;
8641
8671
  purchaseOrder?: string | null;
8642
8672
  }
8643
- export interface UpdateAmcResultRequestDto {
8673
+ export interface AmcUpdateResultRequestDto {
8644
8674
  certificateId: string;
8645
8675
  project?: string | null;
8646
8676
  purchaseOrder?: string | null;
8647
8677
  workOrder?: string | null;
8648
- status: AmcCheckStatusUpdate;
8649
- certificateTypeSection: UpdateAmcTypeResultChecksDto;
8650
- chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
8651
- mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
8652
- ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
8653
- heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
8654
- }
8655
- export type AmcCheckStatusUpdate = "Draft" | "Approve" | "Reject";
8656
- export interface UpdateAmcTypeResultChecksDto {
8657
- manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
8658
- signature: UpdateAmcTypeSignatureResultChecksDto;
8659
- thirdParty: UpdateAmcTypeThirdPartyResultChecksDto;
8660
- certification: UpdateAmcTypeCertificationResultChecksDto;
8661
- productAndOrderInformation: UpdateAmcTypeProductAndOrderInformationResultChecksDto;
8662
- testMethodsAndReferences: UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
8663
- testResults: UpdateAmcTypeTestResultsResultChecksDto;
8664
- documentTypes: UpdateAmcTypeDocumentTypesResultChecksDto;
8665
- }
8666
- export interface UpdateAmcTypeManufacturerResultChecksDto {
8667
- manufacturer?: UpdateAmcTypeResultLine | null;
8668
- address?: UpdateAmcTypeResultLine | null;
8669
- contact?: UpdateAmcTypeResultLine | null;
8670
- }
8671
- export interface UpdateAmcTypeResultLine {
8678
+ certificateTypeSection: AmcUpdateCertificateTypeResultsDto;
8679
+ specificationChemistrySpecification: AmcUpdateSpecificationChemistryResultsDto;
8680
+ specificationMechanicalSpecification: AmcUpdateSpecificationMechanicalResultsDto;
8681
+ specificationFerriteSpecification: AmcUpdateSpecificationFerriteResultsDto;
8682
+ specificationHeatSpecification: AmcUpdateSpecificationHeatTreatmentResultsDto;
8683
+ }
8684
+ export interface AmcUpdateCertificateTypeResultsDto {
8685
+ manufacturer: AmcUpdateCertificateTypeManufacturerResultsDto;
8686
+ signature: AmcUpdateCertificateTypeSignatureResultsDto;
8687
+ thirdParty: AmcUpdateCertificateTypeThirdPartyResultsDto;
8688
+ certification: AmcUpdateCertificateTypeCertificationResultsDto;
8689
+ certificateTypeProductAndOrderInformation: AmcUpdateCertificateTypeProductAndOrderInformationResultsDto;
8690
+ testMethodsAndReferences: AmcUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
8691
+ testResults: AmcUpdateCertificateTypeTestResultsResultsDto;
8692
+ documentTypes: AmcUpdateCertificateTypeDocumentTypesResultsDto;
8693
+ }
8694
+ export interface AmcUpdateCertificateTypeManufacturerResultsDto {
8695
+ manufacturer?: AmcUpdateCertificateTypeResultLine | null;
8696
+ address?: AmcUpdateCertificateTypeResultLine | null;
8697
+ contact?: AmcUpdateCertificateTypeResultLine | null;
8698
+ }
8699
+ export interface AmcUpdateCertificateTypeResultLine {
8672
8700
  approved?: boolean | null;
8673
8701
  comment?: string | null;
8674
8702
  }
8675
- export interface UpdateAmcTypeSignatureResultChecksDto {
8676
- certifiedBy?: UpdateAmcTypeResultLine | null;
8677
- position?: UpdateAmcTypeResultLine | null;
8678
- signature?: UpdateAmcTypeResultLine | null;
8679
- date?: UpdateAmcTypeResultLine | null;
8680
- stamp?: UpdateAmcTypeResultLine | null;
8681
- }
8682
- export interface UpdateAmcTypeThirdPartyResultChecksDto {
8683
- inspectionBody?: UpdateAmcTypeResultLine | null;
8684
- inspectorName?: UpdateAmcTypeResultLine | null;
8685
- position?: UpdateAmcTypeResultLine | null;
8686
- verificationMethod?: UpdateAmcTypeResultLine | null;
8687
- signature?: UpdateAmcTypeResultLine | null;
8688
- date?: UpdateAmcTypeResultLine | null;
8689
- stamp?: UpdateAmcTypeResultLine | null;
8690
- }
8691
- export interface UpdateAmcTypeCertificationResultChecksDto {
8692
- certificateOfCompliance?: UpdateAmcTypeResultLine | null;
8693
- inspectionCertificate?: UpdateAmcTypeResultLine | null;
8694
- }
8695
- export interface UpdateAmcTypeProductAndOrderInformationResultChecksDto {
8696
- productDescription?: UpdateAmcTypeResultLine | null;
8697
- materialGrade?: UpdateAmcTypeResultLine | null;
8698
- customer?: UpdateAmcTypeResultLine | null;
8699
- customerOrderNumber?: UpdateAmcTypeResultLine | null;
8700
- dimensionsOrWeight?: UpdateAmcTypeResultLine | null;
8701
- batchNumber?: UpdateAmcTypeResultLine | null;
8702
- heatNumber?: UpdateAmcTypeResultLine | null;
8703
- relatedStandards?: UpdateAmcTypeResultLine | null;
8704
- }
8705
- export interface UpdateAmcTypeTestMethodsAndReferencesResultChecksDto {
8706
- usedStandards?: UpdateAmcTypeResultLine | null;
8707
- }
8708
- export interface UpdateAmcTypeTestResultsResultChecksDto {
8709
- mechanicalProperties?: UpdateAmcTypeResultLine | null;
8710
- chemicalAnalysis?: UpdateAmcTypeResultLine | null;
8711
- impactTests?: UpdateAmcTypeResultLine | null;
8712
- corrosionTests?: UpdateAmcTypeResultLine | null;
8713
- ferriteContentAndMicrostructure?: UpdateAmcTypeResultLine | null;
8714
- }
8715
- export interface UpdateAmcTypeDocumentTypesResultChecksDto {
8716
- heatTreatmentCertificate?: UpdateAmcTypeResultLine | null;
8717
- ultrasonicControlCertificate?: UpdateAmcTypeResultLine | null;
8718
- liquidPenetrantCertificate?: UpdateAmcTypeResultLine | null;
8719
- testReport?: UpdateAmcTypeResultLine | null;
8720
- dimensionalReport?: UpdateAmcTypeResultLine | null;
8721
- dyePenetrantReport?: UpdateAmcTypeResultLine | null;
8722
- visualReport?: UpdateAmcTypeResultLine | null;
8723
- certificateOfAnalyticalAndMechanicalTests?: UpdateAmcTypeResultLine | null;
8724
- certificateOfTest?: UpdateAmcTypeResultLine | null;
8725
- technicalReport?: UpdateAmcTypeResultLine | null;
8726
- microExaminationReport?: UpdateAmcTypeResultLine | null;
8727
- radiologicalReport?: UpdateAmcTypeResultLine | null;
8728
- }
8729
- export interface UpdateAmcChemistrySpecificationResultDto {
8730
- carbon?: UpdateAmcSpecificationResultLineDto | null;
8731
- manganese?: UpdateAmcSpecificationResultLineDto | null;
8732
- silicon?: UpdateAmcSpecificationResultLineDto | null;
8733
- phosphorus?: UpdateAmcSpecificationResultLineDto | null;
8734
- sulfur?: UpdateAmcSpecificationResultLineDto | null;
8735
- chromium?: UpdateAmcSpecificationResultLineDto | null;
8736
- nickel?: UpdateAmcSpecificationResultLineDto | null;
8737
- molybdenum?: UpdateAmcSpecificationResultLineDto | null;
8738
- copper?: UpdateAmcSpecificationResultLineDto | null;
8739
- nitrogen?: UpdateAmcSpecificationResultLineDto | null;
8740
- wolfram?: UpdateAmcSpecificationResultLineDto | null;
8741
- iron?: UpdateAmcSpecificationResultLineDto | null;
8742
- }
8743
- export interface UpdateAmcSpecificationResultLineDto {
8703
+ export interface AmcUpdateCertificateTypeSignatureResultsDto {
8704
+ certifiedBy?: AmcUpdateCertificateTypeResultLine | null;
8705
+ position?: AmcUpdateCertificateTypeResultLine | null;
8706
+ signature?: AmcUpdateCertificateTypeResultLine | null;
8707
+ date?: AmcUpdateCertificateTypeResultLine | null;
8708
+ stamp?: AmcUpdateCertificateTypeResultLine | null;
8709
+ }
8710
+ export interface AmcUpdateCertificateTypeThirdPartyResultsDto {
8711
+ inspectionBody?: AmcUpdateCertificateTypeResultLine | null;
8712
+ inspectorName?: AmcUpdateCertificateTypeResultLine | null;
8713
+ position?: AmcUpdateCertificateTypeResultLine | null;
8714
+ verificationMethod?: AmcUpdateCertificateTypeResultLine | null;
8715
+ signature?: AmcUpdateCertificateTypeResultLine | null;
8716
+ date?: AmcUpdateCertificateTypeResultLine | null;
8717
+ stamp?: AmcUpdateCertificateTypeResultLine | null;
8718
+ }
8719
+ export interface AmcUpdateCertificateTypeCertificationResultsDto {
8720
+ certificateOfCompliance?: AmcUpdateCertificateTypeResultLine | null;
8721
+ inspectionCertificate?: AmcUpdateCertificateTypeResultLine | null;
8722
+ }
8723
+ export interface AmcUpdateCertificateTypeProductAndOrderInformationResultsDto {
8724
+ productDescription?: AmcUpdateCertificateTypeResultLine | null;
8725
+ materialGrade?: AmcUpdateCertificateTypeResultLine | null;
8726
+ customer?: AmcUpdateCertificateTypeResultLine | null;
8727
+ customerOrderNumber?: AmcUpdateCertificateTypeResultLine | null;
8728
+ dimensionsOrWeight?: AmcUpdateCertificateTypeResultLine | null;
8729
+ batchNumber?: AmcUpdateCertificateTypeResultLine | null;
8730
+ heatNumber?: AmcUpdateCertificateTypeResultLine | null;
8731
+ relatedStandards?: AmcUpdateCertificateTypeResultLine | null;
8732
+ }
8733
+ export interface AmcUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
8734
+ usedStandards?: AmcUpdateCertificateTypeResultLine | null;
8735
+ }
8736
+ export interface AmcUpdateCertificateTypeTestResultsResultsDto {
8737
+ mechanicalProperties?: AmcUpdateCertificateTypeResultLine | null;
8738
+ chemicalAnalysis?: AmcUpdateCertificateTypeResultLine | null;
8739
+ impactTests?: AmcUpdateCertificateTypeResultLine | null;
8740
+ corrosionTests?: AmcUpdateCertificateTypeResultLine | null;
8741
+ ferriteContentAndMicrostructure?: AmcUpdateCertificateTypeResultLine | null;
8742
+ }
8743
+ export interface AmcUpdateCertificateTypeDocumentTypesResultsDto {
8744
+ heatTreatmentCertificate?: AmcUpdateCertificateTypeResultLine | null;
8745
+ ultrasonicControlCertificate?: AmcUpdateCertificateTypeResultLine | null;
8746
+ liquidPenetrantCertificate?: AmcUpdateCertificateTypeResultLine | null;
8747
+ testReport?: AmcUpdateCertificateTypeResultLine | null;
8748
+ dimensionalReport?: AmcUpdateCertificateTypeResultLine | null;
8749
+ dyePenetrantReport?: AmcUpdateCertificateTypeResultLine | null;
8750
+ visualReport?: AmcUpdateCertificateTypeResultLine | null;
8751
+ certificateOfAnalyticalAndMechanicalTests?: AmcUpdateCertificateTypeResultLine | null;
8752
+ certificateOfTest?: AmcUpdateCertificateTypeResultLine | null;
8753
+ technicalReport?: AmcUpdateCertificateTypeResultLine | null;
8754
+ microExaminationReport?: AmcUpdateCertificateTypeResultLine | null;
8755
+ radiologicalReport?: AmcUpdateCertificateTypeResultLine | null;
8756
+ }
8757
+ export interface AmcUpdateSpecificationChemistryResultsDto {
8758
+ carbon?: AmcUpdateSpecificationResultLineDto | null;
8759
+ manganese?: AmcUpdateSpecificationResultLineDto | null;
8760
+ silicon?: AmcUpdateSpecificationResultLineDto | null;
8761
+ phosphorus?: AmcUpdateSpecificationResultLineDto | null;
8762
+ sulfur?: AmcUpdateSpecificationResultLineDto | null;
8763
+ chromium?: AmcUpdateSpecificationResultLineDto | null;
8764
+ nickel?: AmcUpdateSpecificationResultLineDto | null;
8765
+ molybdenum?: AmcUpdateSpecificationResultLineDto | null;
8766
+ copper?: AmcUpdateSpecificationResultLineDto | null;
8767
+ nitrogen?: AmcUpdateSpecificationResultLineDto | null;
8768
+ wolfram?: AmcUpdateSpecificationResultLineDto | null;
8769
+ iron?: AmcUpdateSpecificationResultLineDto | null;
8770
+ }
8771
+ export interface AmcUpdateSpecificationResultLineDto {
8744
8772
  approved?: boolean;
8745
8773
  comment?: string | null;
8746
8774
  }
8747
- export interface UpdateAmcMechanicalSpecificationResultDto {
8748
- yieldStrength?: UpdateAmcSpecificationResultLineDto | null;
8749
- tensileStrength?: UpdateAmcSpecificationResultLineDto | null;
8750
- elongation?: UpdateAmcSpecificationResultLineDto | null;
8751
- reductionOfArea?: UpdateAmcSpecificationResultLineDto | null;
8752
- impactEnergy?: UpdateAmcSpecificationResultLineDto | null;
8753
- hardness?: UpdateAmcSpecificationResultLineDto | null;
8775
+ export interface AmcUpdateSpecificationMechanicalResultsDto {
8776
+ yieldStrength?: AmcUpdateSpecificationResultLineDto | null;
8777
+ tensileStrength?: AmcUpdateSpecificationResultLineDto | null;
8778
+ elongation?: AmcUpdateSpecificationResultLineDto | null;
8779
+ reductionOfArea?: AmcUpdateSpecificationResultLineDto | null;
8780
+ impactEnergy?: AmcUpdateSpecificationResultLineDto | null;
8781
+ hardness?: AmcUpdateSpecificationResultLineDto | null;
8754
8782
  }
8755
- export interface UpdateAmcFerriteSpecificationResultDto {
8756
- ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
8783
+ export interface AmcUpdateSpecificationFerriteResultsDto {
8784
+ ferriteContent?: AmcUpdateSpecificationResultLineDto | null;
8757
8785
  }
8758
- export interface UpdateAmcHeatTreatmentSpecificationResultDto {
8759
- heatTreatmentOverrides: (UpdateAmcSpecificationResultLineDto | null)[];
8786
+ export interface AmcUpdateSpecificationHeatTreatmentResultsDto {
8787
+ heatTreatmentOverrides: (AmcUpdateSpecificationResultLineDto | null)[];
8760
8788
  }
8761
8789
  export interface AmcSpecificationLiteDto {
8762
8790
  specificationId: string;
@@ -8774,7 +8802,7 @@ export interface AmcSpecificationLiteDto {
8774
8802
  updatedBy?: string | null;
8775
8803
  updatedById?: string | null;
8776
8804
  }
8777
- export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected";
8805
+ export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8778
8806
  export interface AmcSpecificationDto {
8779
8807
  specificationId: string;
8780
8808
  version: number;
@@ -8820,7 +8848,7 @@ export interface AmcSpecificationLineDto {
8820
8848
  value2?: number | null;
8821
8849
  symbol: AmcSpecificationSymbol;
8822
8850
  }
8823
- export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
8851
+ export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8824
8852
  export type AmcSpecificationSymbol = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
8825
8853
  export interface AmcMechanicalSpecificationDto {
8826
8854
  yieldStrength?: AmcSpecificationLineDto | null;
@@ -8866,12 +8894,14 @@ export interface UpdateAmcSpecificationDto {
8866
8894
  heatSpecification: AmcHeatTreatmentSpecificationDto;
8867
8895
  }
8868
8896
  export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8869
- export interface AmcTypeLiteDto {
8870
- typeId: string;
8897
+ export interface AmcCdfEntityReadBase {
8898
+ }
8899
+ export interface AmcCertificateTypeLiteDto extends AmcCdfEntityReadBase {
8900
+ certificateTypeId: string;
8871
8901
  version: number;
8872
8902
  name: string;
8873
8903
  revision: string;
8874
- status: AmcTypeStatus;
8904
+ status: AmcCertificateTypeStatus;
8875
8905
  description?: string | null;
8876
8906
  isStandardCertificateType: boolean;
8877
8907
  created: Date;
@@ -8879,15 +8909,16 @@ export interface AmcTypeLiteDto {
8879
8909
  createdById: string;
8880
8910
  updatedBy?: string | null;
8881
8911
  updatedById?: string | null;
8912
+ updated: Date;
8882
8913
  }
8883
- export type AmcTypeStatus = "Draft" | "Released" | "Expired" | "Rejected";
8884
- export interface AmcTypeDto {
8885
- typeId: string;
8914
+ export type AmcCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8915
+ export interface AmcCertificateTypeDto extends AmcCdfEntityReadBase {
8916
+ certificateTypeId: string;
8886
8917
  version: number;
8887
- allVersions: AmcTypeVersionDto[];
8918
+ allVersions: AmcCertificateTypeVersionDto[];
8888
8919
  name: string;
8889
8920
  revision: string;
8890
- status: AmcTypeStatus;
8921
+ status: AmcCertificateTypeStatus;
8891
8922
  description?: string | null;
8892
8923
  isStandardCertificateType: boolean;
8893
8924
  created: Date;
@@ -8895,35 +8926,36 @@ export interface AmcTypeDto {
8895
8926
  createdById: string;
8896
8927
  updatedBy?: string | null;
8897
8928
  updatedById?: string | null;
8898
- checks: AmcTypeChecksDto;
8929
+ updated: Date;
8930
+ requirements: AmcCertificateTypeRequirementsDto;
8899
8931
  }
8900
- export interface AmcTypeVersionDto {
8932
+ export interface AmcCertificateTypeVersionDto {
8901
8933
  version?: number;
8902
- status?: AmcTypeStatus;
8903
- }
8904
- export interface AmcTypeChecksDto {
8905
- manufacturer: AmcTypeManufacturerChecksDto;
8906
- signature: AmcTypeSignatureChecksDto;
8907
- thirdParty: AmcTypeThirdPartyChecksDto;
8908
- certification: AmcTypeCertificationChecksDto;
8909
- productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
8910
- testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
8911
- testResults: AmcTypeTestResultsChecksDto;
8912
- documentTypes: AmcTypeDocumentTypesChecksDto;
8913
- }
8914
- export interface AmcTypeManufacturerChecksDto {
8934
+ status?: AmcCertificateTypeStatus;
8935
+ }
8936
+ export interface AmcCertificateTypeRequirementsDto {
8937
+ manufacturer: AmcCertificateTypeManufacturerRequirementsDto;
8938
+ signature: AmcCertificateTypeSignatureRequirementsDto;
8939
+ thirdParty: AmcCertificateTypeThirdPartyRequirementsDto;
8940
+ certification: AmcCertificateTypeCertificationRequirementsDto;
8941
+ productAndOrderInformation: AmcCertificateTypeProductAndOrderInformationRequirementsDto;
8942
+ testMethodsAndReferences: AmcCertificateTypeTestMethodsAndReferencesRequirementsDto;
8943
+ testResults: AmcCertificateTypeTestResultsRequirementsDto;
8944
+ documentTypes: AmcCertificateTypeDocumentTypesRequirementsDto;
8945
+ }
8946
+ export interface AmcCertificateTypeManufacturerRequirementsDto extends AmcCdfEntityReadBase {
8915
8947
  manufacturer?: boolean;
8916
8948
  address?: boolean;
8917
8949
  contact?: boolean;
8918
8950
  }
8919
- export interface AmcTypeSignatureChecksDto {
8951
+ export interface AmcCertificateTypeSignatureRequirementsDto extends AmcCdfEntityReadBase {
8920
8952
  certifiedBy?: boolean;
8921
8953
  position?: boolean;
8922
8954
  signature?: boolean;
8923
8955
  date?: boolean;
8924
8956
  stamp?: boolean;
8925
8957
  }
8926
- export interface AmcTypeThirdPartyChecksDto {
8958
+ export interface AmcCertificateTypeThirdPartyRequirementsDto extends AmcCdfEntityReadBase {
8927
8959
  inspectionBody?: boolean;
8928
8960
  inspectorName?: boolean;
8929
8961
  position?: boolean;
@@ -8932,11 +8964,11 @@ export interface AmcTypeThirdPartyChecksDto {
8932
8964
  date?: boolean;
8933
8965
  stamp?: boolean;
8934
8966
  }
8935
- export interface AmcTypeCertificationChecksDto {
8967
+ export interface AmcCertificateTypeCertificationRequirementsDto extends AmcCdfEntityReadBase {
8936
8968
  certificateOfCompliance?: boolean;
8937
8969
  inspectionCertificate?: boolean;
8938
8970
  }
8939
- export interface AmcTypeProductAndOrderInformationChecksDto {
8971
+ export interface AmcCertificateTypeProductAndOrderInformationRequirementsDto extends AmcCdfEntityReadBase {
8940
8972
  productDescription?: boolean;
8941
8973
  materialGrade?: boolean;
8942
8974
  customer?: boolean;
@@ -8946,17 +8978,17 @@ export interface AmcTypeProductAndOrderInformationChecksDto {
8946
8978
  heatNumber?: boolean;
8947
8979
  relatedStandards?: boolean;
8948
8980
  }
8949
- export interface AmcTypeTestMethodsAndReferencesChecksDto {
8981
+ export interface AmcCertificateTypeTestMethodsAndReferencesRequirementsDto extends AmcCdfEntityReadBase {
8950
8982
  usedStandards?: boolean;
8951
8983
  }
8952
- export interface AmcTypeTestResultsChecksDto {
8984
+ export interface AmcCertificateTypeTestResultsRequirementsDto extends AmcCdfEntityReadBase {
8953
8985
  mechanicalProperties?: boolean;
8954
8986
  chemicalAnalysis?: boolean;
8955
8987
  impactTests?: boolean;
8956
8988
  corrosionTests?: boolean;
8957
8989
  ferriteContentAndMicrostructure?: boolean;
8958
8990
  }
8959
- export interface AmcTypeDocumentTypesChecksDto {
8991
+ export interface AmcCertificateTypeDocumentTypesRequirementsDto extends AmcCdfEntityReadBase {
8960
8992
  heatTreatmentCertificate?: boolean;
8961
8993
  ultrasonicControlCertificate?: boolean;
8962
8994
  liquidPenetrantCertificate?: boolean;
@@ -8970,22 +9002,87 @@ export interface AmcTypeDocumentTypesChecksDto {
8970
9002
  microExaminationReport?: boolean;
8971
9003
  radiologicalReport?: boolean;
8972
9004
  }
8973
- export interface CreateAmcTypeRequestDto {
9005
+ export interface AmcCreateAmcCertificateTypeRequestDto {
8974
9006
  name: string;
8975
9007
  revision: string;
8976
9008
  description?: string | null;
8977
- createCopy: boolean;
8978
- specificationId?: string | null;
8979
- specificationVersion?: string | null;
8980
9009
  }
8981
- export interface UpdateAmcTypeDto {
8982
- typeId: string;
8983
- version: number;
8984
- status: AmcTypeStatusUpdate;
9010
+ export interface AmcUpdateAmcCertificateTypeRequestDto {
9011
+ name?: string | null;
9012
+ revision?: string | null;
9013
+ status?: AmcCertificateTypeStatus | null;
8985
9014
  description?: string | null;
8986
- checks: AmcTypeChecksDto;
9015
+ requirements?: AmcCertificateTypeRequirementsUpdateDto | null;
9016
+ }
9017
+ export interface AmcCertificateTypeRequirementsUpdateDto {
9018
+ manufacturer?: AmcCertificateTypeManufacturerRequirementsUpdateDto | null;
9019
+ signature?: AmcCertificateTypeSignatureRequirementsUpdateDto | null;
9020
+ thirdParty?: AmcCertificateTypeThirdPartyRequirementsUpdateDto | null;
9021
+ certification?: AmcCertificateTypeCertificationRequirementsUpdateDto | null;
9022
+ productAndOrderInformation?: AmcCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
9023
+ testMethodsAndReferences?: AmcCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
9024
+ testResults?: AmcCertificateTypeTestResultsRequirementsUpdateDto | null;
9025
+ documentTypes?: AmcCertificateTypeDocumentTypesRequirementsUpdateDto | null;
9026
+ }
9027
+ export interface AmcCertificateTypeManufacturerRequirementsUpdateDto {
9028
+ manufacturer?: boolean | null;
9029
+ address?: boolean | null;
9030
+ contact?: boolean | null;
9031
+ }
9032
+ export interface AmcCertificateTypeSignatureRequirementsUpdateDto {
9033
+ certifiedBy?: boolean | null;
9034
+ position?: boolean | null;
9035
+ signature?: boolean | null;
9036
+ date?: boolean | null;
9037
+ stamp?: boolean | null;
9038
+ }
9039
+ export interface AmcCertificateTypeThirdPartyRequirementsUpdateDto {
9040
+ inspectionBody?: boolean | null;
9041
+ inspectorName?: boolean | null;
9042
+ position?: boolean | null;
9043
+ verificationMethod?: boolean | null;
9044
+ signature?: boolean | null;
9045
+ date?: boolean | null;
9046
+ stamp?: boolean | null;
9047
+ }
9048
+ export interface AmcCertificateTypeCertificationRequirementsUpdateDto {
9049
+ certificateOfCompliance?: boolean | null;
9050
+ inspectionCertificate?: boolean | null;
9051
+ }
9052
+ export interface AmcCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
9053
+ productDescription?: boolean | null;
9054
+ materialGrade?: boolean | null;
9055
+ customer?: boolean | null;
9056
+ customerOrderNumber?: boolean | null;
9057
+ dimensionsOrWeight?: boolean | null;
9058
+ batchNumber?: boolean | null;
9059
+ heatNumber?: boolean | null;
9060
+ relatedStandards?: boolean | null;
9061
+ }
9062
+ export interface AmcCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
9063
+ usedStandards?: boolean | null;
9064
+ }
9065
+ export interface AmcCertificateTypeTestResultsRequirementsUpdateDto {
9066
+ mechanicalProperties?: boolean | null;
9067
+ chemicalAnalysis?: boolean | null;
9068
+ impactTests?: boolean | null;
9069
+ corrosionTests?: boolean | null;
9070
+ ferriteContentAndMicrostructure?: boolean | null;
9071
+ }
9072
+ export interface AmcCertificateTypeDocumentTypesRequirementsUpdateDto {
9073
+ heatTreatmentCertificate?: boolean | null;
9074
+ ultrasonicControlCertificate?: boolean | null;
9075
+ liquidPenetrantCertificate?: boolean | null;
9076
+ testReport?: boolean | null;
9077
+ dimensionalReport?: boolean | null;
9078
+ dyePenetrantReport?: boolean | null;
9079
+ visualReport?: boolean | null;
9080
+ certificateOfAnalyticalAndMechanicalTests?: boolean | null;
9081
+ certificateOfTest?: boolean | null;
9082
+ technicalReport?: boolean | null;
9083
+ microExaminationReport?: boolean | null;
9084
+ radiologicalReport?: boolean | null;
8987
9085
  }
8988
- export type AmcTypeStatusUpdate = "NotModified" | "Released" | "Obsolete";
8989
9086
  export interface FileParameter {
8990
9087
  data: any;
8991
9088
  fileName: string;