@ignos/api-client 20260126.0.13861 → 20260128.0.13873-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +266 -1723
- package/lib/ignosportal-api.js +5389 -8686
- package/package.json +1 -1
- package/src/ignosportal-api.ts +13709 -18446
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1447,102 +1447,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1447
1447
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1448
1448
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1449
1449
|
}
|
|
1450
|
-
export interface IExternalAccessClient {
|
|
1451
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1452
|
-
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1453
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1454
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1455
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1456
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1457
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1458
|
-
}
|
|
1459
|
-
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
1460
|
-
private http;
|
|
1461
|
-
private baseUrl;
|
|
1462
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1463
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1464
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1465
|
-
});
|
|
1466
|
-
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
1467
|
-
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
1468
|
-
createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1469
|
-
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1470
|
-
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
1471
|
-
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
1472
|
-
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
1473
|
-
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
1474
|
-
listRoles(): Promise<ExternalRoleDto[]>;
|
|
1475
|
-
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
1476
|
-
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
1477
|
-
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
1478
|
-
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
1479
|
-
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
1480
|
-
}
|
|
1481
|
-
export interface IExternalClient {
|
|
1482
|
-
listInvites(): Promise<InviteDto[]>;
|
|
1483
|
-
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1484
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
1485
|
-
}
|
|
1486
|
-
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
1487
|
-
private http;
|
|
1488
|
-
private baseUrl;
|
|
1489
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1490
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1491
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1492
|
-
});
|
|
1493
|
-
listInvites(): Promise<InviteDto[]>;
|
|
1494
|
-
protected processListInvites(response: Response): Promise<InviteDto[]>;
|
|
1495
|
-
acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
|
|
1496
|
-
protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
|
|
1497
|
-
listCompanies(): Promise<CompanyDto[]>;
|
|
1498
|
-
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
1499
|
-
}
|
|
1500
|
-
export interface ISuppliersClient {
|
|
1501
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1502
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1503
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
1504
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1505
|
-
deleteSupplier(id: string): Promise<void>;
|
|
1506
|
-
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1507
|
-
/**
|
|
1508
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
1509
|
-
*/
|
|
1510
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1511
|
-
/**
|
|
1512
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1513
|
-
*/
|
|
1514
|
-
deleteSupplierMappings(): Promise<void>;
|
|
1515
|
-
}
|
|
1516
|
-
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
1517
|
-
private http;
|
|
1518
|
-
private baseUrl;
|
|
1519
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1520
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1521
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1522
|
-
});
|
|
1523
|
-
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
1524
|
-
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
1525
|
-
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
1526
|
-
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
1527
|
-
deleteSupplierInvite(id: string): Promise<void>;
|
|
1528
|
-
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
1529
|
-
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
1530
|
-
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
1531
|
-
deleteSupplier(id: string): Promise<void>;
|
|
1532
|
-
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
1533
|
-
importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
|
|
1534
|
-
protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
|
|
1535
|
-
/**
|
|
1536
|
-
* Creates a mapping between old supplier id and new supplier id.
|
|
1537
|
-
*/
|
|
1538
|
-
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
1539
|
-
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
1540
|
-
/**
|
|
1541
|
-
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
1542
|
-
*/
|
|
1543
|
-
deleteSupplierMappings(): Promise<void>;
|
|
1544
|
-
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
1545
|
-
}
|
|
1546
1450
|
export interface ICncFileTransferClient {
|
|
1547
1451
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1548
1452
|
startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
|
|
@@ -3225,77 +3129,95 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3225
3129
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3226
3130
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3227
3131
|
}
|
|
3228
|
-
export interface
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3132
|
+
export interface IExternalAccessClient {
|
|
3133
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3134
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3135
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3136
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3137
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3138
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3139
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3233
3140
|
}
|
|
3234
|
-
export declare class
|
|
3141
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3235
3142
|
private http;
|
|
3236
3143
|
private baseUrl;
|
|
3237
3144
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3238
3145
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3239
3146
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3240
3147
|
});
|
|
3241
|
-
|
|
3242
|
-
protected
|
|
3243
|
-
|
|
3244
|
-
protected
|
|
3245
|
-
|
|
3246
|
-
protected
|
|
3247
|
-
|
|
3248
|
-
protected
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3148
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3149
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3150
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3151
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3152
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3153
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3154
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3155
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3156
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3157
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3158
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3159
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3160
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3161
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3162
|
+
}
|
|
3163
|
+
export interface IExternalClient {
|
|
3164
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3165
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3166
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3167
|
+
}
|
|
3168
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3258
3169
|
private http;
|
|
3259
3170
|
private baseUrl;
|
|
3260
3171
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3261
3172
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3262
3173
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3263
3174
|
});
|
|
3264
|
-
|
|
3265
|
-
protected
|
|
3266
|
-
|
|
3267
|
-
protected
|
|
3268
|
-
|
|
3269
|
-
protected
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3175
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3176
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3177
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3178
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3179
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3180
|
+
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3181
|
+
}
|
|
3182
|
+
export interface ISuppliersClient {
|
|
3183
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3184
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3185
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3186
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3187
|
+
/**
|
|
3188
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3189
|
+
*/
|
|
3190
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3191
|
+
/**
|
|
3192
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3193
|
+
*/
|
|
3194
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3195
|
+
}
|
|
3196
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3283
3197
|
private http;
|
|
3284
3198
|
private baseUrl;
|
|
3285
3199
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3286
3200
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3287
3201
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3288
3202
|
});
|
|
3289
|
-
|
|
3290
|
-
protected
|
|
3291
|
-
|
|
3292
|
-
protected
|
|
3293
|
-
|
|
3294
|
-
protected
|
|
3295
|
-
|
|
3296
|
-
protected
|
|
3297
|
-
|
|
3298
|
-
|
|
3203
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3204
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3205
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3206
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3207
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3208
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3209
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3210
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3211
|
+
/**
|
|
3212
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3213
|
+
*/
|
|
3214
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3215
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3216
|
+
/**
|
|
3217
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3218
|
+
*/
|
|
3219
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3220
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3299
3221
|
}
|
|
3300
3222
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
3301
3223
|
displayName: string;
|
|
@@ -8613,321 +8535,83 @@ export interface IDocumentGeneratorTypeDto {
|
|
|
8613
8535
|
key: string;
|
|
8614
8536
|
description: string;
|
|
8615
8537
|
}
|
|
8616
|
-
export declare class
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
|
|
8538
|
+
export declare class CncMachineTransferDto implements ICncMachineTransferDto {
|
|
8539
|
+
id: string;
|
|
8540
|
+
cncMachineOperationId?: string | null;
|
|
8541
|
+
cncMachineId: string;
|
|
8542
|
+
cncMachineName: string;
|
|
8543
|
+
direction: FileTransferDirection;
|
|
8544
|
+
files: string[];
|
|
8545
|
+
status: FileTransferStatus;
|
|
8546
|
+
statusMessage?: string | null;
|
|
8547
|
+
timestamp: Date;
|
|
8548
|
+
constructor(data?: ICncMachineTransferDto);
|
|
8622
8549
|
init(_data?: any): void;
|
|
8623
|
-
static fromJS(data: any):
|
|
8550
|
+
static fromJS(data: any): CncMachineTransferDto;
|
|
8624
8551
|
toJSON(data?: any): any;
|
|
8625
8552
|
}
|
|
8626
|
-
export interface
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
|
|
8553
|
+
export interface ICncMachineTransferDto {
|
|
8554
|
+
id: string;
|
|
8555
|
+
cncMachineOperationId?: string | null;
|
|
8556
|
+
cncMachineId: string;
|
|
8557
|
+
cncMachineName: string;
|
|
8558
|
+
direction: FileTransferDirection;
|
|
8559
|
+
files: string[];
|
|
8560
|
+
status: FileTransferStatus;
|
|
8561
|
+
statusMessage?: string | null;
|
|
8562
|
+
timestamp: Date;
|
|
8631
8563
|
}
|
|
8632
|
-
export
|
|
8633
|
-
|
|
8634
|
-
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
|
-
|
|
8564
|
+
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
8565
|
+
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
8566
|
+
export declare class UploadCamFileDto implements IUploadCamFileDto {
|
|
8567
|
+
uploadUrl: string;
|
|
8568
|
+
path: string;
|
|
8569
|
+
url: string;
|
|
8570
|
+
constructor(data?: IUploadCamFileDto);
|
|
8638
8571
|
init(_data?: any): void;
|
|
8639
|
-
static fromJS(data: any):
|
|
8572
|
+
static fromJS(data: any): UploadCamFileDto;
|
|
8640
8573
|
toJSON(data?: any): any;
|
|
8641
8574
|
}
|
|
8642
|
-
export interface
|
|
8643
|
-
|
|
8644
|
-
|
|
8645
|
-
|
|
8646
|
-
companyId?: string | null;
|
|
8575
|
+
export interface IUploadCamFileDto {
|
|
8576
|
+
uploadUrl: string;
|
|
8577
|
+
path: string;
|
|
8578
|
+
url: string;
|
|
8647
8579
|
}
|
|
8648
|
-
export declare class
|
|
8649
|
-
|
|
8650
|
-
|
|
8651
|
-
companyId?: string | null;
|
|
8652
|
-
constructor(data?: IUpdateCompanyUserRequest);
|
|
8580
|
+
export declare class UploadCamFileRequest implements IUploadCamFileRequest {
|
|
8581
|
+
filename: string;
|
|
8582
|
+
constructor(data?: IUploadCamFileRequest);
|
|
8653
8583
|
init(_data?: any): void;
|
|
8654
|
-
static fromJS(data: any):
|
|
8584
|
+
static fromJS(data: any): UploadCamFileRequest;
|
|
8655
8585
|
toJSON(data?: any): any;
|
|
8656
8586
|
}
|
|
8657
|
-
export interface
|
|
8658
|
-
|
|
8659
|
-
roles: string[];
|
|
8660
|
-
companyId?: string | null;
|
|
8587
|
+
export interface IUploadCamFileRequest {
|
|
8588
|
+
filename: string;
|
|
8661
8589
|
}
|
|
8662
|
-
export declare class
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
constructor(data?:
|
|
8590
|
+
export declare class CamTransferDto implements ICamTransferDto {
|
|
8591
|
+
path: string;
|
|
8592
|
+
content: string;
|
|
8593
|
+
constructor(data?: ICamTransferDto);
|
|
8666
8594
|
init(_data?: any): void;
|
|
8667
|
-
static fromJS(data: any):
|
|
8595
|
+
static fromJS(data: any): CamTransferDto;
|
|
8668
8596
|
toJSON(data?: any): any;
|
|
8669
8597
|
}
|
|
8670
|
-
export interface
|
|
8671
|
-
|
|
8672
|
-
|
|
8598
|
+
export interface ICamTransferDto {
|
|
8599
|
+
path: string;
|
|
8600
|
+
content: string;
|
|
8673
8601
|
}
|
|
8674
|
-
export declare class
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
|
-
supplierName?: string | null;
|
|
8680
|
-
constructor(data?: ICompanyCustomerDto);
|
|
8602
|
+
export declare class StartCamTransferToMachine implements IStartCamTransferToMachine {
|
|
8603
|
+
path: string;
|
|
8604
|
+
content: string;
|
|
8605
|
+
cncMachineId: string;
|
|
8606
|
+
constructor(data?: IStartCamTransferToMachine);
|
|
8681
8607
|
init(_data?: any): void;
|
|
8682
|
-
static fromJS(data: any):
|
|
8608
|
+
static fromJS(data: any): StartCamTransferToMachine;
|
|
8683
8609
|
toJSON(data?: any): any;
|
|
8684
8610
|
}
|
|
8685
|
-
export interface
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
supplierId?: string | null;
|
|
8690
|
-
supplierName?: string | null;
|
|
8691
|
-
}
|
|
8692
|
-
export declare class InviteDto implements IInviteDto {
|
|
8693
|
-
tenantId: string;
|
|
8694
|
-
companyName: string;
|
|
8695
|
-
id: string;
|
|
8696
|
-
supplierId: string;
|
|
8697
|
-
supplierName: string;
|
|
8698
|
-
username: string;
|
|
8699
|
-
deadline: Date;
|
|
8700
|
-
createdTime: Date;
|
|
8701
|
-
createdBy: string;
|
|
8702
|
-
constructor(data?: IInviteDto);
|
|
8703
|
-
init(_data?: any): void;
|
|
8704
|
-
static fromJS(data: any): InviteDto;
|
|
8705
|
-
toJSON(data?: any): any;
|
|
8706
|
-
}
|
|
8707
|
-
export interface IInviteDto {
|
|
8708
|
-
tenantId: string;
|
|
8709
|
-
companyName: string;
|
|
8710
|
-
id: string;
|
|
8711
|
-
supplierId: string;
|
|
8712
|
-
supplierName: string;
|
|
8713
|
-
username: string;
|
|
8714
|
-
deadline: Date;
|
|
8715
|
-
createdTime: Date;
|
|
8716
|
-
createdBy: string;
|
|
8717
|
-
}
|
|
8718
|
-
export declare class CompanyDto implements ICompanyDto {
|
|
8719
|
-
id?: string | null;
|
|
8720
|
-
name?: string | null;
|
|
8721
|
-
organizationNumber?: string | null;
|
|
8722
|
-
country?: string | null;
|
|
8723
|
-
tenantId?: string | null;
|
|
8724
|
-
constructor(data?: ICompanyDto);
|
|
8725
|
-
init(_data?: any): void;
|
|
8726
|
-
static fromJS(data: any): CompanyDto;
|
|
8727
|
-
toJSON(data?: any): any;
|
|
8728
|
-
}
|
|
8729
|
-
export interface ICompanyDto {
|
|
8730
|
-
id?: string | null;
|
|
8731
|
-
name?: string | null;
|
|
8732
|
-
organizationNumber?: string | null;
|
|
8733
|
-
country?: string | null;
|
|
8734
|
-
tenantId?: string | null;
|
|
8735
|
-
}
|
|
8736
|
-
export declare class AcceptSupplierInviteRequest implements IAcceptSupplierInviteRequest {
|
|
8737
|
-
tenantId: string;
|
|
8738
|
-
existingCompanyId?: string | null;
|
|
8739
|
-
companyName?: string | null;
|
|
8740
|
-
organizationNumber?: string | null;
|
|
8741
|
-
threeLetterIsoCountry?: string | null;
|
|
8742
|
-
constructor(data?: IAcceptSupplierInviteRequest);
|
|
8743
|
-
init(_data?: any): void;
|
|
8744
|
-
static fromJS(data: any): AcceptSupplierInviteRequest;
|
|
8745
|
-
toJSON(data?: any): any;
|
|
8746
|
-
}
|
|
8747
|
-
export interface IAcceptSupplierInviteRequest {
|
|
8748
|
-
tenantId: string;
|
|
8749
|
-
existingCompanyId?: string | null;
|
|
8750
|
-
companyName?: string | null;
|
|
8751
|
-
organizationNumber?: string | null;
|
|
8752
|
-
threeLetterIsoCountry?: string | null;
|
|
8753
|
-
}
|
|
8754
|
-
export declare class SupplierInviteDto implements ISupplierInviteDto {
|
|
8755
|
-
id: string;
|
|
8756
|
-
supplierId: string;
|
|
8757
|
-
name: string;
|
|
8758
|
-
username: string;
|
|
8759
|
-
deadline: Date;
|
|
8760
|
-
createdTime: Date;
|
|
8761
|
-
createdBy: string;
|
|
8762
|
-
constructor(data?: ISupplierInviteDto);
|
|
8763
|
-
init(_data?: any): void;
|
|
8764
|
-
static fromJS(data: any): SupplierInviteDto;
|
|
8765
|
-
toJSON(data?: any): any;
|
|
8766
|
-
}
|
|
8767
|
-
export interface ISupplierInviteDto {
|
|
8768
|
-
id: string;
|
|
8769
|
-
supplierId: string;
|
|
8770
|
-
name: string;
|
|
8771
|
-
username: string;
|
|
8772
|
-
deadline: Date;
|
|
8773
|
-
createdTime: Date;
|
|
8774
|
-
createdBy: string;
|
|
8775
|
-
}
|
|
8776
|
-
export declare class CreateSupplierInvite implements ICreateSupplierInvite {
|
|
8777
|
-
supplierId: string;
|
|
8778
|
-
name: string;
|
|
8779
|
-
username: string;
|
|
8780
|
-
deadline: Date;
|
|
8781
|
-
constructor(data?: ICreateSupplierInvite);
|
|
8782
|
-
init(_data?: any): void;
|
|
8783
|
-
static fromJS(data: any): CreateSupplierInvite;
|
|
8784
|
-
toJSON(data?: any): any;
|
|
8785
|
-
}
|
|
8786
|
-
export interface ICreateSupplierInvite {
|
|
8787
|
-
supplierId: string;
|
|
8788
|
-
name: string;
|
|
8789
|
-
username: string;
|
|
8790
|
-
deadline: Date;
|
|
8791
|
-
}
|
|
8792
|
-
export declare class ExternalSupplierDto implements IExternalSupplierDto {
|
|
8793
|
-
id: string;
|
|
8794
|
-
name: string;
|
|
8795
|
-
companyId: string;
|
|
8796
|
-
active: boolean;
|
|
8797
|
-
constructor(data?: IExternalSupplierDto);
|
|
8798
|
-
init(_data?: any): void;
|
|
8799
|
-
static fromJS(data: any): ExternalSupplierDto;
|
|
8800
|
-
toJSON(data?: any): any;
|
|
8801
|
-
}
|
|
8802
|
-
export interface IExternalSupplierDto {
|
|
8803
|
-
id: string;
|
|
8804
|
-
name: string;
|
|
8805
|
-
companyId: string;
|
|
8806
|
-
active: boolean;
|
|
8807
|
-
}
|
|
8808
|
-
export declare class ImportSupplier implements IImportSupplier {
|
|
8809
|
-
supplierId: string;
|
|
8810
|
-
name: string;
|
|
8811
|
-
organizationNumber?: string | null;
|
|
8812
|
-
threeLetterIsoCountry: string;
|
|
8813
|
-
users: ImportSupplierUserDto[];
|
|
8814
|
-
constructor(data?: IImportSupplier);
|
|
8815
|
-
init(_data?: any): void;
|
|
8816
|
-
static fromJS(data: any): ImportSupplier;
|
|
8817
|
-
toJSON(data?: any): any;
|
|
8818
|
-
}
|
|
8819
|
-
export interface IImportSupplier {
|
|
8820
|
-
supplierId: string;
|
|
8821
|
-
name: string;
|
|
8822
|
-
organizationNumber?: string | null;
|
|
8823
|
-
threeLetterIsoCountry: string;
|
|
8824
|
-
users: ImportSupplierUserDto[];
|
|
8825
|
-
}
|
|
8826
|
-
export declare class ImportSupplierUserDto implements IImportSupplierUserDto {
|
|
8827
|
-
username: string;
|
|
8828
|
-
name: string;
|
|
8829
|
-
roles: string[];
|
|
8830
|
-
constructor(data?: IImportSupplierUserDto);
|
|
8831
|
-
init(_data?: any): void;
|
|
8832
|
-
static fromJS(data: any): ImportSupplierUserDto;
|
|
8833
|
-
toJSON(data?: any): any;
|
|
8834
|
-
}
|
|
8835
|
-
export interface IImportSupplierUserDto {
|
|
8836
|
-
username: string;
|
|
8837
|
-
name: string;
|
|
8838
|
-
roles: string[];
|
|
8839
|
-
}
|
|
8840
|
-
export declare class CreateSupplierMapping implements ICreateSupplierMapping {
|
|
8841
|
-
companyId: string;
|
|
8842
|
-
existingSupplierId: string;
|
|
8843
|
-
newSupplierId: string;
|
|
8844
|
-
constructor(data?: ICreateSupplierMapping);
|
|
8845
|
-
init(_data?: any): void;
|
|
8846
|
-
static fromJS(data: any): CreateSupplierMapping;
|
|
8847
|
-
toJSON(data?: any): any;
|
|
8848
|
-
}
|
|
8849
|
-
export interface ICreateSupplierMapping {
|
|
8850
|
-
companyId: string;
|
|
8851
|
-
existingSupplierId: string;
|
|
8852
|
-
newSupplierId: string;
|
|
8853
|
-
}
|
|
8854
|
-
export declare class CncMachineTransferDto implements ICncMachineTransferDto {
|
|
8855
|
-
id: string;
|
|
8856
|
-
cncMachineOperationId?: string | null;
|
|
8857
|
-
cncMachineId: string;
|
|
8858
|
-
cncMachineName: string;
|
|
8859
|
-
direction: FileTransferDirection;
|
|
8860
|
-
files: string[];
|
|
8861
|
-
status: FileTransferStatus;
|
|
8862
|
-
statusMessage?: string | null;
|
|
8863
|
-
timestamp: Date;
|
|
8864
|
-
constructor(data?: ICncMachineTransferDto);
|
|
8865
|
-
init(_data?: any): void;
|
|
8866
|
-
static fromJS(data: any): CncMachineTransferDto;
|
|
8867
|
-
toJSON(data?: any): any;
|
|
8868
|
-
}
|
|
8869
|
-
export interface ICncMachineTransferDto {
|
|
8870
|
-
id: string;
|
|
8871
|
-
cncMachineOperationId?: string | null;
|
|
8872
|
-
cncMachineId: string;
|
|
8873
|
-
cncMachineName: string;
|
|
8874
|
-
direction: FileTransferDirection;
|
|
8875
|
-
files: string[];
|
|
8876
|
-
status: FileTransferStatus;
|
|
8877
|
-
statusMessage?: string | null;
|
|
8878
|
-
timestamp: Date;
|
|
8879
|
-
}
|
|
8880
|
-
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
8881
|
-
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
8882
|
-
export declare class UploadCamFileDto implements IUploadCamFileDto {
|
|
8883
|
-
uploadUrl: string;
|
|
8884
|
-
path: string;
|
|
8885
|
-
url: string;
|
|
8886
|
-
constructor(data?: IUploadCamFileDto);
|
|
8887
|
-
init(_data?: any): void;
|
|
8888
|
-
static fromJS(data: any): UploadCamFileDto;
|
|
8889
|
-
toJSON(data?: any): any;
|
|
8890
|
-
}
|
|
8891
|
-
export interface IUploadCamFileDto {
|
|
8892
|
-
uploadUrl: string;
|
|
8893
|
-
path: string;
|
|
8894
|
-
url: string;
|
|
8895
|
-
}
|
|
8896
|
-
export declare class UploadCamFileRequest implements IUploadCamFileRequest {
|
|
8897
|
-
filename: string;
|
|
8898
|
-
constructor(data?: IUploadCamFileRequest);
|
|
8899
|
-
init(_data?: any): void;
|
|
8900
|
-
static fromJS(data: any): UploadCamFileRequest;
|
|
8901
|
-
toJSON(data?: any): any;
|
|
8902
|
-
}
|
|
8903
|
-
export interface IUploadCamFileRequest {
|
|
8904
|
-
filename: string;
|
|
8905
|
-
}
|
|
8906
|
-
export declare class CamTransferDto implements ICamTransferDto {
|
|
8907
|
-
path: string;
|
|
8908
|
-
content: string;
|
|
8909
|
-
constructor(data?: ICamTransferDto);
|
|
8910
|
-
init(_data?: any): void;
|
|
8911
|
-
static fromJS(data: any): CamTransferDto;
|
|
8912
|
-
toJSON(data?: any): any;
|
|
8913
|
-
}
|
|
8914
|
-
export interface ICamTransferDto {
|
|
8915
|
-
path: string;
|
|
8916
|
-
content: string;
|
|
8917
|
-
}
|
|
8918
|
-
export declare class StartCamTransferToMachine implements IStartCamTransferToMachine {
|
|
8919
|
-
path: string;
|
|
8920
|
-
content: string;
|
|
8921
|
-
cncMachineId: string;
|
|
8922
|
-
constructor(data?: IStartCamTransferToMachine);
|
|
8923
|
-
init(_data?: any): void;
|
|
8924
|
-
static fromJS(data: any): StartCamTransferToMachine;
|
|
8925
|
-
toJSON(data?: any): any;
|
|
8926
|
-
}
|
|
8927
|
-
export interface IStartCamTransferToMachine {
|
|
8928
|
-
path: string;
|
|
8929
|
-
content: string;
|
|
8930
|
-
cncMachineId: string;
|
|
8611
|
+
export interface IStartCamTransferToMachine {
|
|
8612
|
+
path: string;
|
|
8613
|
+
content: string;
|
|
8614
|
+
cncMachineId: string;
|
|
8931
8615
|
}
|
|
8932
8616
|
export declare class StartCamTransferToMachineFromTempUpload implements IStartCamTransferToMachineFromTempUpload {
|
|
8933
8617
|
uploadKey: string;
|
|
@@ -16105,1332 +15789,191 @@ export interface ISetDiscussionLastReadRequest {
|
|
|
16105
15789
|
operationId?: string | null;
|
|
16106
15790
|
resourceId?: string | null;
|
|
16107
15791
|
}
|
|
16108
|
-
export declare class
|
|
16109
|
-
|
|
16110
|
-
|
|
16111
|
-
|
|
15792
|
+
export declare class CompanyUserDto implements ICompanyUserDto {
|
|
15793
|
+
companyId: string;
|
|
15794
|
+
userObjectId: string;
|
|
15795
|
+
username?: string | null;
|
|
15796
|
+
name?: string | null;
|
|
15797
|
+
roles: string[];
|
|
15798
|
+
constructor(data?: ICompanyUserDto);
|
|
16112
15799
|
init(_data?: any): void;
|
|
16113
|
-
static fromJS(data: any):
|
|
15800
|
+
static fromJS(data: any): CompanyUserDto;
|
|
16114
15801
|
toJSON(data?: any): any;
|
|
16115
15802
|
}
|
|
16116
|
-
export interface
|
|
16117
|
-
|
|
16118
|
-
|
|
15803
|
+
export interface ICompanyUserDto {
|
|
15804
|
+
companyId: string;
|
|
15805
|
+
userObjectId: string;
|
|
15806
|
+
username?: string | null;
|
|
15807
|
+
name?: string | null;
|
|
15808
|
+
roles: string[];
|
|
16119
15809
|
}
|
|
16120
|
-
export declare class
|
|
16121
|
-
|
|
16122
|
-
|
|
16123
|
-
|
|
16124
|
-
|
|
16125
|
-
|
|
16126
|
-
workOrder?: string | null;
|
|
16127
|
-
materialCertificateTypeId?: string | null;
|
|
16128
|
-
materialCertificateTypeName?: string | null;
|
|
16129
|
-
materialCertificateTypeVersion?: number | null;
|
|
16130
|
-
specificationId: string;
|
|
16131
|
-
specificationName: string;
|
|
16132
|
-
specificationVersion: number;
|
|
16133
|
-
purchaseOrder?: string | null;
|
|
16134
|
-
purchaseOrderLine?: string | null;
|
|
16135
|
-
purchaseOrderItem?: string | null;
|
|
16136
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16137
|
-
purchaseOrderLot?: string | null;
|
|
16138
|
-
status: AmcCheckStatusDto;
|
|
16139
|
-
created: Date;
|
|
16140
|
-
createdBy: string;
|
|
16141
|
-
createdById: string;
|
|
16142
|
-
updatedBy?: string | null;
|
|
16143
|
-
updatedById?: string | null;
|
|
16144
|
-
constructor(data?: IAmcResultLiteDto);
|
|
15810
|
+
export declare class CreateCompanyUser implements ICreateCompanyUser {
|
|
15811
|
+
username: string;
|
|
15812
|
+
name: string;
|
|
15813
|
+
roles: string[];
|
|
15814
|
+
companyId?: string | null;
|
|
15815
|
+
constructor(data?: ICreateCompanyUser);
|
|
16145
15816
|
init(_data?: any): void;
|
|
16146
|
-
static fromJS(data: any):
|
|
15817
|
+
static fromJS(data: any): CreateCompanyUser;
|
|
16147
15818
|
toJSON(data?: any): any;
|
|
16148
15819
|
}
|
|
16149
|
-
export interface
|
|
16150
|
-
|
|
16151
|
-
|
|
16152
|
-
|
|
16153
|
-
|
|
16154
|
-
project?: string | null;
|
|
16155
|
-
workOrder?: string | null;
|
|
16156
|
-
materialCertificateTypeId?: string | null;
|
|
16157
|
-
materialCertificateTypeName?: string | null;
|
|
16158
|
-
materialCertificateTypeVersion?: number | null;
|
|
16159
|
-
specificationId: string;
|
|
16160
|
-
specificationName: string;
|
|
16161
|
-
specificationVersion: number;
|
|
16162
|
-
purchaseOrder?: string | null;
|
|
16163
|
-
purchaseOrderLine?: string | null;
|
|
16164
|
-
purchaseOrderItem?: string | null;
|
|
16165
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16166
|
-
purchaseOrderLot?: string | null;
|
|
16167
|
-
status: AmcCheckStatusDto;
|
|
16168
|
-
created: Date;
|
|
16169
|
-
createdBy: string;
|
|
16170
|
-
createdById: string;
|
|
16171
|
-
updatedBy?: string | null;
|
|
16172
|
-
updatedById?: string | null;
|
|
16173
|
-
}
|
|
16174
|
-
export type AmcCheckStatusDto = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
|
|
16175
|
-
export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
16176
|
-
pageSize?: number | null;
|
|
16177
|
-
orderBy?: AmcCheckListOrderColumnRequestDto | null;
|
|
16178
|
-
searchTerm?: string | null;
|
|
16179
|
-
originalReportFilter?: string | null;
|
|
16180
|
-
generatedReportFilter?: string | null;
|
|
16181
|
-
customerFilter?: string | null;
|
|
16182
|
-
projectFilter?: string | null;
|
|
16183
|
-
purchaseOrderFilter?: string | null;
|
|
16184
|
-
workOrderFilter?: string | null;
|
|
16185
|
-
certificateTypeFilter?: string | null;
|
|
16186
|
-
lineFilter?: string | null;
|
|
16187
|
-
itemFilter?: string | null;
|
|
16188
|
-
heatFilter?: string | null;
|
|
16189
|
-
lotFilter?: string | null;
|
|
16190
|
-
dateFromFilter?: Date | null;
|
|
16191
|
-
dateToFilter?: Date | null;
|
|
16192
|
-
statusFilter: AmcCheckStatusDto[];
|
|
16193
|
-
continuationToken?: string | null;
|
|
16194
|
-
constructor(data?: IAmcCheckListRequestDto);
|
|
16195
|
-
init(_data?: any): void;
|
|
16196
|
-
static fromJS(data: any): AmcCheckListRequestDto;
|
|
16197
|
-
toJSON(data?: any): any;
|
|
15820
|
+
export interface ICreateCompanyUser {
|
|
15821
|
+
username: string;
|
|
15822
|
+
name: string;
|
|
15823
|
+
roles: string[];
|
|
15824
|
+
companyId?: string | null;
|
|
16198
15825
|
}
|
|
16199
|
-
export
|
|
16200
|
-
|
|
16201
|
-
|
|
16202
|
-
|
|
16203
|
-
originalReportFilter?: string | null;
|
|
16204
|
-
generatedReportFilter?: string | null;
|
|
16205
|
-
customerFilter?: string | null;
|
|
16206
|
-
projectFilter?: string | null;
|
|
16207
|
-
purchaseOrderFilter?: string | null;
|
|
16208
|
-
workOrderFilter?: string | null;
|
|
16209
|
-
certificateTypeFilter?: string | null;
|
|
16210
|
-
lineFilter?: string | null;
|
|
16211
|
-
itemFilter?: string | null;
|
|
16212
|
-
heatFilter?: string | null;
|
|
16213
|
-
lotFilter?: string | null;
|
|
16214
|
-
dateFromFilter?: Date | null;
|
|
16215
|
-
dateToFilter?: Date | null;
|
|
16216
|
-
statusFilter: AmcCheckStatusDto[];
|
|
16217
|
-
continuationToken?: string | null;
|
|
16218
|
-
}
|
|
16219
|
-
export type AmcCheckListOrderColumnRequestDto = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
|
|
16220
|
-
export declare class AmcResultDto implements IAmcResultDto {
|
|
16221
|
-
resultId: string;
|
|
16222
|
-
originalMaterialCertificate: FileDto;
|
|
16223
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
16224
|
-
customer?: string | null;
|
|
16225
|
-
project?: string | null;
|
|
16226
|
-
workOrder?: string | null;
|
|
16227
|
-
materialCertificateTypeId?: string | null;
|
|
16228
|
-
materialCertificateTypeName?: string | null;
|
|
16229
|
-
materialCertificateTypeVersion?: number | null;
|
|
16230
|
-
specificationId: string;
|
|
16231
|
-
specificationName: string;
|
|
16232
|
-
specificationVersion: number;
|
|
16233
|
-
purchaseOrder?: string | null;
|
|
16234
|
-
purchaseOrderLine?: string | null;
|
|
16235
|
-
purchaseOrderItem?: string | null;
|
|
16236
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16237
|
-
purchaseOrderLot?: string | null;
|
|
16238
|
-
status: AmcCheckStatusDto;
|
|
16239
|
-
created: Date;
|
|
16240
|
-
createdBy: string;
|
|
16241
|
-
createdById: string;
|
|
16242
|
-
updatedBy?: string | null;
|
|
16243
|
-
updatedById?: string | null;
|
|
16244
|
-
certificateTypeSection: AmcTypeResultChecksDto;
|
|
16245
|
-
chemistrySpecification: AmcChemistrySpecificationResultDto;
|
|
16246
|
-
mechanicalSpecification: AmcMechanicalSpecificationResultDto;
|
|
16247
|
-
ferriteSpecification: AmcFerriteSpecificationResultDto;
|
|
16248
|
-
heatSpecification: AmcHeatTreatmentSpecificationResultDto;
|
|
16249
|
-
constructor(data?: IAmcResultDto);
|
|
16250
|
-
init(_data?: any): void;
|
|
16251
|
-
static fromJS(data: any): AmcResultDto;
|
|
16252
|
-
toJSON(data?: any): any;
|
|
16253
|
-
}
|
|
16254
|
-
export interface IAmcResultDto {
|
|
16255
|
-
resultId: string;
|
|
16256
|
-
originalMaterialCertificate: FileDto;
|
|
16257
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
16258
|
-
customer?: string | null;
|
|
16259
|
-
project?: string | null;
|
|
16260
|
-
workOrder?: string | null;
|
|
16261
|
-
materialCertificateTypeId?: string | null;
|
|
16262
|
-
materialCertificateTypeName?: string | null;
|
|
16263
|
-
materialCertificateTypeVersion?: number | null;
|
|
16264
|
-
specificationId: string;
|
|
16265
|
-
specificationName: string;
|
|
16266
|
-
specificationVersion: number;
|
|
16267
|
-
purchaseOrder?: string | null;
|
|
16268
|
-
purchaseOrderLine?: string | null;
|
|
16269
|
-
purchaseOrderItem?: string | null;
|
|
16270
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16271
|
-
purchaseOrderLot?: string | null;
|
|
16272
|
-
status: AmcCheckStatusDto;
|
|
16273
|
-
created: Date;
|
|
16274
|
-
createdBy: string;
|
|
16275
|
-
createdById: string;
|
|
16276
|
-
updatedBy?: string | null;
|
|
16277
|
-
updatedById?: string | null;
|
|
16278
|
-
certificateTypeSection: AmcTypeResultChecksDto;
|
|
16279
|
-
chemistrySpecification: AmcChemistrySpecificationResultDto;
|
|
16280
|
-
mechanicalSpecification: AmcMechanicalSpecificationResultDto;
|
|
16281
|
-
ferriteSpecification: AmcFerriteSpecificationResultDto;
|
|
16282
|
-
heatSpecification: AmcHeatTreatmentSpecificationResultDto;
|
|
16283
|
-
}
|
|
16284
|
-
export declare class AmcTypeResultChecksDto implements IAmcTypeResultChecksDto {
|
|
16285
|
-
manufacturer: AmcTypeManufacturerResultChecksDto;
|
|
16286
|
-
signature: AmcTypeSignatureResultChecksDto;
|
|
16287
|
-
thirdParty: AmcTypeThirdPartyResultChecksDto;
|
|
16288
|
-
certification: AmcTypeCertificationResultChecksDto;
|
|
16289
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
|
|
16290
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16291
|
-
testResults: AmcTypeTestResultsResultChecksDto;
|
|
16292
|
-
documentTypes: AmcTypeDocumentTypesResultChecksDto;
|
|
16293
|
-
constructor(data?: IAmcTypeResultChecksDto);
|
|
16294
|
-
init(_data?: any): void;
|
|
16295
|
-
static fromJS(data: any): AmcTypeResultChecksDto;
|
|
16296
|
-
toJSON(data?: any): any;
|
|
16297
|
-
}
|
|
16298
|
-
export interface IAmcTypeResultChecksDto {
|
|
16299
|
-
manufacturer: AmcTypeManufacturerResultChecksDto;
|
|
16300
|
-
signature: AmcTypeSignatureResultChecksDto;
|
|
16301
|
-
thirdParty: AmcTypeThirdPartyResultChecksDto;
|
|
16302
|
-
certification: AmcTypeCertificationResultChecksDto;
|
|
16303
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
|
|
16304
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16305
|
-
testResults: AmcTypeTestResultsResultChecksDto;
|
|
16306
|
-
documentTypes: AmcTypeDocumentTypesResultChecksDto;
|
|
16307
|
-
}
|
|
16308
|
-
export declare class AmcTypeManufacturerResultChecksDto implements IAmcTypeManufacturerResultChecksDto {
|
|
16309
|
-
manufacturer?: AmcTypeResultLine | null;
|
|
16310
|
-
address?: AmcTypeResultLine | null;
|
|
16311
|
-
contact?: AmcTypeResultLine | null;
|
|
16312
|
-
constructor(data?: IAmcTypeManufacturerResultChecksDto);
|
|
16313
|
-
init(_data?: any): void;
|
|
16314
|
-
static fromJS(data: any): AmcTypeManufacturerResultChecksDto;
|
|
16315
|
-
toJSON(data?: any): any;
|
|
16316
|
-
}
|
|
16317
|
-
export interface IAmcTypeManufacturerResultChecksDto {
|
|
16318
|
-
manufacturer?: AmcTypeResultLine | null;
|
|
16319
|
-
address?: AmcTypeResultLine | null;
|
|
16320
|
-
contact?: AmcTypeResultLine | null;
|
|
16321
|
-
}
|
|
16322
|
-
export declare class AmcTypeResultLine implements IAmcTypeResultLine {
|
|
16323
|
-
found?: boolean;
|
|
16324
|
-
approved?: boolean | null;
|
|
16325
|
-
comment?: string | null;
|
|
16326
|
-
created: Date;
|
|
16327
|
-
createdBy: string;
|
|
16328
|
-
createdById: string;
|
|
16329
|
-
updatedBy?: string | null;
|
|
16330
|
-
updatedById?: string | null;
|
|
16331
|
-
constructor(data?: IAmcTypeResultLine);
|
|
16332
|
-
init(_data?: any): void;
|
|
16333
|
-
static fromJS(data: any): AmcTypeResultLine;
|
|
16334
|
-
toJSON(data?: any): any;
|
|
16335
|
-
}
|
|
16336
|
-
export interface IAmcTypeResultLine {
|
|
16337
|
-
found?: boolean;
|
|
16338
|
-
approved?: boolean | null;
|
|
16339
|
-
comment?: string | null;
|
|
16340
|
-
created: Date;
|
|
16341
|
-
createdBy: string;
|
|
16342
|
-
createdById: string;
|
|
16343
|
-
updatedBy?: string | null;
|
|
16344
|
-
updatedById?: string | null;
|
|
16345
|
-
}
|
|
16346
|
-
export declare class AmcTypeSignatureResultChecksDto implements IAmcTypeSignatureResultChecksDto {
|
|
16347
|
-
certifiedBy?: AmcTypeResultLine | null;
|
|
16348
|
-
position?: AmcTypeResultLine | null;
|
|
16349
|
-
signature?: AmcTypeResultLine | null;
|
|
16350
|
-
date?: AmcTypeResultLine | null;
|
|
16351
|
-
stamp?: AmcTypeResultLine | null;
|
|
16352
|
-
constructor(data?: IAmcTypeSignatureResultChecksDto);
|
|
16353
|
-
init(_data?: any): void;
|
|
16354
|
-
static fromJS(data: any): AmcTypeSignatureResultChecksDto;
|
|
16355
|
-
toJSON(data?: any): any;
|
|
16356
|
-
}
|
|
16357
|
-
export interface IAmcTypeSignatureResultChecksDto {
|
|
16358
|
-
certifiedBy?: AmcTypeResultLine | null;
|
|
16359
|
-
position?: AmcTypeResultLine | null;
|
|
16360
|
-
signature?: AmcTypeResultLine | null;
|
|
16361
|
-
date?: AmcTypeResultLine | null;
|
|
16362
|
-
stamp?: AmcTypeResultLine | null;
|
|
16363
|
-
}
|
|
16364
|
-
export declare class AmcTypeThirdPartyResultChecksDto implements IAmcTypeThirdPartyResultChecksDto {
|
|
16365
|
-
inspectionBody?: AmcTypeResultLine | null;
|
|
16366
|
-
inspectorName?: AmcTypeResultLine | null;
|
|
16367
|
-
position?: AmcTypeResultLine | null;
|
|
16368
|
-
verificationMethod?: AmcTypeResultLine | null;
|
|
16369
|
-
signature?: AmcTypeResultLine | null;
|
|
16370
|
-
date?: AmcTypeResultLine | null;
|
|
16371
|
-
stamp?: AmcTypeResultLine | null;
|
|
16372
|
-
constructor(data?: IAmcTypeThirdPartyResultChecksDto);
|
|
16373
|
-
init(_data?: any): void;
|
|
16374
|
-
static fromJS(data: any): AmcTypeThirdPartyResultChecksDto;
|
|
16375
|
-
toJSON(data?: any): any;
|
|
16376
|
-
}
|
|
16377
|
-
export interface IAmcTypeThirdPartyResultChecksDto {
|
|
16378
|
-
inspectionBody?: AmcTypeResultLine | null;
|
|
16379
|
-
inspectorName?: AmcTypeResultLine | null;
|
|
16380
|
-
position?: AmcTypeResultLine | null;
|
|
16381
|
-
verificationMethod?: AmcTypeResultLine | null;
|
|
16382
|
-
signature?: AmcTypeResultLine | null;
|
|
16383
|
-
date?: AmcTypeResultLine | null;
|
|
16384
|
-
stamp?: AmcTypeResultLine | null;
|
|
16385
|
-
}
|
|
16386
|
-
export declare class AmcTypeCertificationResultChecksDto implements IAmcTypeCertificationResultChecksDto {
|
|
16387
|
-
certificateOfCompliance?: AmcTypeResultLine | null;
|
|
16388
|
-
inspectionCertificate?: AmcTypeResultLine | null;
|
|
16389
|
-
constructor(data?: IAmcTypeCertificationResultChecksDto);
|
|
16390
|
-
init(_data?: any): void;
|
|
16391
|
-
static fromJS(data: any): AmcTypeCertificationResultChecksDto;
|
|
16392
|
-
toJSON(data?: any): any;
|
|
16393
|
-
}
|
|
16394
|
-
export interface IAmcTypeCertificationResultChecksDto {
|
|
16395
|
-
certificateOfCompliance?: AmcTypeResultLine | null;
|
|
16396
|
-
inspectionCertificate?: AmcTypeResultLine | null;
|
|
16397
|
-
}
|
|
16398
|
-
export declare class AmcTypeProductAndOrderInformationResultChecksDto implements IAmcTypeProductAndOrderInformationResultChecksDto {
|
|
16399
|
-
productDescription?: AmcTypeResultLine | null;
|
|
16400
|
-
materialGrade?: AmcTypeResultLine | null;
|
|
16401
|
-
customer?: AmcTypeResultLine | null;
|
|
16402
|
-
customerOrderNumber?: AmcTypeResultLine | null;
|
|
16403
|
-
dimensionsOrWeight?: AmcTypeResultLine | null;
|
|
16404
|
-
batchNumber?: AmcTypeResultLine | null;
|
|
16405
|
-
heatNumber?: AmcTypeResultLine | null;
|
|
16406
|
-
relatedStandards?: AmcTypeResultLine | null;
|
|
16407
|
-
constructor(data?: IAmcTypeProductAndOrderInformationResultChecksDto);
|
|
16408
|
-
init(_data?: any): void;
|
|
16409
|
-
static fromJS(data: any): AmcTypeProductAndOrderInformationResultChecksDto;
|
|
16410
|
-
toJSON(data?: any): any;
|
|
16411
|
-
}
|
|
16412
|
-
export interface IAmcTypeProductAndOrderInformationResultChecksDto {
|
|
16413
|
-
productDescription?: AmcTypeResultLine | null;
|
|
16414
|
-
materialGrade?: AmcTypeResultLine | null;
|
|
16415
|
-
customer?: AmcTypeResultLine | null;
|
|
16416
|
-
customerOrderNumber?: AmcTypeResultLine | null;
|
|
16417
|
-
dimensionsOrWeight?: AmcTypeResultLine | null;
|
|
16418
|
-
batchNumber?: AmcTypeResultLine | null;
|
|
16419
|
-
heatNumber?: AmcTypeResultLine | null;
|
|
16420
|
-
relatedStandards?: AmcTypeResultLine | null;
|
|
16421
|
-
}
|
|
16422
|
-
export declare class AmcTypeTestMethodsAndReferencesResultChecksDto implements IAmcTypeTestMethodsAndReferencesResultChecksDto {
|
|
16423
|
-
usedStandards?: AmcTypeResultLine | null;
|
|
16424
|
-
constructor(data?: IAmcTypeTestMethodsAndReferencesResultChecksDto);
|
|
16425
|
-
init(_data?: any): void;
|
|
16426
|
-
static fromJS(data: any): AmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16427
|
-
toJSON(data?: any): any;
|
|
16428
|
-
}
|
|
16429
|
-
export interface IAmcTypeTestMethodsAndReferencesResultChecksDto {
|
|
16430
|
-
usedStandards?: AmcTypeResultLine | null;
|
|
16431
|
-
}
|
|
16432
|
-
export declare class AmcTypeTestResultsResultChecksDto implements IAmcTypeTestResultsResultChecksDto {
|
|
16433
|
-
mechanicalProperties?: AmcTypeResultLine | null;
|
|
16434
|
-
chemicalAnalysis?: AmcTypeResultLine | null;
|
|
16435
|
-
impactTests?: AmcTypeResultLine | null;
|
|
16436
|
-
corrosionTests?: AmcTypeResultLine | null;
|
|
16437
|
-
ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
|
|
16438
|
-
constructor(data?: IAmcTypeTestResultsResultChecksDto);
|
|
16439
|
-
init(_data?: any): void;
|
|
16440
|
-
static fromJS(data: any): AmcTypeTestResultsResultChecksDto;
|
|
16441
|
-
toJSON(data?: any): any;
|
|
16442
|
-
}
|
|
16443
|
-
export interface IAmcTypeTestResultsResultChecksDto {
|
|
16444
|
-
mechanicalProperties?: AmcTypeResultLine | null;
|
|
16445
|
-
chemicalAnalysis?: AmcTypeResultLine | null;
|
|
16446
|
-
impactTests?: AmcTypeResultLine | null;
|
|
16447
|
-
corrosionTests?: AmcTypeResultLine | null;
|
|
16448
|
-
ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
|
|
16449
|
-
}
|
|
16450
|
-
export declare class AmcTypeDocumentTypesResultChecksDto implements IAmcTypeDocumentTypesResultChecksDto {
|
|
16451
|
-
heatTreatmentCertificate?: AmcTypeResultLine | null;
|
|
16452
|
-
ultrasonicControlCertificate?: AmcTypeResultLine | null;
|
|
16453
|
-
liquidPenetrantCertificate?: AmcTypeResultLine | null;
|
|
16454
|
-
testReport?: AmcTypeResultLine | null;
|
|
16455
|
-
dimensionalReport?: AmcTypeResultLine | null;
|
|
16456
|
-
dyePenetrantReport?: AmcTypeResultLine | null;
|
|
16457
|
-
visualReport?: AmcTypeResultLine | null;
|
|
16458
|
-
certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
|
|
16459
|
-
certificateOfTest?: AmcTypeResultLine | null;
|
|
16460
|
-
technicalReport?: AmcTypeResultLine | null;
|
|
16461
|
-
microExaminationReport?: AmcTypeResultLine | null;
|
|
16462
|
-
radiologicalReport?: AmcTypeResultLine | null;
|
|
16463
|
-
constructor(data?: IAmcTypeDocumentTypesResultChecksDto);
|
|
16464
|
-
init(_data?: any): void;
|
|
16465
|
-
static fromJS(data: any): AmcTypeDocumentTypesResultChecksDto;
|
|
16466
|
-
toJSON(data?: any): any;
|
|
16467
|
-
}
|
|
16468
|
-
export interface IAmcTypeDocumentTypesResultChecksDto {
|
|
16469
|
-
heatTreatmentCertificate?: AmcTypeResultLine | null;
|
|
16470
|
-
ultrasonicControlCertificate?: AmcTypeResultLine | null;
|
|
16471
|
-
liquidPenetrantCertificate?: AmcTypeResultLine | null;
|
|
16472
|
-
testReport?: AmcTypeResultLine | null;
|
|
16473
|
-
dimensionalReport?: AmcTypeResultLine | null;
|
|
16474
|
-
dyePenetrantReport?: AmcTypeResultLine | null;
|
|
16475
|
-
visualReport?: AmcTypeResultLine | null;
|
|
16476
|
-
certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
|
|
16477
|
-
certificateOfTest?: AmcTypeResultLine | null;
|
|
16478
|
-
technicalReport?: AmcTypeResultLine | null;
|
|
16479
|
-
microExaminationReport?: AmcTypeResultLine | null;
|
|
16480
|
-
radiologicalReport?: AmcTypeResultLine | null;
|
|
16481
|
-
}
|
|
16482
|
-
export declare class AmcChemistrySpecificationResultDto implements IAmcChemistrySpecificationResultDto {
|
|
16483
|
-
carbon?: AmcSpecificationResultLineDto | null;
|
|
16484
|
-
manganese?: AmcSpecificationResultLineDto | null;
|
|
16485
|
-
silicon?: AmcSpecificationResultLineDto | null;
|
|
16486
|
-
phosphorus?: AmcSpecificationResultLineDto | null;
|
|
16487
|
-
sulfur?: AmcSpecificationResultLineDto | null;
|
|
16488
|
-
chromium?: AmcSpecificationResultLineDto | null;
|
|
16489
|
-
nickel?: AmcSpecificationResultLineDto | null;
|
|
16490
|
-
molybdenum?: AmcSpecificationResultLineDto | null;
|
|
16491
|
-
copper?: AmcSpecificationResultLineDto | null;
|
|
16492
|
-
nitrogen?: AmcSpecificationResultLineDto | null;
|
|
16493
|
-
wolfram?: AmcSpecificationResultLineDto | null;
|
|
16494
|
-
iron?: AmcSpecificationResultLineDto | null;
|
|
16495
|
-
constructor(data?: IAmcChemistrySpecificationResultDto);
|
|
16496
|
-
init(_data?: any): void;
|
|
16497
|
-
static fromJS(data: any): AmcChemistrySpecificationResultDto;
|
|
16498
|
-
toJSON(data?: any): any;
|
|
16499
|
-
}
|
|
16500
|
-
export interface IAmcChemistrySpecificationResultDto {
|
|
16501
|
-
carbon?: AmcSpecificationResultLineDto | null;
|
|
16502
|
-
manganese?: AmcSpecificationResultLineDto | null;
|
|
16503
|
-
silicon?: AmcSpecificationResultLineDto | null;
|
|
16504
|
-
phosphorus?: AmcSpecificationResultLineDto | null;
|
|
16505
|
-
sulfur?: AmcSpecificationResultLineDto | null;
|
|
16506
|
-
chromium?: AmcSpecificationResultLineDto | null;
|
|
16507
|
-
nickel?: AmcSpecificationResultLineDto | null;
|
|
16508
|
-
molybdenum?: AmcSpecificationResultLineDto | null;
|
|
16509
|
-
copper?: AmcSpecificationResultLineDto | null;
|
|
16510
|
-
nitrogen?: AmcSpecificationResultLineDto | null;
|
|
16511
|
-
wolfram?: AmcSpecificationResultLineDto | null;
|
|
16512
|
-
iron?: AmcSpecificationResultLineDto | null;
|
|
16513
|
-
}
|
|
16514
|
-
export declare class AmcSpecificationResultLineDto implements IAmcSpecificationResultLineDto {
|
|
16515
|
-
specificationOperator?: string | null;
|
|
16516
|
-
specificationValue1?: string | null;
|
|
16517
|
-
specificationValue2?: string | null;
|
|
16518
|
-
specificationSymbol?: string | null;
|
|
16519
|
-
readValue?: string | null;
|
|
16520
|
-
status: AmcSpecificationResultLineStatusDto;
|
|
16521
|
-
approved?: boolean | null;
|
|
16522
|
-
comment?: string | null;
|
|
16523
|
-
created: Date;
|
|
16524
|
-
createdBy: string;
|
|
16525
|
-
createdById: string;
|
|
16526
|
-
updated?: Date | null;
|
|
16527
|
-
updatedBy?: string | null;
|
|
16528
|
-
updatedById?: string | null;
|
|
16529
|
-
constructor(data?: IAmcSpecificationResultLineDto);
|
|
16530
|
-
init(_data?: any): void;
|
|
16531
|
-
static fromJS(data: any): AmcSpecificationResultLineDto;
|
|
16532
|
-
toJSON(data?: any): any;
|
|
16533
|
-
}
|
|
16534
|
-
export interface IAmcSpecificationResultLineDto {
|
|
16535
|
-
specificationOperator?: string | null;
|
|
16536
|
-
specificationValue1?: string | null;
|
|
16537
|
-
specificationValue2?: string | null;
|
|
16538
|
-
specificationSymbol?: string | null;
|
|
16539
|
-
readValue?: string | null;
|
|
16540
|
-
status: AmcSpecificationResultLineStatusDto;
|
|
16541
|
-
approved?: boolean | null;
|
|
16542
|
-
comment?: string | null;
|
|
16543
|
-
created: Date;
|
|
16544
|
-
createdBy: string;
|
|
16545
|
-
createdById: string;
|
|
16546
|
-
updated?: Date | null;
|
|
16547
|
-
updatedBy?: string | null;
|
|
16548
|
-
updatedById?: string | null;
|
|
16549
|
-
}
|
|
16550
|
-
export type AmcSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok";
|
|
16551
|
-
export declare class AmcMechanicalSpecificationResultDto implements IAmcMechanicalSpecificationResultDto {
|
|
16552
|
-
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
16553
|
-
tensileStrength?: AmcSpecificationResultLineDto | null;
|
|
16554
|
-
elongation?: AmcSpecificationResultLineDto | null;
|
|
16555
|
-
reductionOfArea?: AmcSpecificationResultLineDto | null;
|
|
16556
|
-
impactEnergy?: AmcSpecificationResultLineDto | null;
|
|
16557
|
-
hardness?: AmcSpecificationResultLineDto | null;
|
|
16558
|
-
constructor(data?: IAmcMechanicalSpecificationResultDto);
|
|
16559
|
-
init(_data?: any): void;
|
|
16560
|
-
static fromJS(data: any): AmcMechanicalSpecificationResultDto;
|
|
16561
|
-
toJSON(data?: any): any;
|
|
16562
|
-
}
|
|
16563
|
-
export interface IAmcMechanicalSpecificationResultDto {
|
|
16564
|
-
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
16565
|
-
tensileStrength?: AmcSpecificationResultLineDto | null;
|
|
16566
|
-
elongation?: AmcSpecificationResultLineDto | null;
|
|
16567
|
-
reductionOfArea?: AmcSpecificationResultLineDto | null;
|
|
16568
|
-
impactEnergy?: AmcSpecificationResultLineDto | null;
|
|
16569
|
-
hardness?: AmcSpecificationResultLineDto | null;
|
|
16570
|
-
}
|
|
16571
|
-
export declare class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificationResultDto {
|
|
16572
|
-
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
16573
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16574
|
-
constructor(data?: IAmcFerriteSpecificationResultDto);
|
|
16575
|
-
init(_data?: any): void;
|
|
16576
|
-
static fromJS(data: any): AmcFerriteSpecificationResultDto;
|
|
16577
|
-
toJSON(data?: any): any;
|
|
16578
|
-
}
|
|
16579
|
-
export interface IAmcFerriteSpecificationResultDto {
|
|
16580
|
-
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
16581
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16582
|
-
}
|
|
16583
|
-
export type AmcFerriteMeasurementMethodDto = "Diushdf" | "Oidjrgr" | "Fjioerw";
|
|
16584
|
-
export declare class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatmentSpecificationResultDto {
|
|
16585
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
16586
|
-
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16587
|
-
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16588
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16589
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16590
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16591
|
-
constructor(data?: IAmcHeatTreatmentSpecificationResultDto);
|
|
16592
|
-
init(_data?: any): void;
|
|
16593
|
-
static fromJS(data: any): AmcHeatTreatmentSpecificationResultDto;
|
|
16594
|
-
toJSON(data?: any): any;
|
|
16595
|
-
}
|
|
16596
|
-
export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
16597
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
16598
|
-
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16599
|
-
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16600
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16601
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16602
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16603
|
-
}
|
|
16604
|
-
export type AmcHeatTreatmentTypeDto = "Sdjifo" | "Oijsdfi";
|
|
16605
|
-
export type AmcHeatCoolingMethodDto = "Asdfjoi" | "Fsdifjd";
|
|
16606
|
-
export type AmcHeatTreatedConditionDto = "Fsdijfo" | "Oisjdfi";
|
|
16607
|
-
export type AmcHeatVerificationMethodDto = "Fisjsdfdfo" | "Oisjdegrfo";
|
|
16608
|
-
export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
16609
|
-
files: UploadFileDto[];
|
|
16610
|
-
specificationId: string;
|
|
16611
|
-
specificationVersion: string;
|
|
16612
|
-
certificateTypeId?: string | null;
|
|
16613
|
-
certificateTypeVersion?: string | null;
|
|
16614
|
-
purchaseOrder?: string | null;
|
|
16615
|
-
constructor(data?: IProcessAmcCheckRequestDto);
|
|
16616
|
-
init(_data?: any): void;
|
|
16617
|
-
static fromJS(data: any): ProcessAmcCheckRequestDto;
|
|
16618
|
-
toJSON(data?: any): any;
|
|
16619
|
-
}
|
|
16620
|
-
export interface IProcessAmcCheckRequestDto {
|
|
16621
|
-
files: UploadFileDto[];
|
|
16622
|
-
specificationId: string;
|
|
16623
|
-
specificationVersion: string;
|
|
16624
|
-
certificateTypeId?: string | null;
|
|
16625
|
-
certificateTypeVersion?: string | null;
|
|
16626
|
-
purchaseOrder?: string | null;
|
|
16627
|
-
}
|
|
16628
|
-
export declare class UpdateAmcResultRequestDto implements IUpdateAmcResultRequestDto {
|
|
16629
|
-
certificateId: string;
|
|
16630
|
-
project?: string | null;
|
|
16631
|
-
purchaseOrder?: string | null;
|
|
16632
|
-
workOrder?: string | null;
|
|
16633
|
-
updateStatus: UpdateAmcRequestStatusDto;
|
|
16634
|
-
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
16635
|
-
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
16636
|
-
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
16637
|
-
ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
|
|
16638
|
-
heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
|
|
16639
|
-
constructor(data?: IUpdateAmcResultRequestDto);
|
|
16640
|
-
init(_data?: any): void;
|
|
16641
|
-
static fromJS(data: any): UpdateAmcResultRequestDto;
|
|
16642
|
-
toJSON(data?: any): any;
|
|
16643
|
-
}
|
|
16644
|
-
export interface IUpdateAmcResultRequestDto {
|
|
16645
|
-
certificateId: string;
|
|
16646
|
-
project?: string | null;
|
|
16647
|
-
purchaseOrder?: string | null;
|
|
16648
|
-
workOrder?: string | null;
|
|
16649
|
-
updateStatus: UpdateAmcRequestStatusDto;
|
|
16650
|
-
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
16651
|
-
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
16652
|
-
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
16653
|
-
ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
|
|
16654
|
-
heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
|
|
16655
|
-
}
|
|
16656
|
-
export type UpdateAmcRequestStatusDto = "Draft" | "Approve" | "Reject";
|
|
16657
|
-
export declare class UpdateAmcTypeResultChecksDto implements IUpdateAmcTypeResultChecksDto {
|
|
16658
|
-
manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
|
|
16659
|
-
signature: UpdateAmcTypeSignatureResultChecksDto;
|
|
16660
|
-
thirdParty: UpdateAmcTypeThirdPartyResultChecksDto;
|
|
16661
|
-
certification: UpdateAmcTypeCertificationResultChecksDto;
|
|
16662
|
-
productAndOrderInformation: UpdateAmcTypeProductAndOrderInformationResultChecksDto;
|
|
16663
|
-
testMethodsAndReferences: UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16664
|
-
testResults: UpdateAmcTypeTestResultsResultChecksDto;
|
|
16665
|
-
documentTypes: UpdateAmcTypeDocumentTypesResultChecksDto;
|
|
16666
|
-
constructor(data?: IUpdateAmcTypeResultChecksDto);
|
|
16667
|
-
init(_data?: any): void;
|
|
16668
|
-
static fromJS(data: any): UpdateAmcTypeResultChecksDto;
|
|
16669
|
-
toJSON(data?: any): any;
|
|
16670
|
-
}
|
|
16671
|
-
export interface IUpdateAmcTypeResultChecksDto {
|
|
16672
|
-
manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
|
|
16673
|
-
signature: UpdateAmcTypeSignatureResultChecksDto;
|
|
16674
|
-
thirdParty: UpdateAmcTypeThirdPartyResultChecksDto;
|
|
16675
|
-
certification: UpdateAmcTypeCertificationResultChecksDto;
|
|
16676
|
-
productAndOrderInformation: UpdateAmcTypeProductAndOrderInformationResultChecksDto;
|
|
16677
|
-
testMethodsAndReferences: UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16678
|
-
testResults: UpdateAmcTypeTestResultsResultChecksDto;
|
|
16679
|
-
documentTypes: UpdateAmcTypeDocumentTypesResultChecksDto;
|
|
16680
|
-
}
|
|
16681
|
-
export declare class UpdateAmcTypeManufacturerResultChecksDto implements IUpdateAmcTypeManufacturerResultChecksDto {
|
|
16682
|
-
manufacturer?: UpdateAmcTypeResultLine | null;
|
|
16683
|
-
address?: UpdateAmcTypeResultLine | null;
|
|
16684
|
-
contact?: UpdateAmcTypeResultLine | null;
|
|
16685
|
-
constructor(data?: IUpdateAmcTypeManufacturerResultChecksDto);
|
|
16686
|
-
init(_data?: any): void;
|
|
16687
|
-
static fromJS(data: any): UpdateAmcTypeManufacturerResultChecksDto;
|
|
16688
|
-
toJSON(data?: any): any;
|
|
16689
|
-
}
|
|
16690
|
-
export interface IUpdateAmcTypeManufacturerResultChecksDto {
|
|
16691
|
-
manufacturer?: UpdateAmcTypeResultLine | null;
|
|
16692
|
-
address?: UpdateAmcTypeResultLine | null;
|
|
16693
|
-
contact?: UpdateAmcTypeResultLine | null;
|
|
16694
|
-
}
|
|
16695
|
-
export declare class UpdateAmcTypeResultLine implements IUpdateAmcTypeResultLine {
|
|
16696
|
-
approved?: boolean | null;
|
|
16697
|
-
comment?: string | null;
|
|
16698
|
-
constructor(data?: IUpdateAmcTypeResultLine);
|
|
16699
|
-
init(_data?: any): void;
|
|
16700
|
-
static fromJS(data: any): UpdateAmcTypeResultLine;
|
|
16701
|
-
toJSON(data?: any): any;
|
|
16702
|
-
}
|
|
16703
|
-
export interface IUpdateAmcTypeResultLine {
|
|
16704
|
-
approved?: boolean | null;
|
|
16705
|
-
comment?: string | null;
|
|
16706
|
-
}
|
|
16707
|
-
export declare class UpdateAmcTypeSignatureResultChecksDto implements IUpdateAmcTypeSignatureResultChecksDto {
|
|
16708
|
-
certifiedBy?: UpdateAmcTypeResultLine | null;
|
|
16709
|
-
position?: UpdateAmcTypeResultLine | null;
|
|
16710
|
-
signature?: UpdateAmcTypeResultLine | null;
|
|
16711
|
-
date?: UpdateAmcTypeResultLine | null;
|
|
16712
|
-
stamp?: UpdateAmcTypeResultLine | null;
|
|
16713
|
-
constructor(data?: IUpdateAmcTypeSignatureResultChecksDto);
|
|
16714
|
-
init(_data?: any): void;
|
|
16715
|
-
static fromJS(data: any): UpdateAmcTypeSignatureResultChecksDto;
|
|
16716
|
-
toJSON(data?: any): any;
|
|
16717
|
-
}
|
|
16718
|
-
export interface IUpdateAmcTypeSignatureResultChecksDto {
|
|
16719
|
-
certifiedBy?: UpdateAmcTypeResultLine | null;
|
|
16720
|
-
position?: UpdateAmcTypeResultLine | null;
|
|
16721
|
-
signature?: UpdateAmcTypeResultLine | null;
|
|
16722
|
-
date?: UpdateAmcTypeResultLine | null;
|
|
16723
|
-
stamp?: UpdateAmcTypeResultLine | null;
|
|
16724
|
-
}
|
|
16725
|
-
export declare class UpdateAmcTypeThirdPartyResultChecksDto implements IUpdateAmcTypeThirdPartyResultChecksDto {
|
|
16726
|
-
inspectionBody?: UpdateAmcTypeResultLine | null;
|
|
16727
|
-
inspectorName?: UpdateAmcTypeResultLine | null;
|
|
16728
|
-
position?: UpdateAmcTypeResultLine | null;
|
|
16729
|
-
verificationMethod?: UpdateAmcTypeResultLine | null;
|
|
16730
|
-
signature?: UpdateAmcTypeResultLine | null;
|
|
16731
|
-
date?: UpdateAmcTypeResultLine | null;
|
|
16732
|
-
stamp?: UpdateAmcTypeResultLine | null;
|
|
16733
|
-
constructor(data?: IUpdateAmcTypeThirdPartyResultChecksDto);
|
|
16734
|
-
init(_data?: any): void;
|
|
16735
|
-
static fromJS(data: any): UpdateAmcTypeThirdPartyResultChecksDto;
|
|
16736
|
-
toJSON(data?: any): any;
|
|
16737
|
-
}
|
|
16738
|
-
export interface IUpdateAmcTypeThirdPartyResultChecksDto {
|
|
16739
|
-
inspectionBody?: UpdateAmcTypeResultLine | null;
|
|
16740
|
-
inspectorName?: UpdateAmcTypeResultLine | null;
|
|
16741
|
-
position?: UpdateAmcTypeResultLine | null;
|
|
16742
|
-
verificationMethod?: UpdateAmcTypeResultLine | null;
|
|
16743
|
-
signature?: UpdateAmcTypeResultLine | null;
|
|
16744
|
-
date?: UpdateAmcTypeResultLine | null;
|
|
16745
|
-
stamp?: UpdateAmcTypeResultLine | null;
|
|
16746
|
-
}
|
|
16747
|
-
export declare class UpdateAmcTypeCertificationResultChecksDto implements IUpdateAmcTypeCertificationResultChecksDto {
|
|
16748
|
-
certificateOfCompliance?: UpdateAmcTypeResultLine | null;
|
|
16749
|
-
inspectionCertificate?: UpdateAmcTypeResultLine | null;
|
|
16750
|
-
constructor(data?: IUpdateAmcTypeCertificationResultChecksDto);
|
|
16751
|
-
init(_data?: any): void;
|
|
16752
|
-
static fromJS(data: any): UpdateAmcTypeCertificationResultChecksDto;
|
|
16753
|
-
toJSON(data?: any): any;
|
|
16754
|
-
}
|
|
16755
|
-
export interface IUpdateAmcTypeCertificationResultChecksDto {
|
|
16756
|
-
certificateOfCompliance?: UpdateAmcTypeResultLine | null;
|
|
16757
|
-
inspectionCertificate?: UpdateAmcTypeResultLine | null;
|
|
16758
|
-
}
|
|
16759
|
-
export declare class UpdateAmcTypeProductAndOrderInformationResultChecksDto implements IUpdateAmcTypeProductAndOrderInformationResultChecksDto {
|
|
16760
|
-
productDescription?: UpdateAmcTypeResultLine | null;
|
|
16761
|
-
materialGrade?: UpdateAmcTypeResultLine | null;
|
|
16762
|
-
customer?: UpdateAmcTypeResultLine | null;
|
|
16763
|
-
customerOrderNumber?: UpdateAmcTypeResultLine | null;
|
|
16764
|
-
dimensionsOrWeight?: UpdateAmcTypeResultLine | null;
|
|
16765
|
-
batchNumber?: UpdateAmcTypeResultLine | null;
|
|
16766
|
-
heatNumber?: UpdateAmcTypeResultLine | null;
|
|
16767
|
-
relatedStandards?: UpdateAmcTypeResultLine | null;
|
|
16768
|
-
constructor(data?: IUpdateAmcTypeProductAndOrderInformationResultChecksDto);
|
|
16769
|
-
init(_data?: any): void;
|
|
16770
|
-
static fromJS(data: any): UpdateAmcTypeProductAndOrderInformationResultChecksDto;
|
|
16771
|
-
toJSON(data?: any): any;
|
|
16772
|
-
}
|
|
16773
|
-
export interface IUpdateAmcTypeProductAndOrderInformationResultChecksDto {
|
|
16774
|
-
productDescription?: UpdateAmcTypeResultLine | null;
|
|
16775
|
-
materialGrade?: UpdateAmcTypeResultLine | null;
|
|
16776
|
-
customer?: UpdateAmcTypeResultLine | null;
|
|
16777
|
-
customerOrderNumber?: UpdateAmcTypeResultLine | null;
|
|
16778
|
-
dimensionsOrWeight?: UpdateAmcTypeResultLine | null;
|
|
16779
|
-
batchNumber?: UpdateAmcTypeResultLine | null;
|
|
16780
|
-
heatNumber?: UpdateAmcTypeResultLine | null;
|
|
16781
|
-
relatedStandards?: UpdateAmcTypeResultLine | null;
|
|
16782
|
-
}
|
|
16783
|
-
export declare class UpdateAmcTypeTestMethodsAndReferencesResultChecksDto implements IUpdateAmcTypeTestMethodsAndReferencesResultChecksDto {
|
|
16784
|
-
usedStandards?: UpdateAmcTypeResultLine | null;
|
|
16785
|
-
constructor(data?: IUpdateAmcTypeTestMethodsAndReferencesResultChecksDto);
|
|
16786
|
-
init(_data?: any): void;
|
|
16787
|
-
static fromJS(data: any): UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16788
|
-
toJSON(data?: any): any;
|
|
16789
|
-
}
|
|
16790
|
-
export interface IUpdateAmcTypeTestMethodsAndReferencesResultChecksDto {
|
|
16791
|
-
usedStandards?: UpdateAmcTypeResultLine | null;
|
|
16792
|
-
}
|
|
16793
|
-
export declare class UpdateAmcTypeTestResultsResultChecksDto implements IUpdateAmcTypeTestResultsResultChecksDto {
|
|
16794
|
-
mechanicalProperties?: UpdateAmcTypeResultLine | null;
|
|
16795
|
-
chemicalAnalysis?: UpdateAmcTypeResultLine | null;
|
|
16796
|
-
impactTests?: UpdateAmcTypeResultLine | null;
|
|
16797
|
-
corrosionTests?: UpdateAmcTypeResultLine | null;
|
|
16798
|
-
ferriteContentAndMicrostructure?: UpdateAmcTypeResultLine | null;
|
|
16799
|
-
constructor(data?: IUpdateAmcTypeTestResultsResultChecksDto);
|
|
16800
|
-
init(_data?: any): void;
|
|
16801
|
-
static fromJS(data: any): UpdateAmcTypeTestResultsResultChecksDto;
|
|
16802
|
-
toJSON(data?: any): any;
|
|
16803
|
-
}
|
|
16804
|
-
export interface IUpdateAmcTypeTestResultsResultChecksDto {
|
|
16805
|
-
mechanicalProperties?: UpdateAmcTypeResultLine | null;
|
|
16806
|
-
chemicalAnalysis?: UpdateAmcTypeResultLine | null;
|
|
16807
|
-
impactTests?: UpdateAmcTypeResultLine | null;
|
|
16808
|
-
corrosionTests?: UpdateAmcTypeResultLine | null;
|
|
16809
|
-
ferriteContentAndMicrostructure?: UpdateAmcTypeResultLine | null;
|
|
16810
|
-
}
|
|
16811
|
-
export declare class UpdateAmcTypeDocumentTypesResultChecksDto implements IUpdateAmcTypeDocumentTypesResultChecksDto {
|
|
16812
|
-
heatTreatmentCertificate?: UpdateAmcTypeResultLine | null;
|
|
16813
|
-
ultrasonicControlCertificate?: UpdateAmcTypeResultLine | null;
|
|
16814
|
-
liquidPenetrantCertificate?: UpdateAmcTypeResultLine | null;
|
|
16815
|
-
testReport?: UpdateAmcTypeResultLine | null;
|
|
16816
|
-
dimensionalReport?: UpdateAmcTypeResultLine | null;
|
|
16817
|
-
dyePenetrantReport?: UpdateAmcTypeResultLine | null;
|
|
16818
|
-
visualReport?: UpdateAmcTypeResultLine | null;
|
|
16819
|
-
certificateOfAnalyticalAndMechanicalTests?: UpdateAmcTypeResultLine | null;
|
|
16820
|
-
certificateOfTest?: UpdateAmcTypeResultLine | null;
|
|
16821
|
-
technicalReport?: UpdateAmcTypeResultLine | null;
|
|
16822
|
-
microExaminationReport?: UpdateAmcTypeResultLine | null;
|
|
16823
|
-
radiologicalReport?: UpdateAmcTypeResultLine | null;
|
|
16824
|
-
constructor(data?: IUpdateAmcTypeDocumentTypesResultChecksDto);
|
|
16825
|
-
init(_data?: any): void;
|
|
16826
|
-
static fromJS(data: any): UpdateAmcTypeDocumentTypesResultChecksDto;
|
|
16827
|
-
toJSON(data?: any): any;
|
|
16828
|
-
}
|
|
16829
|
-
export interface IUpdateAmcTypeDocumentTypesResultChecksDto {
|
|
16830
|
-
heatTreatmentCertificate?: UpdateAmcTypeResultLine | null;
|
|
16831
|
-
ultrasonicControlCertificate?: UpdateAmcTypeResultLine | null;
|
|
16832
|
-
liquidPenetrantCertificate?: UpdateAmcTypeResultLine | null;
|
|
16833
|
-
testReport?: UpdateAmcTypeResultLine | null;
|
|
16834
|
-
dimensionalReport?: UpdateAmcTypeResultLine | null;
|
|
16835
|
-
dyePenetrantReport?: UpdateAmcTypeResultLine | null;
|
|
16836
|
-
visualReport?: UpdateAmcTypeResultLine | null;
|
|
16837
|
-
certificateOfAnalyticalAndMechanicalTests?: UpdateAmcTypeResultLine | null;
|
|
16838
|
-
certificateOfTest?: UpdateAmcTypeResultLine | null;
|
|
16839
|
-
technicalReport?: UpdateAmcTypeResultLine | null;
|
|
16840
|
-
microExaminationReport?: UpdateAmcTypeResultLine | null;
|
|
16841
|
-
radiologicalReport?: UpdateAmcTypeResultLine | null;
|
|
16842
|
-
}
|
|
16843
|
-
export declare class UpdateAmcChemistrySpecificationResultDto implements IUpdateAmcChemistrySpecificationResultDto {
|
|
16844
|
-
carbon?: UpdateAmcSpecificationResultLineDto | null;
|
|
16845
|
-
manganese?: UpdateAmcSpecificationResultLineDto | null;
|
|
16846
|
-
silicon?: UpdateAmcSpecificationResultLineDto | null;
|
|
16847
|
-
phosphorus?: UpdateAmcSpecificationResultLineDto | null;
|
|
16848
|
-
sulfur?: UpdateAmcSpecificationResultLineDto | null;
|
|
16849
|
-
chromium?: UpdateAmcSpecificationResultLineDto | null;
|
|
16850
|
-
nickel?: UpdateAmcSpecificationResultLineDto | null;
|
|
16851
|
-
molybdenum?: UpdateAmcSpecificationResultLineDto | null;
|
|
16852
|
-
copper?: UpdateAmcSpecificationResultLineDto | null;
|
|
16853
|
-
nitrogen?: UpdateAmcSpecificationResultLineDto | null;
|
|
16854
|
-
wolfram?: UpdateAmcSpecificationResultLineDto | null;
|
|
16855
|
-
iron?: UpdateAmcSpecificationResultLineDto | null;
|
|
16856
|
-
constructor(data?: IUpdateAmcChemistrySpecificationResultDto);
|
|
16857
|
-
init(_data?: any): void;
|
|
16858
|
-
static fromJS(data: any): UpdateAmcChemistrySpecificationResultDto;
|
|
16859
|
-
toJSON(data?: any): any;
|
|
16860
|
-
}
|
|
16861
|
-
export interface IUpdateAmcChemistrySpecificationResultDto {
|
|
16862
|
-
carbon?: UpdateAmcSpecificationResultLineDto | null;
|
|
16863
|
-
manganese?: UpdateAmcSpecificationResultLineDto | null;
|
|
16864
|
-
silicon?: UpdateAmcSpecificationResultLineDto | null;
|
|
16865
|
-
phosphorus?: UpdateAmcSpecificationResultLineDto | null;
|
|
16866
|
-
sulfur?: UpdateAmcSpecificationResultLineDto | null;
|
|
16867
|
-
chromium?: UpdateAmcSpecificationResultLineDto | null;
|
|
16868
|
-
nickel?: UpdateAmcSpecificationResultLineDto | null;
|
|
16869
|
-
molybdenum?: UpdateAmcSpecificationResultLineDto | null;
|
|
16870
|
-
copper?: UpdateAmcSpecificationResultLineDto | null;
|
|
16871
|
-
nitrogen?: UpdateAmcSpecificationResultLineDto | null;
|
|
16872
|
-
wolfram?: UpdateAmcSpecificationResultLineDto | null;
|
|
16873
|
-
iron?: UpdateAmcSpecificationResultLineDto | null;
|
|
16874
|
-
}
|
|
16875
|
-
export declare class UpdateAmcSpecificationResultLineDto implements IUpdateAmcSpecificationResultLineDto {
|
|
16876
|
-
approved?: boolean;
|
|
16877
|
-
comment?: string | null;
|
|
16878
|
-
constructor(data?: IUpdateAmcSpecificationResultLineDto);
|
|
15826
|
+
export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
|
|
15827
|
+
roles: string[];
|
|
15828
|
+
companyId?: string | null;
|
|
15829
|
+
constructor(data?: IUpdateCompanyUserRequest);
|
|
16879
15830
|
init(_data?: any): void;
|
|
16880
|
-
static fromJS(data: any):
|
|
15831
|
+
static fromJS(data: any): UpdateCompanyUserRequest;
|
|
16881
15832
|
toJSON(data?: any): any;
|
|
16882
15833
|
}
|
|
16883
|
-
export interface
|
|
16884
|
-
|
|
16885
|
-
|
|
15834
|
+
export interface IUpdateCompanyUserRequest {
|
|
15835
|
+
roles: string[];
|
|
15836
|
+
companyId?: string | null;
|
|
16886
15837
|
}
|
|
16887
|
-
export declare class
|
|
16888
|
-
|
|
16889
|
-
|
|
16890
|
-
|
|
16891
|
-
reductionOfArea?: UpdateAmcSpecificationResultLineDto | null;
|
|
16892
|
-
impactEnergy?: UpdateAmcSpecificationResultLineDto | null;
|
|
16893
|
-
hardness?: UpdateAmcSpecificationResultLineDto | null;
|
|
16894
|
-
constructor(data?: IUpdateAmcMechanicalSpecificationResultDto);
|
|
15838
|
+
export declare class ExternalRoleDto implements IExternalRoleDto {
|
|
15839
|
+
id: string;
|
|
15840
|
+
name: string;
|
|
15841
|
+
constructor(data?: IExternalRoleDto);
|
|
16895
15842
|
init(_data?: any): void;
|
|
16896
|
-
static fromJS(data: any):
|
|
15843
|
+
static fromJS(data: any): ExternalRoleDto;
|
|
16897
15844
|
toJSON(data?: any): any;
|
|
16898
15845
|
}
|
|
16899
|
-
export interface
|
|
16900
|
-
|
|
16901
|
-
|
|
16902
|
-
elongation?: UpdateAmcSpecificationResultLineDto | null;
|
|
16903
|
-
reductionOfArea?: UpdateAmcSpecificationResultLineDto | null;
|
|
16904
|
-
impactEnergy?: UpdateAmcSpecificationResultLineDto | null;
|
|
16905
|
-
hardness?: UpdateAmcSpecificationResultLineDto | null;
|
|
15846
|
+
export interface IExternalRoleDto {
|
|
15847
|
+
id: string;
|
|
15848
|
+
name: string;
|
|
16906
15849
|
}
|
|
16907
|
-
export declare class
|
|
16908
|
-
|
|
16909
|
-
|
|
16910
|
-
|
|
15850
|
+
export declare class CompanyCustomerDto implements ICompanyCustomerDto {
|
|
15851
|
+
customerTenantId?: string | null;
|
|
15852
|
+
customerAzureAdTenantId?: string | null;
|
|
15853
|
+
customerName?: string | null;
|
|
15854
|
+
supplierId?: string | null;
|
|
15855
|
+
supplierName?: string | null;
|
|
15856
|
+
constructor(data?: ICompanyCustomerDto);
|
|
16911
15857
|
init(_data?: any): void;
|
|
16912
|
-
static fromJS(data: any):
|
|
15858
|
+
static fromJS(data: any): CompanyCustomerDto;
|
|
16913
15859
|
toJSON(data?: any): any;
|
|
16914
15860
|
}
|
|
16915
|
-
export interface
|
|
16916
|
-
|
|
16917
|
-
|
|
15861
|
+
export interface ICompanyCustomerDto {
|
|
15862
|
+
customerTenantId?: string | null;
|
|
15863
|
+
customerAzureAdTenantId?: string | null;
|
|
15864
|
+
customerName?: string | null;
|
|
15865
|
+
supplierId?: string | null;
|
|
15866
|
+
supplierName?: string | null;
|
|
16918
15867
|
}
|
|
16919
|
-
export declare class
|
|
16920
|
-
|
|
16921
|
-
|
|
16922
|
-
|
|
16923
|
-
|
|
16924
|
-
|
|
16925
|
-
|
|
16926
|
-
constructor(data?: IUpdateAmcHeatTreatmentSpecificationResultDto);
|
|
15868
|
+
export declare class CompanyDto implements ICompanyDto {
|
|
15869
|
+
id?: string;
|
|
15870
|
+
name?: string;
|
|
15871
|
+
organizationNumber?: string | null;
|
|
15872
|
+
country?: string;
|
|
15873
|
+
tenantId?: string | null;
|
|
15874
|
+
constructor(data?: ICompanyDto);
|
|
16927
15875
|
init(_data?: any): void;
|
|
16928
|
-
static fromJS(data: any):
|
|
15876
|
+
static fromJS(data: any): CompanyDto;
|
|
16929
15877
|
toJSON(data?: any): any;
|
|
16930
15878
|
}
|
|
16931
|
-
export interface
|
|
16932
|
-
|
|
16933
|
-
|
|
16934
|
-
|
|
16935
|
-
|
|
16936
|
-
|
|
16937
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
15879
|
+
export interface ICompanyDto {
|
|
15880
|
+
id?: string;
|
|
15881
|
+
name?: string;
|
|
15882
|
+
organizationNumber?: string | null;
|
|
15883
|
+
country?: string;
|
|
15884
|
+
tenantId?: string | null;
|
|
16938
15885
|
}
|
|
16939
|
-
export declare class
|
|
16940
|
-
|
|
16941
|
-
|
|
16942
|
-
|
|
16943
|
-
|
|
16944
|
-
|
|
16945
|
-
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
|
|
16949
|
-
created: Date;
|
|
15886
|
+
export declare class SupplierInviteDto implements ISupplierInviteDto {
|
|
15887
|
+
id: string;
|
|
15888
|
+
supplierId: string;
|
|
15889
|
+
supplierName?: string | null;
|
|
15890
|
+
userId: string;
|
|
15891
|
+
userName?: string | null;
|
|
15892
|
+
companyId?: string | null;
|
|
15893
|
+
deadline: Date;
|
|
15894
|
+
acceptedTimestamp?: Date | null;
|
|
15895
|
+
createdTime: Date;
|
|
16950
15896
|
createdBy: string;
|
|
16951
|
-
|
|
16952
|
-
updatedBy?: string | null;
|
|
16953
|
-
updatedById?: string | null;
|
|
16954
|
-
constructor(data?: IAmcSpecificationLiteDto);
|
|
15897
|
+
constructor(data?: ISupplierInviteDto);
|
|
16955
15898
|
init(_data?: any): void;
|
|
16956
|
-
static fromJS(data: any):
|
|
15899
|
+
static fromJS(data: any): SupplierInviteDto;
|
|
16957
15900
|
toJSON(data?: any): any;
|
|
16958
15901
|
}
|
|
16959
|
-
export interface
|
|
16960
|
-
|
|
16961
|
-
|
|
16962
|
-
|
|
16963
|
-
|
|
16964
|
-
|
|
16965
|
-
|
|
16966
|
-
|
|
16967
|
-
|
|
16968
|
-
|
|
16969
|
-
created: Date;
|
|
15902
|
+
export interface ISupplierInviteDto {
|
|
15903
|
+
id: string;
|
|
15904
|
+
supplierId: string;
|
|
15905
|
+
supplierName?: string | null;
|
|
15906
|
+
userId: string;
|
|
15907
|
+
userName?: string | null;
|
|
15908
|
+
companyId?: string | null;
|
|
15909
|
+
deadline: Date;
|
|
15910
|
+
acceptedTimestamp?: Date | null;
|
|
15911
|
+
createdTime: Date;
|
|
16970
15912
|
createdBy: string;
|
|
16971
|
-
createdById: string;
|
|
16972
|
-
updatedBy?: string | null;
|
|
16973
|
-
updatedById?: string | null;
|
|
16974
15913
|
}
|
|
16975
|
-
export
|
|
16976
|
-
|
|
16977
|
-
|
|
16978
|
-
|
|
16979
|
-
|
|
16980
|
-
number: string;
|
|
16981
|
-
revision: string;
|
|
16982
|
-
date: Date;
|
|
16983
|
-
status: AmcSpecificationStatusDto;
|
|
16984
|
-
summary?: string | null;
|
|
16985
|
-
relatedStandards: string[];
|
|
16986
|
-
created: Date;
|
|
16987
|
-
createdBy: string;
|
|
16988
|
-
createdById: string;
|
|
16989
|
-
updatedBy?: string | null;
|
|
16990
|
-
updatedById?: string | null;
|
|
16991
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
16992
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
16993
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
16994
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
16995
|
-
constructor(data?: IAmcSpecificationDto);
|
|
15914
|
+
export declare class AcceptSupplierInvite implements IAcceptSupplierInvite {
|
|
15915
|
+
companyName?: string;
|
|
15916
|
+
organizationNumber?: string;
|
|
15917
|
+
threeLetterIsoCountry?: string;
|
|
15918
|
+
constructor(data?: IAcceptSupplierInvite);
|
|
16996
15919
|
init(_data?: any): void;
|
|
16997
|
-
static fromJS(data: any):
|
|
15920
|
+
static fromJS(data: any): AcceptSupplierInvite;
|
|
16998
15921
|
toJSON(data?: any): any;
|
|
16999
15922
|
}
|
|
17000
|
-
export interface
|
|
17001
|
-
|
|
17002
|
-
|
|
17003
|
-
|
|
17004
|
-
number: string;
|
|
17005
|
-
revision: string;
|
|
17006
|
-
date: Date;
|
|
17007
|
-
status: AmcSpecificationStatusDto;
|
|
17008
|
-
summary?: string | null;
|
|
17009
|
-
relatedStandards: string[];
|
|
17010
|
-
created: Date;
|
|
17011
|
-
createdBy: string;
|
|
17012
|
-
createdById: string;
|
|
17013
|
-
updatedBy?: string | null;
|
|
17014
|
-
updatedById?: string | null;
|
|
17015
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
17016
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
17017
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
17018
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
17019
|
-
}
|
|
17020
|
-
export declare class AmcChemistrySpecificationDto implements IAmcChemistrySpecificationDto {
|
|
17021
|
-
carbon?: AmcSpecificationLineDto | null;
|
|
17022
|
-
manganese?: AmcSpecificationLineDto | null;
|
|
17023
|
-
silicon?: AmcSpecificationLineDto | null;
|
|
17024
|
-
phosphorus?: AmcSpecificationLineDto | null;
|
|
17025
|
-
sulfur?: AmcSpecificationLineDto | null;
|
|
17026
|
-
chromium?: AmcSpecificationLineDto | null;
|
|
17027
|
-
nickel?: AmcSpecificationLineDto | null;
|
|
17028
|
-
molybdenum?: AmcSpecificationLineDto | null;
|
|
17029
|
-
copper?: AmcSpecificationLineDto | null;
|
|
17030
|
-
nitrogen?: AmcSpecificationLineDto | null;
|
|
17031
|
-
wolfram?: AmcSpecificationLineDto | null;
|
|
17032
|
-
iron?: AmcSpecificationLineDto | null;
|
|
17033
|
-
constructor(data?: IAmcChemistrySpecificationDto);
|
|
17034
|
-
init(_data?: any): void;
|
|
17035
|
-
static fromJS(data: any): AmcChemistrySpecificationDto;
|
|
17036
|
-
toJSON(data?: any): any;
|
|
17037
|
-
}
|
|
17038
|
-
export interface IAmcChemistrySpecificationDto {
|
|
17039
|
-
carbon?: AmcSpecificationLineDto | null;
|
|
17040
|
-
manganese?: AmcSpecificationLineDto | null;
|
|
17041
|
-
silicon?: AmcSpecificationLineDto | null;
|
|
17042
|
-
phosphorus?: AmcSpecificationLineDto | null;
|
|
17043
|
-
sulfur?: AmcSpecificationLineDto | null;
|
|
17044
|
-
chromium?: AmcSpecificationLineDto | null;
|
|
17045
|
-
nickel?: AmcSpecificationLineDto | null;
|
|
17046
|
-
molybdenum?: AmcSpecificationLineDto | null;
|
|
17047
|
-
copper?: AmcSpecificationLineDto | null;
|
|
17048
|
-
nitrogen?: AmcSpecificationLineDto | null;
|
|
17049
|
-
wolfram?: AmcSpecificationLineDto | null;
|
|
17050
|
-
iron?: AmcSpecificationLineDto | null;
|
|
17051
|
-
}
|
|
17052
|
-
export declare class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
|
|
17053
|
-
operator: AmcSpecificationOperatorDto;
|
|
17054
|
-
value1?: number | null;
|
|
17055
|
-
value2?: number | null;
|
|
17056
|
-
symbol: AmcSpecificationSymbolDto;
|
|
17057
|
-
constructor(data?: IAmcSpecificationLineDto);
|
|
17058
|
-
init(_data?: any): void;
|
|
17059
|
-
static fromJS(data: any): AmcSpecificationLineDto;
|
|
17060
|
-
toJSON(data?: any): any;
|
|
17061
|
-
}
|
|
17062
|
-
export interface IAmcSpecificationLineDto {
|
|
17063
|
-
operator: AmcSpecificationOperatorDto;
|
|
17064
|
-
value1?: number | null;
|
|
17065
|
-
value2?: number | null;
|
|
17066
|
-
symbol: AmcSpecificationSymbolDto;
|
|
17067
|
-
}
|
|
17068
|
-
export type AmcSpecificationOperatorDto = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
|
|
17069
|
-
export type AmcSpecificationSymbolDto = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
|
|
17070
|
-
export declare class AmcMechanicalSpecificationDto implements IAmcMechanicalSpecificationDto {
|
|
17071
|
-
yieldStrength?: AmcSpecificationLineDto | null;
|
|
17072
|
-
tensileStrength?: AmcSpecificationLineDto | null;
|
|
17073
|
-
elongation?: AmcSpecificationLineDto | null;
|
|
17074
|
-
reductionOfArea?: AmcSpecificationLineDto | null;
|
|
17075
|
-
impactEnergy?: AmcSpecificationLineDto | null;
|
|
17076
|
-
hardness?: AmcSpecificationLineDto | null;
|
|
17077
|
-
constructor(data?: IAmcMechanicalSpecificationDto);
|
|
17078
|
-
init(_data?: any): void;
|
|
17079
|
-
static fromJS(data: any): AmcMechanicalSpecificationDto;
|
|
17080
|
-
toJSON(data?: any): any;
|
|
17081
|
-
}
|
|
17082
|
-
export interface IAmcMechanicalSpecificationDto {
|
|
17083
|
-
yieldStrength?: AmcSpecificationLineDto | null;
|
|
17084
|
-
tensileStrength?: AmcSpecificationLineDto | null;
|
|
17085
|
-
elongation?: AmcSpecificationLineDto | null;
|
|
17086
|
-
reductionOfArea?: AmcSpecificationLineDto | null;
|
|
17087
|
-
impactEnergy?: AmcSpecificationLineDto | null;
|
|
17088
|
-
hardness?: AmcSpecificationLineDto | null;
|
|
17089
|
-
}
|
|
17090
|
-
export declare class AmcFerriteSpecificationDto implements IAmcFerriteSpecificationDto {
|
|
17091
|
-
ferriteContent?: AmcSpecificationLineDto | null;
|
|
17092
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
17093
|
-
constructor(data?: IAmcFerriteSpecificationDto);
|
|
17094
|
-
init(_data?: any): void;
|
|
17095
|
-
static fromJS(data: any): AmcFerriteSpecificationDto;
|
|
17096
|
-
toJSON(data?: any): any;
|
|
17097
|
-
}
|
|
17098
|
-
export interface IAmcFerriteSpecificationDto {
|
|
17099
|
-
ferriteContent?: AmcSpecificationLineDto | null;
|
|
17100
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
17101
|
-
}
|
|
17102
|
-
export declare class AmcHeatTreatmentSpecificationDto implements IAmcHeatTreatmentSpecificationDto {
|
|
17103
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
17104
|
-
treatmentTemperature?: AmcSpecificationLineDto | null;
|
|
17105
|
-
holdingTime?: AmcSpecificationLineDto | null;
|
|
17106
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
17107
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
17108
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
17109
|
-
constructor(data?: IAmcHeatTreatmentSpecificationDto);
|
|
17110
|
-
init(_data?: any): void;
|
|
17111
|
-
static fromJS(data: any): AmcHeatTreatmentSpecificationDto;
|
|
17112
|
-
toJSON(data?: any): any;
|
|
17113
|
-
}
|
|
17114
|
-
export interface IAmcHeatTreatmentSpecificationDto {
|
|
17115
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
17116
|
-
treatmentTemperature?: AmcSpecificationLineDto | null;
|
|
17117
|
-
holdingTime?: AmcSpecificationLineDto | null;
|
|
17118
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
17119
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
17120
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
17121
|
-
}
|
|
17122
|
-
export declare class CreateAmcSpecificationDto implements ICreateAmcSpecificationDto {
|
|
17123
|
-
name: string;
|
|
17124
|
-
number: string;
|
|
17125
|
-
revision: string;
|
|
17126
|
-
date: Date;
|
|
17127
|
-
createCopy: boolean;
|
|
17128
|
-
specificationId?: string | null;
|
|
17129
|
-
specificationVersion?: string | null;
|
|
17130
|
-
specificationFile?: UploadFileDto | null;
|
|
17131
|
-
constructor(data?: ICreateAmcSpecificationDto);
|
|
17132
|
-
init(_data?: any): void;
|
|
17133
|
-
static fromJS(data: any): CreateAmcSpecificationDto;
|
|
17134
|
-
toJSON(data?: any): any;
|
|
17135
|
-
}
|
|
17136
|
-
export interface ICreateAmcSpecificationDto {
|
|
17137
|
-
name: string;
|
|
17138
|
-
number: string;
|
|
17139
|
-
revision: string;
|
|
17140
|
-
date: Date;
|
|
17141
|
-
createCopy: boolean;
|
|
17142
|
-
specificationId?: string | null;
|
|
17143
|
-
specificationVersion?: string | null;
|
|
17144
|
-
specificationFile?: UploadFileDto | null;
|
|
17145
|
-
}
|
|
17146
|
-
export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
|
|
17147
|
-
specificationId: string;
|
|
17148
|
-
version: number;
|
|
17149
|
-
status: UpdateAmcSpecificationStatusDto;
|
|
17150
|
-
summary?: string | null;
|
|
17151
|
-
relatedStandards: string[];
|
|
17152
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
17153
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
17154
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
17155
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
17156
|
-
constructor(data?: IUpdateAmcSpecificationDto);
|
|
17157
|
-
init(_data?: any): void;
|
|
17158
|
-
static fromJS(data: any): UpdateAmcSpecificationDto;
|
|
17159
|
-
toJSON(data?: any): any;
|
|
15923
|
+
export interface IAcceptSupplierInvite {
|
|
15924
|
+
companyName?: string;
|
|
15925
|
+
organizationNumber?: string;
|
|
15926
|
+
threeLetterIsoCountry?: string;
|
|
17160
15927
|
}
|
|
17161
|
-
export
|
|
17162
|
-
|
|
17163
|
-
|
|
17164
|
-
|
|
17165
|
-
|
|
17166
|
-
|
|
17167
|
-
|
|
17168
|
-
|
|
17169
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
17170
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
17171
|
-
}
|
|
17172
|
-
export type UpdateAmcSpecificationStatusDto = "NotModified" | "Released" | "Obsolete";
|
|
17173
|
-
export declare class AmcTypeLiteDto implements IAmcTypeLiteDto {
|
|
17174
|
-
typeId: string;
|
|
17175
|
-
version: number;
|
|
17176
|
-
name: string;
|
|
17177
|
-
revision: string;
|
|
17178
|
-
description?: string | null;
|
|
17179
|
-
created: Date;
|
|
17180
|
-
createdBy: string;
|
|
17181
|
-
createdById: string;
|
|
17182
|
-
updatedBy?: string | null;
|
|
17183
|
-
updatedById?: string | null;
|
|
17184
|
-
constructor(data?: IAmcTypeLiteDto);
|
|
15928
|
+
export declare class CreateSupplierInvite implements ICreateSupplierInvite {
|
|
15929
|
+
supplierId: string;
|
|
15930
|
+
supplierName?: string | null;
|
|
15931
|
+
username: string;
|
|
15932
|
+
invitedName: string;
|
|
15933
|
+
deadline: Date;
|
|
15934
|
+
existingCompanyId?: string | null;
|
|
15935
|
+
constructor(data?: ICreateSupplierInvite);
|
|
17185
15936
|
init(_data?: any): void;
|
|
17186
|
-
static fromJS(data: any):
|
|
15937
|
+
static fromJS(data: any): CreateSupplierInvite;
|
|
17187
15938
|
toJSON(data?: any): any;
|
|
17188
15939
|
}
|
|
17189
|
-
export interface
|
|
17190
|
-
|
|
17191
|
-
|
|
17192
|
-
|
|
17193
|
-
|
|
17194
|
-
|
|
17195
|
-
|
|
17196
|
-
createdBy: string;
|
|
17197
|
-
createdById: string;
|
|
17198
|
-
updatedBy?: string | null;
|
|
17199
|
-
updatedById?: string | null;
|
|
17200
|
-
}
|
|
17201
|
-
export declare class AmcTypeDto implements IAmcTypeDto {
|
|
17202
|
-
typeId: string;
|
|
17203
|
-
version: number;
|
|
17204
|
-
name: string;
|
|
17205
|
-
revision: string;
|
|
17206
|
-
description?: string | null;
|
|
17207
|
-
created: Date;
|
|
17208
|
-
createdBy: string;
|
|
17209
|
-
createdById: string;
|
|
17210
|
-
updatedBy?: string | null;
|
|
17211
|
-
updatedById?: string | null;
|
|
17212
|
-
checks: AmcTypeChecksDto;
|
|
17213
|
-
constructor(data?: IAmcTypeDto);
|
|
17214
|
-
init(_data?: any): void;
|
|
17215
|
-
static fromJS(data: any): AmcTypeDto;
|
|
17216
|
-
toJSON(data?: any): any;
|
|
15940
|
+
export interface ICreateSupplierInvite {
|
|
15941
|
+
supplierId: string;
|
|
15942
|
+
supplierName?: string | null;
|
|
15943
|
+
username: string;
|
|
15944
|
+
invitedName: string;
|
|
15945
|
+
deadline: Date;
|
|
15946
|
+
existingCompanyId?: string | null;
|
|
17217
15947
|
}
|
|
17218
|
-
export
|
|
17219
|
-
|
|
17220
|
-
version: number;
|
|
17221
|
-
name: string;
|
|
17222
|
-
revision: string;
|
|
17223
|
-
description?: string | null;
|
|
17224
|
-
created: Date;
|
|
17225
|
-
createdBy: string;
|
|
17226
|
-
createdById: string;
|
|
17227
|
-
updatedBy?: string | null;
|
|
17228
|
-
updatedById?: string | null;
|
|
17229
|
-
checks: AmcTypeChecksDto;
|
|
17230
|
-
}
|
|
17231
|
-
export declare class AmcTypeChecksDto implements IAmcTypeChecksDto {
|
|
17232
|
-
manufacturer: AmcTypeManufacturerChecksDto;
|
|
17233
|
-
signature: AmcTypeSignatureChecksDto;
|
|
17234
|
-
thirdParty: AmcTypeThirdPartyChecksDto;
|
|
17235
|
-
certification: AmcTypeCertificationChecksDto;
|
|
17236
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
|
|
17237
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
|
|
17238
|
-
testResults: AmcTypeTestResultsChecksDto;
|
|
17239
|
-
documentTypes: AmcTypeDocumentTypesChecksDto;
|
|
17240
|
-
constructor(data?: IAmcTypeChecksDto);
|
|
17241
|
-
init(_data?: any): void;
|
|
17242
|
-
static fromJS(data: any): AmcTypeChecksDto;
|
|
17243
|
-
toJSON(data?: any): any;
|
|
17244
|
-
}
|
|
17245
|
-
export interface IAmcTypeChecksDto {
|
|
17246
|
-
manufacturer: AmcTypeManufacturerChecksDto;
|
|
17247
|
-
signature: AmcTypeSignatureChecksDto;
|
|
17248
|
-
thirdParty: AmcTypeThirdPartyChecksDto;
|
|
17249
|
-
certification: AmcTypeCertificationChecksDto;
|
|
17250
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
|
|
17251
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
|
|
17252
|
-
testResults: AmcTypeTestResultsChecksDto;
|
|
17253
|
-
documentTypes: AmcTypeDocumentTypesChecksDto;
|
|
17254
|
-
}
|
|
17255
|
-
export declare class AmcTypeManufacturerChecksDto implements IAmcTypeManufacturerChecksDto {
|
|
17256
|
-
manufacturer?: boolean;
|
|
17257
|
-
address?: boolean;
|
|
17258
|
-
contact?: boolean;
|
|
17259
|
-
constructor(data?: IAmcTypeManufacturerChecksDto);
|
|
17260
|
-
init(_data?: any): void;
|
|
17261
|
-
static fromJS(data: any): AmcTypeManufacturerChecksDto;
|
|
17262
|
-
toJSON(data?: any): any;
|
|
17263
|
-
}
|
|
17264
|
-
export interface IAmcTypeManufacturerChecksDto {
|
|
17265
|
-
manufacturer?: boolean;
|
|
17266
|
-
address?: boolean;
|
|
17267
|
-
contact?: boolean;
|
|
17268
|
-
}
|
|
17269
|
-
export declare class AmcTypeSignatureChecksDto implements IAmcTypeSignatureChecksDto {
|
|
17270
|
-
certifiedBy?: boolean;
|
|
17271
|
-
position?: boolean;
|
|
17272
|
-
signature?: boolean;
|
|
17273
|
-
date?: boolean;
|
|
17274
|
-
stamp?: boolean;
|
|
17275
|
-
constructor(data?: IAmcTypeSignatureChecksDto);
|
|
17276
|
-
init(_data?: any): void;
|
|
17277
|
-
static fromJS(data: any): AmcTypeSignatureChecksDto;
|
|
17278
|
-
toJSON(data?: any): any;
|
|
17279
|
-
}
|
|
17280
|
-
export interface IAmcTypeSignatureChecksDto {
|
|
17281
|
-
certifiedBy?: boolean;
|
|
17282
|
-
position?: boolean;
|
|
17283
|
-
signature?: boolean;
|
|
17284
|
-
date?: boolean;
|
|
17285
|
-
stamp?: boolean;
|
|
17286
|
-
}
|
|
17287
|
-
export declare class AmcTypeThirdPartyChecksDto implements IAmcTypeThirdPartyChecksDto {
|
|
17288
|
-
inspectionBody?: boolean;
|
|
17289
|
-
inspectorName?: boolean;
|
|
17290
|
-
position?: boolean;
|
|
17291
|
-
verificationMethod?: boolean;
|
|
17292
|
-
signature?: boolean;
|
|
17293
|
-
date?: boolean;
|
|
17294
|
-
stamp?: boolean;
|
|
17295
|
-
constructor(data?: IAmcTypeThirdPartyChecksDto);
|
|
17296
|
-
init(_data?: any): void;
|
|
17297
|
-
static fromJS(data: any): AmcTypeThirdPartyChecksDto;
|
|
17298
|
-
toJSON(data?: any): any;
|
|
17299
|
-
}
|
|
17300
|
-
export interface IAmcTypeThirdPartyChecksDto {
|
|
17301
|
-
inspectionBody?: boolean;
|
|
17302
|
-
inspectorName?: boolean;
|
|
17303
|
-
position?: boolean;
|
|
17304
|
-
verificationMethod?: boolean;
|
|
17305
|
-
signature?: boolean;
|
|
17306
|
-
date?: boolean;
|
|
17307
|
-
stamp?: boolean;
|
|
17308
|
-
}
|
|
17309
|
-
export declare class AmcTypeCertificationChecksDto implements IAmcTypeCertificationChecksDto {
|
|
17310
|
-
certificateOfCompliance?: boolean;
|
|
17311
|
-
inspectionCertificate?: boolean;
|
|
17312
|
-
constructor(data?: IAmcTypeCertificationChecksDto);
|
|
17313
|
-
init(_data?: any): void;
|
|
17314
|
-
static fromJS(data: any): AmcTypeCertificationChecksDto;
|
|
17315
|
-
toJSON(data?: any): any;
|
|
17316
|
-
}
|
|
17317
|
-
export interface IAmcTypeCertificationChecksDto {
|
|
17318
|
-
certificateOfCompliance?: boolean;
|
|
17319
|
-
inspectionCertificate?: boolean;
|
|
17320
|
-
}
|
|
17321
|
-
export declare class AmcTypeProductAndOrderInformationChecksDto implements IAmcTypeProductAndOrderInformationChecksDto {
|
|
17322
|
-
productDescription?: boolean;
|
|
17323
|
-
materialGrade?: boolean;
|
|
17324
|
-
customer?: boolean;
|
|
17325
|
-
customerOrderNumber?: boolean;
|
|
17326
|
-
dimensionsOrWeight?: boolean;
|
|
17327
|
-
batchNumber?: boolean;
|
|
17328
|
-
heatNumber?: boolean;
|
|
17329
|
-
relatedStandards?: boolean;
|
|
17330
|
-
constructor(data?: IAmcTypeProductAndOrderInformationChecksDto);
|
|
17331
|
-
init(_data?: any): void;
|
|
17332
|
-
static fromJS(data: any): AmcTypeProductAndOrderInformationChecksDto;
|
|
17333
|
-
toJSON(data?: any): any;
|
|
17334
|
-
}
|
|
17335
|
-
export interface IAmcTypeProductAndOrderInformationChecksDto {
|
|
17336
|
-
productDescription?: boolean;
|
|
17337
|
-
materialGrade?: boolean;
|
|
17338
|
-
customer?: boolean;
|
|
17339
|
-
customerOrderNumber?: boolean;
|
|
17340
|
-
dimensionsOrWeight?: boolean;
|
|
17341
|
-
batchNumber?: boolean;
|
|
17342
|
-
heatNumber?: boolean;
|
|
17343
|
-
relatedStandards?: boolean;
|
|
17344
|
-
}
|
|
17345
|
-
export declare class AmcTypeTestMethodsAndReferencesChecksDto implements IAmcTypeTestMethodsAndReferencesChecksDto {
|
|
17346
|
-
usedStandards?: boolean;
|
|
17347
|
-
constructor(data?: IAmcTypeTestMethodsAndReferencesChecksDto);
|
|
17348
|
-
init(_data?: any): void;
|
|
17349
|
-
static fromJS(data: any): AmcTypeTestMethodsAndReferencesChecksDto;
|
|
17350
|
-
toJSON(data?: any): any;
|
|
17351
|
-
}
|
|
17352
|
-
export interface IAmcTypeTestMethodsAndReferencesChecksDto {
|
|
17353
|
-
usedStandards?: boolean;
|
|
17354
|
-
}
|
|
17355
|
-
export declare class AmcTypeTestResultsChecksDto implements IAmcTypeTestResultsChecksDto {
|
|
17356
|
-
mechanicalProperties?: boolean;
|
|
17357
|
-
chemicalAnalysis?: boolean;
|
|
17358
|
-
impactTests?: boolean;
|
|
17359
|
-
corrosionTests?: boolean;
|
|
17360
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
17361
|
-
constructor(data?: IAmcTypeTestResultsChecksDto);
|
|
17362
|
-
init(_data?: any): void;
|
|
17363
|
-
static fromJS(data: any): AmcTypeTestResultsChecksDto;
|
|
17364
|
-
toJSON(data?: any): any;
|
|
17365
|
-
}
|
|
17366
|
-
export interface IAmcTypeTestResultsChecksDto {
|
|
17367
|
-
mechanicalProperties?: boolean;
|
|
17368
|
-
chemicalAnalysis?: boolean;
|
|
17369
|
-
impactTests?: boolean;
|
|
17370
|
-
corrosionTests?: boolean;
|
|
17371
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
17372
|
-
}
|
|
17373
|
-
export declare class AmcTypeDocumentTypesChecksDto implements IAmcTypeDocumentTypesChecksDto {
|
|
17374
|
-
heatTreatmentCertificate?: boolean;
|
|
17375
|
-
ultrasonicControlCertificate?: boolean;
|
|
17376
|
-
liquidPenetrantCertificate?: boolean;
|
|
17377
|
-
testReport?: boolean;
|
|
17378
|
-
dimensionalReport?: boolean;
|
|
17379
|
-
dyePenetrantReport?: boolean;
|
|
17380
|
-
visualReport?: boolean;
|
|
17381
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
17382
|
-
certificateOfTest?: boolean;
|
|
17383
|
-
technicalReport?: boolean;
|
|
17384
|
-
microExaminationReport?: boolean;
|
|
17385
|
-
radiologicalReport?: boolean;
|
|
17386
|
-
constructor(data?: IAmcTypeDocumentTypesChecksDto);
|
|
17387
|
-
init(_data?: any): void;
|
|
17388
|
-
static fromJS(data: any): AmcTypeDocumentTypesChecksDto;
|
|
17389
|
-
toJSON(data?: any): any;
|
|
17390
|
-
}
|
|
17391
|
-
export interface IAmcTypeDocumentTypesChecksDto {
|
|
17392
|
-
heatTreatmentCertificate?: boolean;
|
|
17393
|
-
ultrasonicControlCertificate?: boolean;
|
|
17394
|
-
liquidPenetrantCertificate?: boolean;
|
|
17395
|
-
testReport?: boolean;
|
|
17396
|
-
dimensionalReport?: boolean;
|
|
17397
|
-
dyePenetrantReport?: boolean;
|
|
17398
|
-
visualReport?: boolean;
|
|
17399
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
17400
|
-
certificateOfTest?: boolean;
|
|
17401
|
-
technicalReport?: boolean;
|
|
17402
|
-
microExaminationReport?: boolean;
|
|
17403
|
-
radiologicalReport?: boolean;
|
|
17404
|
-
}
|
|
17405
|
-
export declare class CreateAmcTypeRequestDto implements ICreateAmcTypeRequestDto {
|
|
15948
|
+
export declare class ExternalSupplierDto implements IExternalSupplierDto {
|
|
15949
|
+
id: string;
|
|
17406
15950
|
name: string;
|
|
17407
|
-
|
|
17408
|
-
|
|
17409
|
-
constructor(data?:
|
|
15951
|
+
companyId: string;
|
|
15952
|
+
active: boolean;
|
|
15953
|
+
constructor(data?: IExternalSupplierDto);
|
|
17410
15954
|
init(_data?: any): void;
|
|
17411
|
-
static fromJS(data: any):
|
|
15955
|
+
static fromJS(data: any): ExternalSupplierDto;
|
|
17412
15956
|
toJSON(data?: any): any;
|
|
17413
15957
|
}
|
|
17414
|
-
export interface
|
|
15958
|
+
export interface IExternalSupplierDto {
|
|
15959
|
+
id: string;
|
|
17415
15960
|
name: string;
|
|
17416
|
-
|
|
17417
|
-
|
|
15961
|
+
companyId: string;
|
|
15962
|
+
active: boolean;
|
|
17418
15963
|
}
|
|
17419
|
-
export declare class
|
|
17420
|
-
|
|
17421
|
-
|
|
17422
|
-
|
|
17423
|
-
|
|
17424
|
-
constructor(data?: IUpdateAmcTypeDto);
|
|
15964
|
+
export declare class CreateSupplierMapping implements ICreateSupplierMapping {
|
|
15965
|
+
companyId: string;
|
|
15966
|
+
existingSupplierId: string;
|
|
15967
|
+
newSupplierId: string;
|
|
15968
|
+
constructor(data?: ICreateSupplierMapping);
|
|
17425
15969
|
init(_data?: any): void;
|
|
17426
|
-
static fromJS(data: any):
|
|
15970
|
+
static fromJS(data: any): CreateSupplierMapping;
|
|
17427
15971
|
toJSON(data?: any): any;
|
|
17428
15972
|
}
|
|
17429
|
-
export interface
|
|
17430
|
-
|
|
17431
|
-
|
|
17432
|
-
|
|
17433
|
-
checks: AmcTypeChecksDto;
|
|
15973
|
+
export interface ICreateSupplierMapping {
|
|
15974
|
+
companyId: string;
|
|
15975
|
+
existingSupplierId: string;
|
|
15976
|
+
newSupplierId: string;
|
|
17434
15977
|
}
|
|
17435
15978
|
export interface FileParameter {
|
|
17436
15979
|
data: any;
|