@ignos/api-client 20260123.0.13851 → 20260123.0.13855-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +234 -1393
- package/lib/ignosportal-api.js +7153 -9978
- package/package.json +1 -1
- package/src/ignosportal-api.ts +27005 -30964
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,86 @@ 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
|
+
}
|
|
3166
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3258
3167
|
private http;
|
|
3259
3168
|
private baseUrl;
|
|
3260
3169
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3261
3170
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3262
3171
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3263
3172
|
});
|
|
3264
|
-
|
|
3265
|
-
protected
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
}
|
|
3282
|
-
export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
|
|
3173
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3174
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3175
|
+
}
|
|
3176
|
+
export interface ISuppliersClient {
|
|
3177
|
+
inviteSuppliers(request: InviteSuppliers): Promise<CompanyDto>;
|
|
3178
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3179
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3180
|
+
/**
|
|
3181
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3182
|
+
*/
|
|
3183
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3184
|
+
/**
|
|
3185
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3186
|
+
*/
|
|
3187
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3188
|
+
}
|
|
3189
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3283
3190
|
private http;
|
|
3284
3191
|
private baseUrl;
|
|
3285
3192
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3286
3193
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3287
3194
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3288
3195
|
});
|
|
3289
|
-
|
|
3290
|
-
protected
|
|
3291
|
-
|
|
3292
|
-
protected
|
|
3293
|
-
|
|
3294
|
-
protected
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3196
|
+
inviteSuppliers(request: InviteSuppliers): Promise<CompanyDto>;
|
|
3197
|
+
protected processInviteSuppliers(response: Response): Promise<CompanyDto>;
|
|
3198
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3199
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3200
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3201
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3202
|
+
/**
|
|
3203
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3204
|
+
*/
|
|
3205
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3206
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3207
|
+
/**
|
|
3208
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3209
|
+
*/
|
|
3210
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3211
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3299
3212
|
}
|
|
3300
3213
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
3301
3214
|
displayName: string;
|
|
@@ -8613,329 +8526,91 @@ export interface IDocumentGeneratorTypeDto {
|
|
|
8613
8526
|
key: string;
|
|
8614
8527
|
description: string;
|
|
8615
8528
|
}
|
|
8616
|
-
export declare class
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
|
|
8529
|
+
export declare class CncMachineTransferDto implements ICncMachineTransferDto {
|
|
8530
|
+
id: string;
|
|
8531
|
+
cncMachineOperationId?: string | null;
|
|
8532
|
+
cncMachineId: string;
|
|
8533
|
+
cncMachineName: string;
|
|
8534
|
+
direction: FileTransferDirection;
|
|
8535
|
+
files: string[];
|
|
8536
|
+
status: FileTransferStatus;
|
|
8537
|
+
statusMessage?: string | null;
|
|
8538
|
+
timestamp: Date;
|
|
8539
|
+
constructor(data?: ICncMachineTransferDto);
|
|
8622
8540
|
init(_data?: any): void;
|
|
8623
|
-
static fromJS(data: any):
|
|
8541
|
+
static fromJS(data: any): CncMachineTransferDto;
|
|
8624
8542
|
toJSON(data?: any): any;
|
|
8625
8543
|
}
|
|
8626
|
-
export interface
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
|
|
8544
|
+
export interface ICncMachineTransferDto {
|
|
8545
|
+
id: string;
|
|
8546
|
+
cncMachineOperationId?: string | null;
|
|
8547
|
+
cncMachineId: string;
|
|
8548
|
+
cncMachineName: string;
|
|
8549
|
+
direction: FileTransferDirection;
|
|
8550
|
+
files: string[];
|
|
8551
|
+
status: FileTransferStatus;
|
|
8552
|
+
statusMessage?: string | null;
|
|
8553
|
+
timestamp: Date;
|
|
8631
8554
|
}
|
|
8632
|
-
export
|
|
8633
|
-
|
|
8634
|
-
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
|
-
|
|
8555
|
+
export type FileTransferDirection = "FromCloud" | "ToCloud";
|
|
8556
|
+
export type FileTransferStatus = "InProgress" | "Success" | "Failed";
|
|
8557
|
+
export declare class UploadCamFileDto implements IUploadCamFileDto {
|
|
8558
|
+
uploadUrl: string;
|
|
8559
|
+
path: string;
|
|
8560
|
+
url: string;
|
|
8561
|
+
constructor(data?: IUploadCamFileDto);
|
|
8638
8562
|
init(_data?: any): void;
|
|
8639
|
-
static fromJS(data: any):
|
|
8563
|
+
static fromJS(data: any): UploadCamFileDto;
|
|
8640
8564
|
toJSON(data?: any): any;
|
|
8641
8565
|
}
|
|
8642
|
-
export interface
|
|
8643
|
-
|
|
8644
|
-
|
|
8645
|
-
|
|
8646
|
-
companyId?: string | null;
|
|
8566
|
+
export interface IUploadCamFileDto {
|
|
8567
|
+
uploadUrl: string;
|
|
8568
|
+
path: string;
|
|
8569
|
+
url: string;
|
|
8647
8570
|
}
|
|
8648
|
-
export declare class
|
|
8649
|
-
|
|
8650
|
-
|
|
8651
|
-
companyId?: string | null;
|
|
8652
|
-
constructor(data?: IUpdateCompanyUserRequest);
|
|
8571
|
+
export declare class UploadCamFileRequest implements IUploadCamFileRequest {
|
|
8572
|
+
filename: string;
|
|
8573
|
+
constructor(data?: IUploadCamFileRequest);
|
|
8653
8574
|
init(_data?: any): void;
|
|
8654
|
-
static fromJS(data: any):
|
|
8575
|
+
static fromJS(data: any): UploadCamFileRequest;
|
|
8655
8576
|
toJSON(data?: any): any;
|
|
8656
8577
|
}
|
|
8657
|
-
export interface
|
|
8658
|
-
|
|
8659
|
-
roles: string[];
|
|
8660
|
-
companyId?: string | null;
|
|
8578
|
+
export interface IUploadCamFileRequest {
|
|
8579
|
+
filename: string;
|
|
8661
8580
|
}
|
|
8662
|
-
export declare class
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
constructor(data?:
|
|
8581
|
+
export declare class CamTransferDto implements ICamTransferDto {
|
|
8582
|
+
path: string;
|
|
8583
|
+
content: string;
|
|
8584
|
+
constructor(data?: ICamTransferDto);
|
|
8666
8585
|
init(_data?: any): void;
|
|
8667
|
-
static fromJS(data: any):
|
|
8586
|
+
static fromJS(data: any): CamTransferDto;
|
|
8668
8587
|
toJSON(data?: any): any;
|
|
8669
8588
|
}
|
|
8670
|
-
export interface
|
|
8671
|
-
|
|
8672
|
-
|
|
8589
|
+
export interface ICamTransferDto {
|
|
8590
|
+
path: string;
|
|
8591
|
+
content: string;
|
|
8673
8592
|
}
|
|
8674
|
-
export declare class
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
|
-
supplierName?: string | null;
|
|
8680
|
-
constructor(data?: ICompanyCustomerDto);
|
|
8593
|
+
export declare class StartCamTransferToMachine implements IStartCamTransferToMachine {
|
|
8594
|
+
path: string;
|
|
8595
|
+
content: string;
|
|
8596
|
+
cncMachineId: string;
|
|
8597
|
+
constructor(data?: IStartCamTransferToMachine);
|
|
8681
8598
|
init(_data?: any): void;
|
|
8682
|
-
static fromJS(data: any):
|
|
8599
|
+
static fromJS(data: any): StartCamTransferToMachine;
|
|
8683
8600
|
toJSON(data?: any): any;
|
|
8684
8601
|
}
|
|
8685
|
-
export interface
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
supplierId?: string | null;
|
|
8690
|
-
supplierName?: string | null;
|
|
8602
|
+
export interface IStartCamTransferToMachine {
|
|
8603
|
+
path: string;
|
|
8604
|
+
content: string;
|
|
8605
|
+
cncMachineId: string;
|
|
8691
8606
|
}
|
|
8692
|
-
export declare class
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
supplierName: string;
|
|
8698
|
-
username: string;
|
|
8699
|
-
deadline: Date;
|
|
8700
|
-
createdTime: Date;
|
|
8701
|
-
createdBy: string;
|
|
8702
|
-
constructor(data?: IInviteDto);
|
|
8607
|
+
export declare class StartCamTransferToMachineFromTempUpload implements IStartCamTransferToMachineFromTempUpload {
|
|
8608
|
+
uploadKey: string;
|
|
8609
|
+
filename: string;
|
|
8610
|
+
cncMachineId: string;
|
|
8611
|
+
constructor(data?: IStartCamTransferToMachineFromTempUpload);
|
|
8703
8612
|
init(_data?: any): void;
|
|
8704
|
-
static fromJS(data: any):
|
|
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;
|
|
8931
|
-
}
|
|
8932
|
-
export declare class StartCamTransferToMachineFromTempUpload implements IStartCamTransferToMachineFromTempUpload {
|
|
8933
|
-
uploadKey: string;
|
|
8934
|
-
filename: string;
|
|
8935
|
-
cncMachineId: string;
|
|
8936
|
-
constructor(data?: IStartCamTransferToMachineFromTempUpload);
|
|
8937
|
-
init(_data?: any): void;
|
|
8938
|
-
static fromJS(data: any): StartCamTransferToMachineFromTempUpload;
|
|
8613
|
+
static fromJS(data: any): StartCamTransferToMachineFromTempUpload;
|
|
8939
8614
|
toJSON(data?: any): any;
|
|
8940
8615
|
}
|
|
8941
8616
|
export interface IStartCamTransferToMachineFromTempUpload {
|
|
@@ -16105,987 +15780,153 @@ export interface ISetDiscussionLastReadRequest {
|
|
|
16105
15780
|
operationId?: string | null;
|
|
16106
15781
|
resourceId?: string | null;
|
|
16107
15782
|
}
|
|
16108
|
-
export declare class
|
|
16109
|
-
|
|
16110
|
-
|
|
16111
|
-
|
|
16112
|
-
|
|
16113
|
-
|
|
16114
|
-
|
|
16115
|
-
}
|
|
16116
|
-
export interface IAmcCheckListDto {
|
|
16117
|
-
results: AmcResultLiteDto[];
|
|
16118
|
-
continuationToken?: string | null;
|
|
16119
|
-
}
|
|
16120
|
-
export declare class AmcResultLiteDto implements IAmcResultLiteDto {
|
|
16121
|
-
resultId: string;
|
|
16122
|
-
originalMaterialCertificate: FileDto;
|
|
16123
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
16124
|
-
customer?: string | null;
|
|
16125
|
-
project?: string | null;
|
|
16126
|
-
workOrder?: string | null;
|
|
16127
|
-
materialCertificateTypeName?: string | null;
|
|
16128
|
-
materialCertificateTypeVersion?: number | null;
|
|
16129
|
-
specificationName: string;
|
|
16130
|
-
specificationVersion: number;
|
|
16131
|
-
purchaseOrder?: string | null;
|
|
16132
|
-
purchaseOrderLine?: string | null;
|
|
16133
|
-
purchaseOrderItem?: string | null;
|
|
16134
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16135
|
-
purchaseOrderLot?: string | null;
|
|
16136
|
-
status: AmcCheckStatusDto;
|
|
16137
|
-
created: Date;
|
|
16138
|
-
createdBy: string;
|
|
16139
|
-
createdById: string;
|
|
16140
|
-
updatedBy?: string | null;
|
|
16141
|
-
updatedById?: string | null;
|
|
16142
|
-
constructor(data?: IAmcResultLiteDto);
|
|
16143
|
-
init(_data?: any): void;
|
|
16144
|
-
static fromJS(data: any): AmcResultLiteDto;
|
|
16145
|
-
toJSON(data?: any): any;
|
|
16146
|
-
}
|
|
16147
|
-
export interface IAmcResultLiteDto {
|
|
16148
|
-
resultId: string;
|
|
16149
|
-
originalMaterialCertificate: FileDto;
|
|
16150
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
16151
|
-
customer?: string | null;
|
|
16152
|
-
project?: string | null;
|
|
16153
|
-
workOrder?: string | null;
|
|
16154
|
-
materialCertificateTypeName?: string | null;
|
|
16155
|
-
materialCertificateTypeVersion?: number | null;
|
|
16156
|
-
specificationName: string;
|
|
16157
|
-
specificationVersion: number;
|
|
16158
|
-
purchaseOrder?: string | null;
|
|
16159
|
-
purchaseOrderLine?: string | null;
|
|
16160
|
-
purchaseOrderItem?: string | null;
|
|
16161
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16162
|
-
purchaseOrderLot?: string | null;
|
|
16163
|
-
status: AmcCheckStatusDto;
|
|
16164
|
-
created: Date;
|
|
16165
|
-
createdBy: string;
|
|
16166
|
-
createdById: string;
|
|
16167
|
-
updatedBy?: string | null;
|
|
16168
|
-
updatedById?: string | null;
|
|
16169
|
-
}
|
|
16170
|
-
export type AmcCheckStatusDto = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
|
|
16171
|
-
export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
16172
|
-
pageSize?: number | null;
|
|
16173
|
-
originalReportFilter?: string | null;
|
|
16174
|
-
generatedReportFilter?: string | null;
|
|
16175
|
-
customerFilter?: string | null;
|
|
16176
|
-
projectFilter?: string | null;
|
|
16177
|
-
purchaseOrderFilter?: string | null;
|
|
16178
|
-
workOrderFilter?: string | null;
|
|
16179
|
-
certificateTypeFilter?: string | null;
|
|
16180
|
-
lineFilter?: string | null;
|
|
16181
|
-
itemFilter?: string | null;
|
|
16182
|
-
heatFilter?: string | null;
|
|
16183
|
-
lotFilter?: string | null;
|
|
16184
|
-
dateFromFilter?: Date | null;
|
|
16185
|
-
dateToFilter?: Date | null;
|
|
16186
|
-
statusFilter: AmcCheckStatusDto[];
|
|
16187
|
-
continuationToken?: string | null;
|
|
16188
|
-
constructor(data?: IAmcCheckListRequestDto);
|
|
16189
|
-
init(_data?: any): void;
|
|
16190
|
-
static fromJS(data: any): AmcCheckListRequestDto;
|
|
16191
|
-
toJSON(data?: any): any;
|
|
16192
|
-
}
|
|
16193
|
-
export interface IAmcCheckListRequestDto {
|
|
16194
|
-
pageSize?: number | null;
|
|
16195
|
-
originalReportFilter?: string | null;
|
|
16196
|
-
generatedReportFilter?: string | null;
|
|
16197
|
-
customerFilter?: string | null;
|
|
16198
|
-
projectFilter?: string | null;
|
|
16199
|
-
purchaseOrderFilter?: string | null;
|
|
16200
|
-
workOrderFilter?: string | null;
|
|
16201
|
-
certificateTypeFilter?: string | null;
|
|
16202
|
-
lineFilter?: string | null;
|
|
16203
|
-
itemFilter?: string | null;
|
|
16204
|
-
heatFilter?: string | null;
|
|
16205
|
-
lotFilter?: string | null;
|
|
16206
|
-
dateFromFilter?: Date | null;
|
|
16207
|
-
dateToFilter?: Date | null;
|
|
16208
|
-
statusFilter: AmcCheckStatusDto[];
|
|
16209
|
-
continuationToken?: string | null;
|
|
16210
|
-
}
|
|
16211
|
-
export declare class AmcResultDto implements IAmcResultDto {
|
|
16212
|
-
resultId: string;
|
|
16213
|
-
originalMaterialCertificate: FileDto;
|
|
16214
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
16215
|
-
customer?: string | null;
|
|
16216
|
-
project?: string | null;
|
|
16217
|
-
workOrder?: string | null;
|
|
16218
|
-
materialCertificateTypeName?: string | null;
|
|
16219
|
-
materialCertificateTypeVersion?: number | null;
|
|
16220
|
-
specificationName: string;
|
|
16221
|
-
specificationVersion: number;
|
|
16222
|
-
purchaseOrder?: string | null;
|
|
16223
|
-
purchaseOrderLine?: string | null;
|
|
16224
|
-
purchaseOrderItem?: string | null;
|
|
16225
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16226
|
-
purchaseOrderLot?: string | null;
|
|
16227
|
-
status: AmcCheckStatusDto;
|
|
16228
|
-
created: Date;
|
|
16229
|
-
createdBy: string;
|
|
16230
|
-
createdById: string;
|
|
16231
|
-
updatedBy?: string | null;
|
|
16232
|
-
updatedById?: string | null;
|
|
16233
|
-
certificateTypeSection: AmcTypeResultChecksDto;
|
|
16234
|
-
chemistrySpecification: AmcChemistrySpecificationResultDto;
|
|
16235
|
-
mechanicalSpecification: AmcMechanicalSpecificationResultDto;
|
|
16236
|
-
ferriteSpecification: AmcFerriteSpecificationResultDto;
|
|
16237
|
-
heatSpecification: AmcHeatTreatmentSpecificationResultDto;
|
|
16238
|
-
constructor(data?: IAmcResultDto);
|
|
16239
|
-
init(_data?: any): void;
|
|
16240
|
-
static fromJS(data: any): AmcResultDto;
|
|
16241
|
-
toJSON(data?: any): any;
|
|
16242
|
-
}
|
|
16243
|
-
export interface IAmcResultDto {
|
|
16244
|
-
resultId: string;
|
|
16245
|
-
originalMaterialCertificate: FileDto;
|
|
16246
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
16247
|
-
customer?: string | null;
|
|
16248
|
-
project?: string | null;
|
|
16249
|
-
workOrder?: string | null;
|
|
16250
|
-
materialCertificateTypeName?: string | null;
|
|
16251
|
-
materialCertificateTypeVersion?: number | null;
|
|
16252
|
-
specificationName: string;
|
|
16253
|
-
specificationVersion: number;
|
|
16254
|
-
purchaseOrder?: string | null;
|
|
16255
|
-
purchaseOrderLine?: string | null;
|
|
16256
|
-
purchaseOrderItem?: string | null;
|
|
16257
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16258
|
-
purchaseOrderLot?: string | null;
|
|
16259
|
-
status: AmcCheckStatusDto;
|
|
16260
|
-
created: Date;
|
|
16261
|
-
createdBy: string;
|
|
16262
|
-
createdById: string;
|
|
16263
|
-
updatedBy?: string | null;
|
|
16264
|
-
updatedById?: string | null;
|
|
16265
|
-
certificateTypeSection: AmcTypeResultChecksDto;
|
|
16266
|
-
chemistrySpecification: AmcChemistrySpecificationResultDto;
|
|
16267
|
-
mechanicalSpecification: AmcMechanicalSpecificationResultDto;
|
|
16268
|
-
ferriteSpecification: AmcFerriteSpecificationResultDto;
|
|
16269
|
-
heatSpecification: AmcHeatTreatmentSpecificationResultDto;
|
|
16270
|
-
}
|
|
16271
|
-
export declare class AmcTypeResultChecksDto implements IAmcTypeResultChecksDto {
|
|
16272
|
-
manufacturer: AmcTypeManufacturerResultChecksDto;
|
|
16273
|
-
signature: AmcTypeSignatureResultChecksDto;
|
|
16274
|
-
thirdParty: AmcTypeThirdPartyResultChecksDto;
|
|
16275
|
-
certification: AmcTypeCertificationResultChecksDto;
|
|
16276
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
|
|
16277
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16278
|
-
testResults: AmcTypeTestResultsResultChecksDto;
|
|
16279
|
-
documentTypes: AmcTypeDocumentTypesResultChecksDto;
|
|
16280
|
-
constructor(data?: IAmcTypeResultChecksDto);
|
|
16281
|
-
init(_data?: any): void;
|
|
16282
|
-
static fromJS(data: any): AmcTypeResultChecksDto;
|
|
16283
|
-
toJSON(data?: any): any;
|
|
16284
|
-
}
|
|
16285
|
-
export interface IAmcTypeResultChecksDto {
|
|
16286
|
-
manufacturer: AmcTypeManufacturerResultChecksDto;
|
|
16287
|
-
signature: AmcTypeSignatureResultChecksDto;
|
|
16288
|
-
thirdParty: AmcTypeThirdPartyResultChecksDto;
|
|
16289
|
-
certification: AmcTypeCertificationResultChecksDto;
|
|
16290
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
|
|
16291
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16292
|
-
testResults: AmcTypeTestResultsResultChecksDto;
|
|
16293
|
-
documentTypes: AmcTypeDocumentTypesResultChecksDto;
|
|
16294
|
-
}
|
|
16295
|
-
export declare class AmcTypeManufacturerResultChecksDto implements IAmcTypeManufacturerResultChecksDto {
|
|
16296
|
-
manufacturer?: AmcTypeResultLine | null;
|
|
16297
|
-
address?: AmcTypeResultLine | null;
|
|
16298
|
-
contact?: AmcTypeResultLine | null;
|
|
16299
|
-
constructor(data?: IAmcTypeManufacturerResultChecksDto);
|
|
16300
|
-
init(_data?: any): void;
|
|
16301
|
-
static fromJS(data: any): AmcTypeManufacturerResultChecksDto;
|
|
16302
|
-
toJSON(data?: any): any;
|
|
16303
|
-
}
|
|
16304
|
-
export interface IAmcTypeManufacturerResultChecksDto {
|
|
16305
|
-
manufacturer?: AmcTypeResultLine | null;
|
|
16306
|
-
address?: AmcTypeResultLine | null;
|
|
16307
|
-
contact?: AmcTypeResultLine | null;
|
|
16308
|
-
}
|
|
16309
|
-
export declare class AmcTypeResultLine implements IAmcTypeResultLine {
|
|
16310
|
-
found?: boolean;
|
|
16311
|
-
approved?: boolean | null;
|
|
16312
|
-
comment?: string | null;
|
|
16313
|
-
constructor(data?: IAmcTypeResultLine);
|
|
15783
|
+
export declare class CompanyUserDto implements ICompanyUserDto {
|
|
15784
|
+
companyId: string;
|
|
15785
|
+
userObjectId: string;
|
|
15786
|
+
username?: string | null;
|
|
15787
|
+
name?: string | null;
|
|
15788
|
+
roles: string[];
|
|
15789
|
+
constructor(data?: ICompanyUserDto);
|
|
16314
15790
|
init(_data?: any): void;
|
|
16315
|
-
static fromJS(data: any):
|
|
15791
|
+
static fromJS(data: any): CompanyUserDto;
|
|
16316
15792
|
toJSON(data?: any): any;
|
|
16317
15793
|
}
|
|
16318
|
-
export interface
|
|
16319
|
-
|
|
16320
|
-
|
|
16321
|
-
|
|
15794
|
+
export interface ICompanyUserDto {
|
|
15795
|
+
companyId: string;
|
|
15796
|
+
userObjectId: string;
|
|
15797
|
+
username?: string | null;
|
|
15798
|
+
name?: string | null;
|
|
15799
|
+
roles: string[];
|
|
16322
15800
|
}
|
|
16323
|
-
export declare class
|
|
16324
|
-
|
|
16325
|
-
|
|
16326
|
-
|
|
16327
|
-
|
|
16328
|
-
|
|
16329
|
-
constructor(data?: IAmcTypeSignatureResultChecksDto);
|
|
16330
|
-
init(_data?: any): void;
|
|
16331
|
-
static fromJS(data: any): AmcTypeSignatureResultChecksDto;
|
|
16332
|
-
toJSON(data?: any): any;
|
|
16333
|
-
}
|
|
16334
|
-
export interface IAmcTypeSignatureResultChecksDto {
|
|
16335
|
-
certifiedBy?: AmcTypeResultLine | null;
|
|
16336
|
-
position?: AmcTypeResultLine | null;
|
|
16337
|
-
signature?: AmcTypeResultLine | null;
|
|
16338
|
-
date?: AmcTypeResultLine | null;
|
|
16339
|
-
stamp?: AmcTypeResultLine | null;
|
|
16340
|
-
}
|
|
16341
|
-
export declare class AmcTypeThirdPartyResultChecksDto implements IAmcTypeThirdPartyResultChecksDto {
|
|
16342
|
-
inspectionBody?: AmcTypeResultLine | null;
|
|
16343
|
-
inspectorName?: AmcTypeResultLine | null;
|
|
16344
|
-
position?: AmcTypeResultLine | null;
|
|
16345
|
-
verificationMethod?: AmcTypeResultLine | null;
|
|
16346
|
-
signature?: AmcTypeResultLine | null;
|
|
16347
|
-
date?: AmcTypeResultLine | null;
|
|
16348
|
-
stamp?: AmcTypeResultLine | null;
|
|
16349
|
-
constructor(data?: IAmcTypeThirdPartyResultChecksDto);
|
|
16350
|
-
init(_data?: any): void;
|
|
16351
|
-
static fromJS(data: any): AmcTypeThirdPartyResultChecksDto;
|
|
16352
|
-
toJSON(data?: any): any;
|
|
16353
|
-
}
|
|
16354
|
-
export interface IAmcTypeThirdPartyResultChecksDto {
|
|
16355
|
-
inspectionBody?: AmcTypeResultLine | null;
|
|
16356
|
-
inspectorName?: AmcTypeResultLine | null;
|
|
16357
|
-
position?: AmcTypeResultLine | null;
|
|
16358
|
-
verificationMethod?: AmcTypeResultLine | null;
|
|
16359
|
-
signature?: AmcTypeResultLine | null;
|
|
16360
|
-
date?: AmcTypeResultLine | null;
|
|
16361
|
-
stamp?: AmcTypeResultLine | null;
|
|
16362
|
-
}
|
|
16363
|
-
export declare class AmcTypeCertificationResultChecksDto implements IAmcTypeCertificationResultChecksDto {
|
|
16364
|
-
certificateOfCompliance?: AmcTypeResultLine | null;
|
|
16365
|
-
inspectionCertificate?: AmcTypeResultLine | null;
|
|
16366
|
-
constructor(data?: IAmcTypeCertificationResultChecksDto);
|
|
16367
|
-
init(_data?: any): void;
|
|
16368
|
-
static fromJS(data: any): AmcTypeCertificationResultChecksDto;
|
|
16369
|
-
toJSON(data?: any): any;
|
|
16370
|
-
}
|
|
16371
|
-
export interface IAmcTypeCertificationResultChecksDto {
|
|
16372
|
-
certificateOfCompliance?: AmcTypeResultLine | null;
|
|
16373
|
-
inspectionCertificate?: AmcTypeResultLine | null;
|
|
16374
|
-
}
|
|
16375
|
-
export declare class AmcTypeProductAndOrderInformationResultChecksDto implements IAmcTypeProductAndOrderInformationResultChecksDto {
|
|
16376
|
-
productDescription?: AmcTypeResultLine | null;
|
|
16377
|
-
materialGrade?: AmcTypeResultLine | null;
|
|
16378
|
-
customer?: AmcTypeResultLine | null;
|
|
16379
|
-
customerOrderNumber?: AmcTypeResultLine | null;
|
|
16380
|
-
dimensionsOrWeight?: AmcTypeResultLine | null;
|
|
16381
|
-
batchNumber?: AmcTypeResultLine | null;
|
|
16382
|
-
heatNumber?: AmcTypeResultLine | null;
|
|
16383
|
-
relatedStandards?: AmcTypeResultLine | null;
|
|
16384
|
-
constructor(data?: IAmcTypeProductAndOrderInformationResultChecksDto);
|
|
16385
|
-
init(_data?: any): void;
|
|
16386
|
-
static fromJS(data: any): AmcTypeProductAndOrderInformationResultChecksDto;
|
|
16387
|
-
toJSON(data?: any): any;
|
|
16388
|
-
}
|
|
16389
|
-
export interface IAmcTypeProductAndOrderInformationResultChecksDto {
|
|
16390
|
-
productDescription?: AmcTypeResultLine | null;
|
|
16391
|
-
materialGrade?: AmcTypeResultLine | null;
|
|
16392
|
-
customer?: AmcTypeResultLine | null;
|
|
16393
|
-
customerOrderNumber?: AmcTypeResultLine | null;
|
|
16394
|
-
dimensionsOrWeight?: AmcTypeResultLine | null;
|
|
16395
|
-
batchNumber?: AmcTypeResultLine | null;
|
|
16396
|
-
heatNumber?: AmcTypeResultLine | null;
|
|
16397
|
-
relatedStandards?: AmcTypeResultLine | null;
|
|
16398
|
-
}
|
|
16399
|
-
export declare class AmcTypeTestMethodsAndReferencesResultChecksDto implements IAmcTypeTestMethodsAndReferencesResultChecksDto {
|
|
16400
|
-
usedStandards?: AmcTypeResultLine | null;
|
|
16401
|
-
constructor(data?: IAmcTypeTestMethodsAndReferencesResultChecksDto);
|
|
16402
|
-
init(_data?: any): void;
|
|
16403
|
-
static fromJS(data: any): AmcTypeTestMethodsAndReferencesResultChecksDto;
|
|
16404
|
-
toJSON(data?: any): any;
|
|
16405
|
-
}
|
|
16406
|
-
export interface IAmcTypeTestMethodsAndReferencesResultChecksDto {
|
|
16407
|
-
usedStandards?: AmcTypeResultLine | null;
|
|
16408
|
-
}
|
|
16409
|
-
export declare class AmcTypeTestResultsResultChecksDto implements IAmcTypeTestResultsResultChecksDto {
|
|
16410
|
-
mechanicalProperties?: AmcTypeResultLine | null;
|
|
16411
|
-
chemicalAnalysis?: AmcTypeResultLine | null;
|
|
16412
|
-
impactTests?: AmcTypeResultLine | null;
|
|
16413
|
-
corrosionTests?: AmcTypeResultLine | null;
|
|
16414
|
-
ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
|
|
16415
|
-
constructor(data?: IAmcTypeTestResultsResultChecksDto);
|
|
16416
|
-
init(_data?: any): void;
|
|
16417
|
-
static fromJS(data: any): AmcTypeTestResultsResultChecksDto;
|
|
16418
|
-
toJSON(data?: any): any;
|
|
16419
|
-
}
|
|
16420
|
-
export interface IAmcTypeTestResultsResultChecksDto {
|
|
16421
|
-
mechanicalProperties?: AmcTypeResultLine | null;
|
|
16422
|
-
chemicalAnalysis?: AmcTypeResultLine | null;
|
|
16423
|
-
impactTests?: AmcTypeResultLine | null;
|
|
16424
|
-
corrosionTests?: AmcTypeResultLine | null;
|
|
16425
|
-
ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
|
|
16426
|
-
}
|
|
16427
|
-
export declare class AmcTypeDocumentTypesResultChecksDto implements IAmcTypeDocumentTypesResultChecksDto {
|
|
16428
|
-
heatTreatmentCertificate?: AmcTypeResultLine | null;
|
|
16429
|
-
ultrasonicControlCertificate?: AmcTypeResultLine | null;
|
|
16430
|
-
liquidPenetrantCertificate?: AmcTypeResultLine | null;
|
|
16431
|
-
testReport?: AmcTypeResultLine | null;
|
|
16432
|
-
dimensionalReport?: AmcTypeResultLine | null;
|
|
16433
|
-
dyePenetrantReport?: AmcTypeResultLine | null;
|
|
16434
|
-
visualReport?: AmcTypeResultLine | null;
|
|
16435
|
-
certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
|
|
16436
|
-
certificateOfTest?: AmcTypeResultLine | null;
|
|
16437
|
-
technicalReport?: AmcTypeResultLine | null;
|
|
16438
|
-
microExaminationReport?: AmcTypeResultLine | null;
|
|
16439
|
-
radiologicalReport?: AmcTypeResultLine | null;
|
|
16440
|
-
constructor(data?: IAmcTypeDocumentTypesResultChecksDto);
|
|
16441
|
-
init(_data?: any): void;
|
|
16442
|
-
static fromJS(data: any): AmcTypeDocumentTypesResultChecksDto;
|
|
16443
|
-
toJSON(data?: any): any;
|
|
16444
|
-
}
|
|
16445
|
-
export interface IAmcTypeDocumentTypesResultChecksDto {
|
|
16446
|
-
heatTreatmentCertificate?: AmcTypeResultLine | null;
|
|
16447
|
-
ultrasonicControlCertificate?: AmcTypeResultLine | null;
|
|
16448
|
-
liquidPenetrantCertificate?: AmcTypeResultLine | null;
|
|
16449
|
-
testReport?: AmcTypeResultLine | null;
|
|
16450
|
-
dimensionalReport?: AmcTypeResultLine | null;
|
|
16451
|
-
dyePenetrantReport?: AmcTypeResultLine | null;
|
|
16452
|
-
visualReport?: AmcTypeResultLine | null;
|
|
16453
|
-
certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
|
|
16454
|
-
certificateOfTest?: AmcTypeResultLine | null;
|
|
16455
|
-
technicalReport?: AmcTypeResultLine | null;
|
|
16456
|
-
microExaminationReport?: AmcTypeResultLine | null;
|
|
16457
|
-
radiologicalReport?: AmcTypeResultLine | null;
|
|
16458
|
-
}
|
|
16459
|
-
export declare class AmcChemistrySpecificationResultDto implements IAmcChemistrySpecificationResultDto {
|
|
16460
|
-
carbon?: AmcSpecificationResultLineDto | null;
|
|
16461
|
-
manganese?: AmcSpecificationResultLineDto | null;
|
|
16462
|
-
silicon?: AmcSpecificationResultLineDto | null;
|
|
16463
|
-
phosphorus?: AmcSpecificationResultLineDto | null;
|
|
16464
|
-
sulfur?: AmcSpecificationResultLineDto | null;
|
|
16465
|
-
chromium?: AmcSpecificationResultLineDto | null;
|
|
16466
|
-
nickel?: AmcSpecificationResultLineDto | null;
|
|
16467
|
-
molybdenum?: AmcSpecificationResultLineDto | null;
|
|
16468
|
-
copper?: AmcSpecificationResultLineDto | null;
|
|
16469
|
-
nitrogen?: AmcSpecificationResultLineDto | null;
|
|
16470
|
-
wolfram?: AmcSpecificationResultLineDto | null;
|
|
16471
|
-
iron?: AmcSpecificationResultLineDto | null;
|
|
16472
|
-
constructor(data?: IAmcChemistrySpecificationResultDto);
|
|
16473
|
-
init(_data?: any): void;
|
|
16474
|
-
static fromJS(data: any): AmcChemistrySpecificationResultDto;
|
|
16475
|
-
toJSON(data?: any): any;
|
|
16476
|
-
}
|
|
16477
|
-
export interface IAmcChemistrySpecificationResultDto {
|
|
16478
|
-
carbon?: AmcSpecificationResultLineDto | null;
|
|
16479
|
-
manganese?: AmcSpecificationResultLineDto | null;
|
|
16480
|
-
silicon?: AmcSpecificationResultLineDto | null;
|
|
16481
|
-
phosphorus?: AmcSpecificationResultLineDto | null;
|
|
16482
|
-
sulfur?: AmcSpecificationResultLineDto | null;
|
|
16483
|
-
chromium?: AmcSpecificationResultLineDto | null;
|
|
16484
|
-
nickel?: AmcSpecificationResultLineDto | null;
|
|
16485
|
-
molybdenum?: AmcSpecificationResultLineDto | null;
|
|
16486
|
-
copper?: AmcSpecificationResultLineDto | null;
|
|
16487
|
-
nitrogen?: AmcSpecificationResultLineDto | null;
|
|
16488
|
-
wolfram?: AmcSpecificationResultLineDto | null;
|
|
16489
|
-
iron?: AmcSpecificationResultLineDto | null;
|
|
16490
|
-
}
|
|
16491
|
-
export declare class AmcSpecificationResultLineDto implements IAmcSpecificationResultLineDto {
|
|
16492
|
-
operator?: string | null;
|
|
16493
|
-
value?: string | null;
|
|
16494
|
-
symbol?: string | null;
|
|
16495
|
-
approved?: boolean;
|
|
16496
|
-
comment?: string | null;
|
|
16497
|
-
constructor(data?: IAmcSpecificationResultLineDto);
|
|
15801
|
+
export declare class CreateCompanyUser implements ICreateCompanyUser {
|
|
15802
|
+
username: string;
|
|
15803
|
+
name: string;
|
|
15804
|
+
roles: string[];
|
|
15805
|
+
companyId?: string | null;
|
|
15806
|
+
constructor(data?: ICreateCompanyUser);
|
|
16498
15807
|
init(_data?: any): void;
|
|
16499
|
-
static fromJS(data: any):
|
|
15808
|
+
static fromJS(data: any): CreateCompanyUser;
|
|
16500
15809
|
toJSON(data?: any): any;
|
|
16501
15810
|
}
|
|
16502
|
-
export interface
|
|
16503
|
-
|
|
16504
|
-
|
|
16505
|
-
|
|
16506
|
-
|
|
16507
|
-
comment?: string | null;
|
|
15811
|
+
export interface ICreateCompanyUser {
|
|
15812
|
+
username: string;
|
|
15813
|
+
name: string;
|
|
15814
|
+
roles: string[];
|
|
15815
|
+
companyId?: string | null;
|
|
16508
15816
|
}
|
|
16509
|
-
export declare class
|
|
16510
|
-
|
|
16511
|
-
|
|
16512
|
-
|
|
16513
|
-
reductionOfArea?: AmcSpecificationResultLineDto | null;
|
|
16514
|
-
impactEnergy?: AmcSpecificationResultLineDto | null;
|
|
16515
|
-
hardness?: AmcSpecificationResultLineDto | null;
|
|
16516
|
-
constructor(data?: IAmcMechanicalSpecificationResultDto);
|
|
16517
|
-
init(_data?: any): void;
|
|
16518
|
-
static fromJS(data: any): AmcMechanicalSpecificationResultDto;
|
|
16519
|
-
toJSON(data?: any): any;
|
|
16520
|
-
}
|
|
16521
|
-
export interface IAmcMechanicalSpecificationResultDto {
|
|
16522
|
-
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
16523
|
-
tensileStrength?: AmcSpecificationResultLineDto | null;
|
|
16524
|
-
elongation?: AmcSpecificationResultLineDto | null;
|
|
16525
|
-
reductionOfArea?: AmcSpecificationResultLineDto | null;
|
|
16526
|
-
impactEnergy?: AmcSpecificationResultLineDto | null;
|
|
16527
|
-
hardness?: AmcSpecificationResultLineDto | null;
|
|
16528
|
-
}
|
|
16529
|
-
export declare class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificationResultDto {
|
|
16530
|
-
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
16531
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16532
|
-
constructor(data?: IAmcFerriteSpecificationResultDto);
|
|
16533
|
-
init(_data?: any): void;
|
|
16534
|
-
static fromJS(data: any): AmcFerriteSpecificationResultDto;
|
|
16535
|
-
toJSON(data?: any): any;
|
|
16536
|
-
}
|
|
16537
|
-
export interface IAmcFerriteSpecificationResultDto {
|
|
16538
|
-
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
16539
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16540
|
-
}
|
|
16541
|
-
export type AmcFerriteMeasurementMethodDto = "Diushdf" | "Oidjrgr" | "Fjioerw";
|
|
16542
|
-
export declare class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatmentSpecificationResultDto {
|
|
16543
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
16544
|
-
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16545
|
-
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16546
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16547
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16548
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16549
|
-
constructor(data?: IAmcHeatTreatmentSpecificationResultDto);
|
|
16550
|
-
init(_data?: any): void;
|
|
16551
|
-
static fromJS(data: any): AmcHeatTreatmentSpecificationResultDto;
|
|
16552
|
-
toJSON(data?: any): any;
|
|
16553
|
-
}
|
|
16554
|
-
export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
16555
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
16556
|
-
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16557
|
-
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16558
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16559
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16560
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16561
|
-
}
|
|
16562
|
-
export type AmcHeatTreatmentTypeDto = "Sdjifo" | "Oijsdfi";
|
|
16563
|
-
export type AmcHeatCoolingMethodDto = "Asdfjoi" | "Fsdifjd";
|
|
16564
|
-
export type AmcHeatTreatedConditionDto = "Fsdijfo" | "Oisjdfi";
|
|
16565
|
-
export type AmcHeatVerificationMethodDto = "Fisjsdfdfo" | "Oisjdegrfo";
|
|
16566
|
-
export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
16567
|
-
files: UploadFileDto[];
|
|
16568
|
-
specification: string;
|
|
16569
|
-
certificateType?: string | null;
|
|
16570
|
-
purchaseOrder?: string | null;
|
|
16571
|
-
constructor(data?: IProcessAmcCheckRequestDto);
|
|
15817
|
+
export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
|
|
15818
|
+
roles: string[];
|
|
15819
|
+
companyId?: string | null;
|
|
15820
|
+
constructor(data?: IUpdateCompanyUserRequest);
|
|
16572
15821
|
init(_data?: any): void;
|
|
16573
|
-
static fromJS(data: any):
|
|
15822
|
+
static fromJS(data: any): UpdateCompanyUserRequest;
|
|
16574
15823
|
toJSON(data?: any): any;
|
|
16575
15824
|
}
|
|
16576
|
-
export interface
|
|
16577
|
-
|
|
16578
|
-
|
|
16579
|
-
certificateType?: string | null;
|
|
16580
|
-
purchaseOrder?: string | null;
|
|
16581
|
-
}
|
|
16582
|
-
export declare class UpdateAmcResultRequestDto implements IUpdateAmcResultRequestDto {
|
|
16583
|
-
certificateId: string;
|
|
16584
|
-
project?: string | null;
|
|
16585
|
-
purchaseOrder?: string | null;
|
|
16586
|
-
workOrder?: string | null;
|
|
16587
|
-
updateStatus: UpdateAmcRequestStatusDto;
|
|
16588
|
-
certificateTypeSection: AmcTypeResultChecksDto;
|
|
16589
|
-
chemistrySpecification: AmcChemistrySpecificationResultDto;
|
|
16590
|
-
mechanicalSpecification: AmcMechanicalSpecificationResultDto;
|
|
16591
|
-
ferriteSpecification: AmcFerriteSpecificationResultDto;
|
|
16592
|
-
heatSpecification: AmcHeatTreatmentSpecificationResultDto;
|
|
16593
|
-
constructor(data?: IUpdateAmcResultRequestDto);
|
|
16594
|
-
init(_data?: any): void;
|
|
16595
|
-
static fromJS(data: any): UpdateAmcResultRequestDto;
|
|
16596
|
-
toJSON(data?: any): any;
|
|
15825
|
+
export interface IUpdateCompanyUserRequest {
|
|
15826
|
+
roles: string[];
|
|
15827
|
+
companyId?: string | null;
|
|
16597
15828
|
}
|
|
16598
|
-
export
|
|
16599
|
-
|
|
16600
|
-
project?: string | null;
|
|
16601
|
-
purchaseOrder?: string | null;
|
|
16602
|
-
workOrder?: string | null;
|
|
16603
|
-
updateStatus: UpdateAmcRequestStatusDto;
|
|
16604
|
-
certificateTypeSection: AmcTypeResultChecksDto;
|
|
16605
|
-
chemistrySpecification: AmcChemistrySpecificationResultDto;
|
|
16606
|
-
mechanicalSpecification: AmcMechanicalSpecificationResultDto;
|
|
16607
|
-
ferriteSpecification: AmcFerriteSpecificationResultDto;
|
|
16608
|
-
heatSpecification: AmcHeatTreatmentSpecificationResultDto;
|
|
16609
|
-
}
|
|
16610
|
-
export type UpdateAmcRequestStatusDto = "Draft" | "Approve" | "Reject";
|
|
16611
|
-
export declare class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto {
|
|
16612
|
-
specificationId: string;
|
|
15829
|
+
export declare class ExternalRoleDto implements IExternalRoleDto {
|
|
15830
|
+
id: string;
|
|
16613
15831
|
name: string;
|
|
16614
|
-
|
|
16615
|
-
version: number;
|
|
16616
|
-
status: AmcSpecificationStatusDto;
|
|
16617
|
-
summary?: string | null;
|
|
16618
|
-
relatedStandards: string[];
|
|
16619
|
-
created: Date;
|
|
16620
|
-
createdBy: string;
|
|
16621
|
-
createdById: string;
|
|
16622
|
-
updatedBy?: string | null;
|
|
16623
|
-
updatedById?: string | null;
|
|
16624
|
-
constructor(data?: IAmcSpecificationLiteDto);
|
|
15832
|
+
constructor(data?: IExternalRoleDto);
|
|
16625
15833
|
init(_data?: any): void;
|
|
16626
|
-
static fromJS(data: any):
|
|
15834
|
+
static fromJS(data: any): ExternalRoleDto;
|
|
16627
15835
|
toJSON(data?: any): any;
|
|
16628
15836
|
}
|
|
16629
|
-
export interface
|
|
16630
|
-
|
|
15837
|
+
export interface IExternalRoleDto {
|
|
15838
|
+
id: string;
|
|
16631
15839
|
name: string;
|
|
16632
|
-
revision: string;
|
|
16633
|
-
version: number;
|
|
16634
|
-
status: AmcSpecificationStatusDto;
|
|
16635
|
-
summary?: string | null;
|
|
16636
|
-
relatedStandards: string[];
|
|
16637
|
-
created: Date;
|
|
16638
|
-
createdBy: string;
|
|
16639
|
-
createdById: string;
|
|
16640
|
-
updatedBy?: string | null;
|
|
16641
|
-
updatedById?: string | null;
|
|
16642
15840
|
}
|
|
16643
|
-
export
|
|
16644
|
-
|
|
16645
|
-
|
|
16646
|
-
|
|
16647
|
-
|
|
16648
|
-
|
|
16649
|
-
|
|
16650
|
-
version: number;
|
|
16651
|
-
status: AmcSpecificationStatusDto;
|
|
16652
|
-
summary?: string | null;
|
|
16653
|
-
relatedStandards: string[];
|
|
16654
|
-
created: Date;
|
|
16655
|
-
createdBy: string;
|
|
16656
|
-
createdById: string;
|
|
16657
|
-
updatedBy?: string | null;
|
|
16658
|
-
updatedById?: string | null;
|
|
16659
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
16660
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
16661
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
16662
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
16663
|
-
constructor(data?: IAmcSpecificationDto);
|
|
15841
|
+
export declare class CompanyCustomerDto implements ICompanyCustomerDto {
|
|
15842
|
+
customerTenantId?: string | null;
|
|
15843
|
+
customerAzureAdTenantId?: string | null;
|
|
15844
|
+
customerName?: string | null;
|
|
15845
|
+
supplierId?: string | null;
|
|
15846
|
+
supplierName?: string | null;
|
|
15847
|
+
constructor(data?: ICompanyCustomerDto);
|
|
16664
15848
|
init(_data?: any): void;
|
|
16665
|
-
static fromJS(data: any):
|
|
15849
|
+
static fromJS(data: any): CompanyCustomerDto;
|
|
16666
15850
|
toJSON(data?: any): any;
|
|
16667
15851
|
}
|
|
16668
|
-
export interface
|
|
16669
|
-
|
|
16670
|
-
|
|
16671
|
-
|
|
16672
|
-
|
|
16673
|
-
|
|
16674
|
-
version: number;
|
|
16675
|
-
status: AmcSpecificationStatusDto;
|
|
16676
|
-
summary?: string | null;
|
|
16677
|
-
relatedStandards: string[];
|
|
16678
|
-
created: Date;
|
|
16679
|
-
createdBy: string;
|
|
16680
|
-
createdById: string;
|
|
16681
|
-
updatedBy?: string | null;
|
|
16682
|
-
updatedById?: string | null;
|
|
16683
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
16684
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
16685
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
16686
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
16687
|
-
}
|
|
16688
|
-
export declare class AmcChemistrySpecificationDto implements IAmcChemistrySpecificationDto {
|
|
16689
|
-
carbon?: AmcSpecificationLineDto | null;
|
|
16690
|
-
manganese?: AmcSpecificationLineDto | null;
|
|
16691
|
-
silicon?: AmcSpecificationLineDto | null;
|
|
16692
|
-
phosphorus?: AmcSpecificationLineDto | null;
|
|
16693
|
-
sulfur?: AmcSpecificationLineDto | null;
|
|
16694
|
-
chromium?: AmcSpecificationLineDto | null;
|
|
16695
|
-
nickel?: AmcSpecificationLineDto | null;
|
|
16696
|
-
molybdenum?: AmcSpecificationLineDto | null;
|
|
16697
|
-
copper?: AmcSpecificationLineDto | null;
|
|
16698
|
-
nitrogen?: AmcSpecificationLineDto | null;
|
|
16699
|
-
wolfram?: AmcSpecificationLineDto | null;
|
|
16700
|
-
iron?: AmcSpecificationLineDto | null;
|
|
16701
|
-
constructor(data?: IAmcChemistrySpecificationDto);
|
|
16702
|
-
init(_data?: any): void;
|
|
16703
|
-
static fromJS(data: any): AmcChemistrySpecificationDto;
|
|
16704
|
-
toJSON(data?: any): any;
|
|
16705
|
-
}
|
|
16706
|
-
export interface IAmcChemistrySpecificationDto {
|
|
16707
|
-
carbon?: AmcSpecificationLineDto | null;
|
|
16708
|
-
manganese?: AmcSpecificationLineDto | null;
|
|
16709
|
-
silicon?: AmcSpecificationLineDto | null;
|
|
16710
|
-
phosphorus?: AmcSpecificationLineDto | null;
|
|
16711
|
-
sulfur?: AmcSpecificationLineDto | null;
|
|
16712
|
-
chromium?: AmcSpecificationLineDto | null;
|
|
16713
|
-
nickel?: AmcSpecificationLineDto | null;
|
|
16714
|
-
molybdenum?: AmcSpecificationLineDto | null;
|
|
16715
|
-
copper?: AmcSpecificationLineDto | null;
|
|
16716
|
-
nitrogen?: AmcSpecificationLineDto | null;
|
|
16717
|
-
wolfram?: AmcSpecificationLineDto | null;
|
|
16718
|
-
iron?: AmcSpecificationLineDto | null;
|
|
16719
|
-
}
|
|
16720
|
-
export declare class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
|
|
16721
|
-
operator: AmcSpecificationOperatorDto;
|
|
16722
|
-
value1?: number | null;
|
|
16723
|
-
value2?: number | null;
|
|
16724
|
-
symbol: AmcSpecificationSymbolDto;
|
|
16725
|
-
constructor(data?: IAmcSpecificationLineDto);
|
|
16726
|
-
init(_data?: any): void;
|
|
16727
|
-
static fromJS(data: any): AmcSpecificationLineDto;
|
|
16728
|
-
toJSON(data?: any): any;
|
|
16729
|
-
}
|
|
16730
|
-
export interface IAmcSpecificationLineDto {
|
|
16731
|
-
operator: AmcSpecificationOperatorDto;
|
|
16732
|
-
value1?: number | null;
|
|
16733
|
-
value2?: number | null;
|
|
16734
|
-
symbol: AmcSpecificationSymbolDto;
|
|
16735
|
-
}
|
|
16736
|
-
export type AmcSpecificationOperatorDto = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
|
|
16737
|
-
export type AmcSpecificationSymbolDto = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
|
|
16738
|
-
export declare class AmcMechanicalSpecificationDto implements IAmcMechanicalSpecificationDto {
|
|
16739
|
-
yieldStrength?: AmcSpecificationLineDto | null;
|
|
16740
|
-
tensileStrength?: AmcSpecificationLineDto | null;
|
|
16741
|
-
elongation?: AmcSpecificationLineDto | null;
|
|
16742
|
-
reductionOfArea?: AmcSpecificationLineDto | null;
|
|
16743
|
-
impactEnergy?: AmcSpecificationLineDto | null;
|
|
16744
|
-
hardness?: AmcSpecificationLineDto | null;
|
|
16745
|
-
constructor(data?: IAmcMechanicalSpecificationDto);
|
|
16746
|
-
init(_data?: any): void;
|
|
16747
|
-
static fromJS(data: any): AmcMechanicalSpecificationDto;
|
|
16748
|
-
toJSON(data?: any): any;
|
|
16749
|
-
}
|
|
16750
|
-
export interface IAmcMechanicalSpecificationDto {
|
|
16751
|
-
yieldStrength?: AmcSpecificationLineDto | null;
|
|
16752
|
-
tensileStrength?: AmcSpecificationLineDto | null;
|
|
16753
|
-
elongation?: AmcSpecificationLineDto | null;
|
|
16754
|
-
reductionOfArea?: AmcSpecificationLineDto | null;
|
|
16755
|
-
impactEnergy?: AmcSpecificationLineDto | null;
|
|
16756
|
-
hardness?: AmcSpecificationLineDto | null;
|
|
16757
|
-
}
|
|
16758
|
-
export declare class AmcFerriteSpecificationDto implements IAmcFerriteSpecificationDto {
|
|
16759
|
-
ferriteContent?: AmcSpecificationLineDto | null;
|
|
16760
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16761
|
-
constructor(data?: IAmcFerriteSpecificationDto);
|
|
16762
|
-
init(_data?: any): void;
|
|
16763
|
-
static fromJS(data: any): AmcFerriteSpecificationDto;
|
|
16764
|
-
toJSON(data?: any): any;
|
|
16765
|
-
}
|
|
16766
|
-
export interface IAmcFerriteSpecificationDto {
|
|
16767
|
-
ferriteContent?: AmcSpecificationLineDto | null;
|
|
16768
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16769
|
-
}
|
|
16770
|
-
export declare class AmcHeatTreatmentSpecificationDto implements IAmcHeatTreatmentSpecificationDto {
|
|
16771
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
16772
|
-
treatmentTemperature?: AmcSpecificationLineDto | null;
|
|
16773
|
-
holdingTime?: AmcSpecificationLineDto | null;
|
|
16774
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16775
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16776
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16777
|
-
constructor(data?: IAmcHeatTreatmentSpecificationDto);
|
|
16778
|
-
init(_data?: any): void;
|
|
16779
|
-
static fromJS(data: any): AmcHeatTreatmentSpecificationDto;
|
|
16780
|
-
toJSON(data?: any): any;
|
|
16781
|
-
}
|
|
16782
|
-
export interface IAmcHeatTreatmentSpecificationDto {
|
|
16783
|
-
heatTreatmentType: AmcHeatTreatmentTypeDto[];
|
|
16784
|
-
treatmentTemperature?: AmcSpecificationLineDto | null;
|
|
16785
|
-
holdingTime?: AmcSpecificationLineDto | null;
|
|
16786
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16787
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16788
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16789
|
-
}
|
|
16790
|
-
export declare class CreateAmcSpecificationDto implements ICreateAmcSpecificationDto {
|
|
16791
|
-
name: string;
|
|
16792
|
-
number: string;
|
|
16793
|
-
revision: string;
|
|
16794
|
-
date: Date;
|
|
16795
|
-
specificationFile?: UploadFileDto | null;
|
|
16796
|
-
constructor(data?: ICreateAmcSpecificationDto);
|
|
16797
|
-
init(_data?: any): void;
|
|
16798
|
-
static fromJS(data: any): CreateAmcSpecificationDto;
|
|
16799
|
-
toJSON(data?: any): any;
|
|
15852
|
+
export interface ICompanyCustomerDto {
|
|
15853
|
+
customerTenantId?: string | null;
|
|
15854
|
+
customerAzureAdTenantId?: string | null;
|
|
15855
|
+
customerName?: string | null;
|
|
15856
|
+
supplierId?: string | null;
|
|
15857
|
+
supplierName?: string | null;
|
|
16800
15858
|
}
|
|
16801
|
-
export
|
|
16802
|
-
|
|
16803
|
-
|
|
16804
|
-
|
|
16805
|
-
|
|
16806
|
-
|
|
16807
|
-
|
|
16808
|
-
export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
|
|
16809
|
-
amcSpecificationId: string;
|
|
16810
|
-
markAsObsolete: boolean;
|
|
16811
|
-
summary?: string | null;
|
|
16812
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
16813
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
16814
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
16815
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
16816
|
-
constructor(data?: IUpdateAmcSpecificationDto);
|
|
16817
|
-
init(_data?: any): void;
|
|
16818
|
-
static fromJS(data: any): UpdateAmcSpecificationDto;
|
|
16819
|
-
toJSON(data?: any): any;
|
|
16820
|
-
}
|
|
16821
|
-
export interface IUpdateAmcSpecificationDto {
|
|
16822
|
-
amcSpecificationId: string;
|
|
16823
|
-
markAsObsolete: boolean;
|
|
16824
|
-
summary?: string | null;
|
|
16825
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
16826
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
16827
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
16828
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
16829
|
-
}
|
|
16830
|
-
export declare class AmcTypeLiteDto implements IAmcTypeLiteDto {
|
|
16831
|
-
typeId: string;
|
|
16832
|
-
name: string;
|
|
16833
|
-
revision: string;
|
|
16834
|
-
version: number;
|
|
16835
|
-
description?: string | null;
|
|
16836
|
-
created: Date;
|
|
16837
|
-
createdBy: string;
|
|
16838
|
-
createdById: string;
|
|
16839
|
-
updatedBy?: string | null;
|
|
16840
|
-
updatedById?: string | null;
|
|
16841
|
-
constructor(data?: IAmcTypeLiteDto);
|
|
15859
|
+
export declare class CompanyDto implements ICompanyDto {
|
|
15860
|
+
id?: string;
|
|
15861
|
+
name?: string;
|
|
15862
|
+
organizationNumber?: string | null;
|
|
15863
|
+
country?: string;
|
|
15864
|
+
tenantId?: string | null;
|
|
15865
|
+
constructor(data?: ICompanyDto);
|
|
16842
15866
|
init(_data?: any): void;
|
|
16843
|
-
static fromJS(data: any):
|
|
15867
|
+
static fromJS(data: any): CompanyDto;
|
|
16844
15868
|
toJSON(data?: any): any;
|
|
16845
15869
|
}
|
|
16846
|
-
export interface
|
|
16847
|
-
|
|
16848
|
-
name
|
|
16849
|
-
|
|
16850
|
-
|
|
16851
|
-
|
|
16852
|
-
created: Date;
|
|
16853
|
-
createdBy: string;
|
|
16854
|
-
createdById: string;
|
|
16855
|
-
updatedBy?: string | null;
|
|
16856
|
-
updatedById?: string | null;
|
|
15870
|
+
export interface ICompanyDto {
|
|
15871
|
+
id?: string;
|
|
15872
|
+
name?: string;
|
|
15873
|
+
organizationNumber?: string | null;
|
|
15874
|
+
country?: string;
|
|
15875
|
+
tenantId?: string | null;
|
|
16857
15876
|
}
|
|
16858
|
-
export declare class
|
|
16859
|
-
|
|
16860
|
-
|
|
16861
|
-
|
|
16862
|
-
|
|
16863
|
-
|
|
16864
|
-
|
|
16865
|
-
|
|
16866
|
-
|
|
16867
|
-
|
|
16868
|
-
updatedById?: string | null;
|
|
16869
|
-
checks: AmcTypeChecksDto;
|
|
16870
|
-
constructor(data?: IAmcTypeDto);
|
|
15877
|
+
export declare class InviteSuppliers implements IInviteSuppliers {
|
|
15878
|
+
supplierId: string;
|
|
15879
|
+
supplierName: string;
|
|
15880
|
+
username: string;
|
|
15881
|
+
invitedName: string;
|
|
15882
|
+
existingCompanyId: string;
|
|
15883
|
+
companyName: string;
|
|
15884
|
+
organizationNumber: string;
|
|
15885
|
+
threeLetterIsoCountry: string;
|
|
15886
|
+
constructor(data?: IInviteSuppliers);
|
|
16871
15887
|
init(_data?: any): void;
|
|
16872
|
-
static fromJS(data: any):
|
|
15888
|
+
static fromJS(data: any): InviteSuppliers;
|
|
16873
15889
|
toJSON(data?: any): any;
|
|
16874
15890
|
}
|
|
16875
|
-
export interface
|
|
16876
|
-
|
|
16877
|
-
|
|
16878
|
-
|
|
16879
|
-
|
|
16880
|
-
|
|
16881
|
-
|
|
16882
|
-
|
|
16883
|
-
|
|
16884
|
-
|
|
16885
|
-
|
|
16886
|
-
|
|
16887
|
-
}
|
|
16888
|
-
export declare class AmcTypeChecksDto implements IAmcTypeChecksDto {
|
|
16889
|
-
manufacturer: AmcTypeManufacturerChecksDto;
|
|
16890
|
-
signature: AmcTypeSignatureChecksDto;
|
|
16891
|
-
thirdParty: AmcTypeThirdPartyChecksDto;
|
|
16892
|
-
certification: AmcTypeCertificationChecksDto;
|
|
16893
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
|
|
16894
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
|
|
16895
|
-
testResults: AmcTypeTestResultsChecksDto;
|
|
16896
|
-
documentTypes: AmcTypeDocumentTypesChecksDto;
|
|
16897
|
-
constructor(data?: IAmcTypeChecksDto);
|
|
16898
|
-
init(_data?: any): void;
|
|
16899
|
-
static fromJS(data: any): AmcTypeChecksDto;
|
|
16900
|
-
toJSON(data?: any): any;
|
|
16901
|
-
}
|
|
16902
|
-
export interface IAmcTypeChecksDto {
|
|
16903
|
-
manufacturer: AmcTypeManufacturerChecksDto;
|
|
16904
|
-
signature: AmcTypeSignatureChecksDto;
|
|
16905
|
-
thirdParty: AmcTypeThirdPartyChecksDto;
|
|
16906
|
-
certification: AmcTypeCertificationChecksDto;
|
|
16907
|
-
productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
|
|
16908
|
-
testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
|
|
16909
|
-
testResults: AmcTypeTestResultsChecksDto;
|
|
16910
|
-
documentTypes: AmcTypeDocumentTypesChecksDto;
|
|
16911
|
-
}
|
|
16912
|
-
export declare class AmcTypeManufacturerChecksDto implements IAmcTypeManufacturerChecksDto {
|
|
16913
|
-
manufacturer?: boolean;
|
|
16914
|
-
address?: boolean;
|
|
16915
|
-
contact?: boolean;
|
|
16916
|
-
constructor(data?: IAmcTypeManufacturerChecksDto);
|
|
16917
|
-
init(_data?: any): void;
|
|
16918
|
-
static fromJS(data: any): AmcTypeManufacturerChecksDto;
|
|
16919
|
-
toJSON(data?: any): any;
|
|
16920
|
-
}
|
|
16921
|
-
export interface IAmcTypeManufacturerChecksDto {
|
|
16922
|
-
manufacturer?: boolean;
|
|
16923
|
-
address?: boolean;
|
|
16924
|
-
contact?: boolean;
|
|
16925
|
-
}
|
|
16926
|
-
export declare class AmcTypeSignatureChecksDto implements IAmcTypeSignatureChecksDto {
|
|
16927
|
-
certifiedBy?: boolean;
|
|
16928
|
-
position?: boolean;
|
|
16929
|
-
signature?: boolean;
|
|
16930
|
-
date?: boolean;
|
|
16931
|
-
stamp?: boolean;
|
|
16932
|
-
constructor(data?: IAmcTypeSignatureChecksDto);
|
|
16933
|
-
init(_data?: any): void;
|
|
16934
|
-
static fromJS(data: any): AmcTypeSignatureChecksDto;
|
|
16935
|
-
toJSON(data?: any): any;
|
|
16936
|
-
}
|
|
16937
|
-
export interface IAmcTypeSignatureChecksDto {
|
|
16938
|
-
certifiedBy?: boolean;
|
|
16939
|
-
position?: boolean;
|
|
16940
|
-
signature?: boolean;
|
|
16941
|
-
date?: boolean;
|
|
16942
|
-
stamp?: boolean;
|
|
16943
|
-
}
|
|
16944
|
-
export declare class AmcTypeThirdPartyChecksDto implements IAmcTypeThirdPartyChecksDto {
|
|
16945
|
-
inspectionBody?: boolean;
|
|
16946
|
-
inspectorName?: boolean;
|
|
16947
|
-
position?: boolean;
|
|
16948
|
-
verificationMethod?: boolean;
|
|
16949
|
-
signature?: boolean;
|
|
16950
|
-
date?: boolean;
|
|
16951
|
-
stamp?: boolean;
|
|
16952
|
-
constructor(data?: IAmcTypeThirdPartyChecksDto);
|
|
16953
|
-
init(_data?: any): void;
|
|
16954
|
-
static fromJS(data: any): AmcTypeThirdPartyChecksDto;
|
|
16955
|
-
toJSON(data?: any): any;
|
|
16956
|
-
}
|
|
16957
|
-
export interface IAmcTypeThirdPartyChecksDto {
|
|
16958
|
-
inspectionBody?: boolean;
|
|
16959
|
-
inspectorName?: boolean;
|
|
16960
|
-
position?: boolean;
|
|
16961
|
-
verificationMethod?: boolean;
|
|
16962
|
-
signature?: boolean;
|
|
16963
|
-
date?: boolean;
|
|
16964
|
-
stamp?: boolean;
|
|
16965
|
-
}
|
|
16966
|
-
export declare class AmcTypeCertificationChecksDto implements IAmcTypeCertificationChecksDto {
|
|
16967
|
-
certificateOfCompliance?: boolean;
|
|
16968
|
-
inspectionCertificate?: boolean;
|
|
16969
|
-
constructor(data?: IAmcTypeCertificationChecksDto);
|
|
16970
|
-
init(_data?: any): void;
|
|
16971
|
-
static fromJS(data: any): AmcTypeCertificationChecksDto;
|
|
16972
|
-
toJSON(data?: any): any;
|
|
16973
|
-
}
|
|
16974
|
-
export interface IAmcTypeCertificationChecksDto {
|
|
16975
|
-
certificateOfCompliance?: boolean;
|
|
16976
|
-
inspectionCertificate?: boolean;
|
|
16977
|
-
}
|
|
16978
|
-
export declare class AmcTypeProductAndOrderInformationChecksDto implements IAmcTypeProductAndOrderInformationChecksDto {
|
|
16979
|
-
productDescription?: boolean;
|
|
16980
|
-
materialGrade?: boolean;
|
|
16981
|
-
customer?: boolean;
|
|
16982
|
-
customerOrderNumber?: boolean;
|
|
16983
|
-
dimensionsOrWeight?: boolean;
|
|
16984
|
-
batchNumber?: boolean;
|
|
16985
|
-
heatNumber?: boolean;
|
|
16986
|
-
relatedStandards?: boolean;
|
|
16987
|
-
constructor(data?: IAmcTypeProductAndOrderInformationChecksDto);
|
|
16988
|
-
init(_data?: any): void;
|
|
16989
|
-
static fromJS(data: any): AmcTypeProductAndOrderInformationChecksDto;
|
|
16990
|
-
toJSON(data?: any): any;
|
|
16991
|
-
}
|
|
16992
|
-
export interface IAmcTypeProductAndOrderInformationChecksDto {
|
|
16993
|
-
productDescription?: boolean;
|
|
16994
|
-
materialGrade?: boolean;
|
|
16995
|
-
customer?: boolean;
|
|
16996
|
-
customerOrderNumber?: boolean;
|
|
16997
|
-
dimensionsOrWeight?: boolean;
|
|
16998
|
-
batchNumber?: boolean;
|
|
16999
|
-
heatNumber?: boolean;
|
|
17000
|
-
relatedStandards?: boolean;
|
|
17001
|
-
}
|
|
17002
|
-
export declare class AmcTypeTestMethodsAndReferencesChecksDto implements IAmcTypeTestMethodsAndReferencesChecksDto {
|
|
17003
|
-
usedStandards?: boolean;
|
|
17004
|
-
constructor(data?: IAmcTypeTestMethodsAndReferencesChecksDto);
|
|
17005
|
-
init(_data?: any): void;
|
|
17006
|
-
static fromJS(data: any): AmcTypeTestMethodsAndReferencesChecksDto;
|
|
17007
|
-
toJSON(data?: any): any;
|
|
17008
|
-
}
|
|
17009
|
-
export interface IAmcTypeTestMethodsAndReferencesChecksDto {
|
|
17010
|
-
usedStandards?: boolean;
|
|
17011
|
-
}
|
|
17012
|
-
export declare class AmcTypeTestResultsChecksDto implements IAmcTypeTestResultsChecksDto {
|
|
17013
|
-
mechanicalProperties?: boolean;
|
|
17014
|
-
chemicalAnalysis?: boolean;
|
|
17015
|
-
impactTests?: boolean;
|
|
17016
|
-
corrosionTests?: boolean;
|
|
17017
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
17018
|
-
constructor(data?: IAmcTypeTestResultsChecksDto);
|
|
17019
|
-
init(_data?: any): void;
|
|
17020
|
-
static fromJS(data: any): AmcTypeTestResultsChecksDto;
|
|
17021
|
-
toJSON(data?: any): any;
|
|
17022
|
-
}
|
|
17023
|
-
export interface IAmcTypeTestResultsChecksDto {
|
|
17024
|
-
mechanicalProperties?: boolean;
|
|
17025
|
-
chemicalAnalysis?: boolean;
|
|
17026
|
-
impactTests?: boolean;
|
|
17027
|
-
corrosionTests?: boolean;
|
|
17028
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
17029
|
-
}
|
|
17030
|
-
export declare class AmcTypeDocumentTypesChecksDto implements IAmcTypeDocumentTypesChecksDto {
|
|
17031
|
-
heatTreatmentCertificate?: boolean;
|
|
17032
|
-
ultrasonicControlCertificate?: boolean;
|
|
17033
|
-
liquidPenetrantCertificate?: boolean;
|
|
17034
|
-
testReport?: boolean;
|
|
17035
|
-
dimensionalReport?: boolean;
|
|
17036
|
-
dyePenetrantReport?: boolean;
|
|
17037
|
-
visualReport?: boolean;
|
|
17038
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
17039
|
-
certificateOfTest?: boolean;
|
|
17040
|
-
technicalReport?: boolean;
|
|
17041
|
-
microExaminationReport?: boolean;
|
|
17042
|
-
radiologicalReport?: boolean;
|
|
17043
|
-
constructor(data?: IAmcTypeDocumentTypesChecksDto);
|
|
17044
|
-
init(_data?: any): void;
|
|
17045
|
-
static fromJS(data: any): AmcTypeDocumentTypesChecksDto;
|
|
17046
|
-
toJSON(data?: any): any;
|
|
17047
|
-
}
|
|
17048
|
-
export interface IAmcTypeDocumentTypesChecksDto {
|
|
17049
|
-
heatTreatmentCertificate?: boolean;
|
|
17050
|
-
ultrasonicControlCertificate?: boolean;
|
|
17051
|
-
liquidPenetrantCertificate?: boolean;
|
|
17052
|
-
testReport?: boolean;
|
|
17053
|
-
dimensionalReport?: boolean;
|
|
17054
|
-
dyePenetrantReport?: boolean;
|
|
17055
|
-
visualReport?: boolean;
|
|
17056
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
17057
|
-
certificateOfTest?: boolean;
|
|
17058
|
-
technicalReport?: boolean;
|
|
17059
|
-
microExaminationReport?: boolean;
|
|
17060
|
-
radiologicalReport?: boolean;
|
|
17061
|
-
}
|
|
17062
|
-
export declare class CreateAmcTypeRequestDto implements ICreateAmcTypeRequestDto {
|
|
15891
|
+
export interface IInviteSuppliers {
|
|
15892
|
+
supplierId: string;
|
|
15893
|
+
supplierName: string;
|
|
15894
|
+
username: string;
|
|
15895
|
+
invitedName: string;
|
|
15896
|
+
existingCompanyId: string;
|
|
15897
|
+
companyName: string;
|
|
15898
|
+
organizationNumber: string;
|
|
15899
|
+
threeLetterIsoCountry: string;
|
|
15900
|
+
}
|
|
15901
|
+
export declare class ExternalSupplierDto implements IExternalSupplierDto {
|
|
15902
|
+
id: string;
|
|
17063
15903
|
name: string;
|
|
17064
|
-
|
|
17065
|
-
|
|
17066
|
-
constructor(data?:
|
|
15904
|
+
companyId: string;
|
|
15905
|
+
active: boolean;
|
|
15906
|
+
constructor(data?: IExternalSupplierDto);
|
|
17067
15907
|
init(_data?: any): void;
|
|
17068
|
-
static fromJS(data: any):
|
|
15908
|
+
static fromJS(data: any): ExternalSupplierDto;
|
|
17069
15909
|
toJSON(data?: any): any;
|
|
17070
15910
|
}
|
|
17071
|
-
export interface
|
|
15911
|
+
export interface IExternalSupplierDto {
|
|
15912
|
+
id: string;
|
|
17072
15913
|
name: string;
|
|
17073
|
-
|
|
17074
|
-
|
|
15914
|
+
companyId: string;
|
|
15915
|
+
active: boolean;
|
|
17075
15916
|
}
|
|
17076
|
-
export declare class
|
|
17077
|
-
|
|
17078
|
-
|
|
17079
|
-
|
|
17080
|
-
constructor(data?:
|
|
15917
|
+
export declare class CreateSupplierMapping implements ICreateSupplierMapping {
|
|
15918
|
+
companyId: string;
|
|
15919
|
+
existingSupplierId: string;
|
|
15920
|
+
newSupplierId: string;
|
|
15921
|
+
constructor(data?: ICreateSupplierMapping);
|
|
17081
15922
|
init(_data?: any): void;
|
|
17082
|
-
static fromJS(data: any):
|
|
15923
|
+
static fromJS(data: any): CreateSupplierMapping;
|
|
17083
15924
|
toJSON(data?: any): any;
|
|
17084
15925
|
}
|
|
17085
|
-
export interface
|
|
17086
|
-
|
|
17087
|
-
|
|
17088
|
-
|
|
15926
|
+
export interface ICreateSupplierMapping {
|
|
15927
|
+
companyId: string;
|
|
15928
|
+
existingSupplierId: string;
|
|
15929
|
+
newSupplierId: string;
|
|
17089
15930
|
}
|
|
17090
15931
|
export interface FileParameter {
|
|
17091
15932
|
data: any;
|