@ignos/api-client 20260130.0.13938 → 20260130.0.13942-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 +348 -403
- package/lib/ignosportal-api.js +4795 -4899
- package/package.json +1 -1
- package/src/ignosportal-api.ts +10189 -10353
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -126,6 +126,7 @@ export declare class CustomersClient extends AuthorizedApiBase implements ICusto
|
|
|
126
126
|
}
|
|
127
127
|
export interface IGuestsClient {
|
|
128
128
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
129
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
129
130
|
}
|
|
130
131
|
export declare class GuestsClient extends AuthorizedApiBase implements IGuestsClient {
|
|
131
132
|
private http;
|
|
@@ -136,6 +137,8 @@ export declare class GuestsClient extends AuthorizedApiBase implements IGuestsCl
|
|
|
136
137
|
});
|
|
137
138
|
getGuestLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
138
139
|
protected processGetGuestLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
140
|
+
getSupplierLoginInfo(search: string | undefined): Promise<GuestLoginInfoDto>;
|
|
141
|
+
protected processGetSupplierLoginInfo(response: Response): Promise<GuestLoginInfoDto>;
|
|
139
142
|
}
|
|
140
143
|
export interface IPresentationClient {
|
|
141
144
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
@@ -1447,102 +1450,6 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
|
|
|
1447
1450
|
listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
|
|
1448
1451
|
protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
|
|
1449
1452
|
}
|
|
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
1453
|
export interface ICncFileTransferClient {
|
|
1547
1454
|
startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
|
|
1548
1455
|
startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
|
|
@@ -3225,6 +3132,102 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3225
3132
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3226
3133
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3227
3134
|
}
|
|
3135
|
+
export interface IExternalAccessClient {
|
|
3136
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3137
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3138
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3139
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3140
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3141
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3142
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3143
|
+
}
|
|
3144
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3145
|
+
private http;
|
|
3146
|
+
private baseUrl;
|
|
3147
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3148
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3149
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3150
|
+
});
|
|
3151
|
+
listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
|
|
3152
|
+
protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
|
|
3153
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3154
|
+
protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3155
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3156
|
+
protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
|
|
3157
|
+
deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
|
|
3158
|
+
protected processDeleteCompanyUser(response: Response): Promise<void>;
|
|
3159
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3160
|
+
protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
|
|
3161
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3162
|
+
protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
|
|
3163
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3164
|
+
protected processDeleteCompanyCustomer(response: Response): Promise<void>;
|
|
3165
|
+
}
|
|
3166
|
+
export interface IExternalClient {
|
|
3167
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3168
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3169
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3170
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3171
|
+
}
|
|
3172
|
+
export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
|
|
3173
|
+
private http;
|
|
3174
|
+
private baseUrl;
|
|
3175
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3176
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3177
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3178
|
+
});
|
|
3179
|
+
listCompanies(): Promise<CompanyDto[]>;
|
|
3180
|
+
protected processListCompanies(response: Response): Promise<CompanyDto[]>;
|
|
3181
|
+
getCompany(id: string): Promise<CompanyDto>;
|
|
3182
|
+
protected processGetCompany(response: Response): Promise<CompanyDto>;
|
|
3183
|
+
getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
|
|
3184
|
+
protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3185
|
+
acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
|
|
3186
|
+
protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3187
|
+
}
|
|
3188
|
+
export interface ISuppliersClient {
|
|
3189
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3190
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3191
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3192
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3193
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3194
|
+
/**
|
|
3195
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3196
|
+
*/
|
|
3197
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3198
|
+
/**
|
|
3199
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3200
|
+
*/
|
|
3201
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3202
|
+
}
|
|
3203
|
+
export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
|
|
3204
|
+
private http;
|
|
3205
|
+
private baseUrl;
|
|
3206
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3207
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3208
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3209
|
+
});
|
|
3210
|
+
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3211
|
+
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3212
|
+
createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
|
|
3213
|
+
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3214
|
+
deleteSupplierInvite(id: string): Promise<void>;
|
|
3215
|
+
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
3216
|
+
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3217
|
+
protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
|
|
3218
|
+
deleteSupplier(id: string): Promise<void>;
|
|
3219
|
+
protected processDeleteSupplier(response: Response): Promise<void>;
|
|
3220
|
+
/**
|
|
3221
|
+
* Creates a mapping between old supplier id and new supplier id.
|
|
3222
|
+
*/
|
|
3223
|
+
createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
|
|
3224
|
+
protected processCreateSupplierMapping(response: Response): Promise<void>;
|
|
3225
|
+
/**
|
|
3226
|
+
* Delete all supplier mappings between old supplier ids and new supplier ids.
|
|
3227
|
+
*/
|
|
3228
|
+
deleteSupplierMappings(): Promise<void>;
|
|
3229
|
+
protected processDeleteSupplierMappings(response: Response): Promise<void>;
|
|
3230
|
+
}
|
|
3228
3231
|
export interface IMaterialCertificateChecksClient {
|
|
3229
3232
|
listMaterialCertificateChecks(request: AmcCheckListRequestDto): Promise<AmcCheckListDto>;
|
|
3230
3233
|
getMaterialCertificateCheck(materialCertificateCheckId: string): Promise<AmcResultDto>;
|
|
@@ -3249,10 +3252,10 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
|
|
|
3249
3252
|
}
|
|
3250
3253
|
export interface IMaterialCertificateSpecificationsClient {
|
|
3251
3254
|
listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
|
|
3252
|
-
getSpecification(
|
|
3255
|
+
getSpecification(specificationsId: string | undefined, version: number, specificationId: string): Promise<AmcSpecificationDto>;
|
|
3253
3256
|
createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3254
3257
|
updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3255
|
-
deleteMaterialCertificateTypes(materialCertificateSpecificationId: string
|
|
3258
|
+
deleteMaterialCertificateTypes(materialCertificateSpecificationId: string): Promise<void>;
|
|
3256
3259
|
}
|
|
3257
3260
|
export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
|
|
3258
3261
|
private http;
|
|
@@ -3263,13 +3266,13 @@ export declare class MaterialCertificateSpecificationsClient extends AuthorizedA
|
|
|
3263
3266
|
});
|
|
3264
3267
|
listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
|
|
3265
3268
|
protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
|
|
3266
|
-
getSpecification(
|
|
3269
|
+
getSpecification(specificationsId: string | undefined, version: number, specificationId: string): Promise<AmcSpecificationDto>;
|
|
3267
3270
|
protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
|
|
3268
3271
|
createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3269
3272
|
protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
|
|
3270
3273
|
updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3271
3274
|
protected processUpdateSpecifications(response: Response): Promise<AmcSpecificationDto>;
|
|
3272
|
-
deleteMaterialCertificateTypes(materialCertificateSpecificationId: string
|
|
3275
|
+
deleteMaterialCertificateTypes(materialCertificateSpecificationId: string): Promise<void>;
|
|
3273
3276
|
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
3274
3277
|
}
|
|
3275
3278
|
export interface IMaterialCertificateTypesClient {
|
|
@@ -3277,7 +3280,7 @@ export interface IMaterialCertificateTypesClient {
|
|
|
3277
3280
|
getMaterialCertificateTypes(typeId: string, version: number): Promise<AmcTypeDto>;
|
|
3278
3281
|
createMaterialCertificateTypes(certificatesTypesRequest: CreateAmcTypeRequestDto): Promise<AmcTypeDto>;
|
|
3279
3282
|
updateMaterialCertificateTypes(certificatesTypesRequest: UpdateAmcTypeDto): Promise<AmcTypeDto>;
|
|
3280
|
-
deleteMaterialCertificateTypes(materialCertificateTypeId: string
|
|
3283
|
+
deleteMaterialCertificateTypes(materialCertificateTypeId: string): Promise<void>;
|
|
3281
3284
|
}
|
|
3282
3285
|
export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
|
|
3283
3286
|
private http;
|
|
@@ -3294,7 +3297,7 @@ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase im
|
|
|
3294
3297
|
protected processCreateMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
|
|
3295
3298
|
updateMaterialCertificateTypes(certificatesTypesRequest: UpdateAmcTypeDto): Promise<AmcTypeDto>;
|
|
3296
3299
|
protected processUpdateMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
|
|
3297
|
-
deleteMaterialCertificateTypes(materialCertificateTypeId: string
|
|
3300
|
+
deleteMaterialCertificateTypes(materialCertificateTypeId: string): Promise<void>;
|
|
3298
3301
|
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
3299
3302
|
}
|
|
3300
3303
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
@@ -3883,6 +3886,7 @@ export declare class UserDetailsDto implements IUserDetailsDto {
|
|
|
3883
3886
|
isExternalUser?: boolean;
|
|
3884
3887
|
isBetaTester?: boolean | null;
|
|
3885
3888
|
hasAccessToIgnos?: boolean;
|
|
3889
|
+
isInvitedUser?: boolean;
|
|
3886
3890
|
constructor(data?: IUserDetailsDto);
|
|
3887
3891
|
init(_data?: any): void;
|
|
3888
3892
|
static fromJS(data: any): UserDetailsDto;
|
|
@@ -3900,6 +3904,7 @@ export interface IUserDetailsDto {
|
|
|
3900
3904
|
isExternalUser?: boolean;
|
|
3901
3905
|
isBetaTester?: boolean | null;
|
|
3902
3906
|
hasAccessToIgnos?: boolean;
|
|
3907
|
+
isInvitedUser?: boolean;
|
|
3903
3908
|
}
|
|
3904
3909
|
export declare class UserDto implements IUserDto {
|
|
3905
3910
|
id?: string | null;
|
|
@@ -8588,268 +8593,30 @@ export declare class DocumentTypeRuleTypeDto implements IDocumentTypeRuleTypeDto
|
|
|
8588
8593
|
}
|
|
8589
8594
|
export interface IDocumentTypeRuleTypeDto {
|
|
8590
8595
|
tag?: string | null;
|
|
8591
|
-
ruleType?: DocumentRuleType;
|
|
8592
|
-
description?: string | null;
|
|
8593
|
-
}
|
|
8594
|
-
export declare class UpdateDocumentTypeRuleRequest implements IUpdateDocumentTypeRuleRequest {
|
|
8595
|
-
rules: DocumentTypeRuleDto[];
|
|
8596
|
-
constructor(data?: IUpdateDocumentTypeRuleRequest);
|
|
8597
|
-
init(_data?: any): void;
|
|
8598
|
-
static fromJS(data: any): UpdateDocumentTypeRuleRequest;
|
|
8599
|
-
toJSON(data?: any): any;
|
|
8600
|
-
}
|
|
8601
|
-
export interface IUpdateDocumentTypeRuleRequest {
|
|
8602
|
-
rules: DocumentTypeRuleDto[];
|
|
8603
|
-
}
|
|
8604
|
-
export declare class DocumentGeneratorTypeDto implements IDocumentGeneratorTypeDto {
|
|
8605
|
-
key: string;
|
|
8606
|
-
description: string;
|
|
8607
|
-
constructor(data?: IDocumentGeneratorTypeDto);
|
|
8608
|
-
init(_data?: any): void;
|
|
8609
|
-
static fromJS(data: any): DocumentGeneratorTypeDto;
|
|
8610
|
-
toJSON(data?: any): any;
|
|
8611
|
-
}
|
|
8612
|
-
export interface IDocumentGeneratorTypeDto {
|
|
8613
|
-
key: string;
|
|
8614
|
-
description: string;
|
|
8615
|
-
}
|
|
8616
|
-
export declare class CompanyUserDto implements ICompanyUserDto {
|
|
8617
|
-
companyId?: string | null;
|
|
8618
|
-
username?: string | null;
|
|
8619
|
-
name?: string | null;
|
|
8620
|
-
roles?: string[] | null;
|
|
8621
|
-
constructor(data?: ICompanyUserDto);
|
|
8622
|
-
init(_data?: any): void;
|
|
8623
|
-
static fromJS(data: any): CompanyUserDto;
|
|
8624
|
-
toJSON(data?: any): any;
|
|
8625
|
-
}
|
|
8626
|
-
export interface ICompanyUserDto {
|
|
8627
|
-
companyId?: string | null;
|
|
8628
|
-
username?: string | null;
|
|
8629
|
-
name?: string | null;
|
|
8630
|
-
roles?: string[] | null;
|
|
8631
|
-
}
|
|
8632
|
-
export declare class CreateCompanyUserRequest implements ICreateCompanyUserRequest {
|
|
8633
|
-
username: string;
|
|
8634
|
-
name: string;
|
|
8635
|
-
roles: string[];
|
|
8636
|
-
companyId?: string | null;
|
|
8637
|
-
constructor(data?: ICreateCompanyUserRequest);
|
|
8638
|
-
init(_data?: any): void;
|
|
8639
|
-
static fromJS(data: any): CreateCompanyUserRequest;
|
|
8640
|
-
toJSON(data?: any): any;
|
|
8641
|
-
}
|
|
8642
|
-
export interface ICreateCompanyUserRequest {
|
|
8643
|
-
username: string;
|
|
8644
|
-
name: string;
|
|
8645
|
-
roles: string[];
|
|
8646
|
-
companyId?: string | null;
|
|
8647
|
-
}
|
|
8648
|
-
export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
|
|
8649
|
-
name: string;
|
|
8650
|
-
roles: string[];
|
|
8651
|
-
companyId?: string | null;
|
|
8652
|
-
constructor(data?: IUpdateCompanyUserRequest);
|
|
8653
|
-
init(_data?: any): void;
|
|
8654
|
-
static fromJS(data: any): UpdateCompanyUserRequest;
|
|
8655
|
-
toJSON(data?: any): any;
|
|
8656
|
-
}
|
|
8657
|
-
export interface IUpdateCompanyUserRequest {
|
|
8658
|
-
name: string;
|
|
8659
|
-
roles: string[];
|
|
8660
|
-
companyId?: string | null;
|
|
8661
|
-
}
|
|
8662
|
-
export declare class ExternalRoleDto implements IExternalRoleDto {
|
|
8663
|
-
id: string;
|
|
8664
|
-
name: string;
|
|
8665
|
-
constructor(data?: IExternalRoleDto);
|
|
8666
|
-
init(_data?: any): void;
|
|
8667
|
-
static fromJS(data: any): ExternalRoleDto;
|
|
8668
|
-
toJSON(data?: any): any;
|
|
8669
|
-
}
|
|
8670
|
-
export interface IExternalRoleDto {
|
|
8671
|
-
id: string;
|
|
8672
|
-
name: string;
|
|
8673
|
-
}
|
|
8674
|
-
export declare class CompanyCustomerDto implements ICompanyCustomerDto {
|
|
8675
|
-
customerTenantId?: string | null;
|
|
8676
|
-
customerAzureAdTenantId?: string | null;
|
|
8677
|
-
customerName?: string | null;
|
|
8678
|
-
supplierId?: string | null;
|
|
8679
|
-
supplierName?: string | null;
|
|
8680
|
-
constructor(data?: ICompanyCustomerDto);
|
|
8681
|
-
init(_data?: any): void;
|
|
8682
|
-
static fromJS(data: any): CompanyCustomerDto;
|
|
8683
|
-
toJSON(data?: any): any;
|
|
8684
|
-
}
|
|
8685
|
-
export interface ICompanyCustomerDto {
|
|
8686
|
-
customerTenantId?: string | null;
|
|
8687
|
-
customerAzureAdTenantId?: string | null;
|
|
8688
|
-
customerName?: string | null;
|
|
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[];
|
|
8596
|
+
ruleType?: DocumentRuleType;
|
|
8597
|
+
description?: string | null;
|
|
8825
8598
|
}
|
|
8826
|
-
export declare class
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
roles: string[];
|
|
8830
|
-
constructor(data?: IImportSupplierUserDto);
|
|
8599
|
+
export declare class UpdateDocumentTypeRuleRequest implements IUpdateDocumentTypeRuleRequest {
|
|
8600
|
+
rules: DocumentTypeRuleDto[];
|
|
8601
|
+
constructor(data?: IUpdateDocumentTypeRuleRequest);
|
|
8831
8602
|
init(_data?: any): void;
|
|
8832
|
-
static fromJS(data: any):
|
|
8603
|
+
static fromJS(data: any): UpdateDocumentTypeRuleRequest;
|
|
8833
8604
|
toJSON(data?: any): any;
|
|
8834
8605
|
}
|
|
8835
|
-
export interface
|
|
8836
|
-
|
|
8837
|
-
name: string;
|
|
8838
|
-
roles: string[];
|
|
8606
|
+
export interface IUpdateDocumentTypeRuleRequest {
|
|
8607
|
+
rules: DocumentTypeRuleDto[];
|
|
8839
8608
|
}
|
|
8840
|
-
export declare class
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
|
|
8844
|
-
constructor(data?: ICreateSupplierMapping);
|
|
8609
|
+
export declare class DocumentGeneratorTypeDto implements IDocumentGeneratorTypeDto {
|
|
8610
|
+
key: string;
|
|
8611
|
+
description: string;
|
|
8612
|
+
constructor(data?: IDocumentGeneratorTypeDto);
|
|
8845
8613
|
init(_data?: any): void;
|
|
8846
|
-
static fromJS(data: any):
|
|
8614
|
+
static fromJS(data: any): DocumentGeneratorTypeDto;
|
|
8847
8615
|
toJSON(data?: any): any;
|
|
8848
8616
|
}
|
|
8849
|
-
export interface
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
newSupplierId: string;
|
|
8617
|
+
export interface IDocumentGeneratorTypeDto {
|
|
8618
|
+
key: string;
|
|
8619
|
+
description: string;
|
|
8853
8620
|
}
|
|
8854
8621
|
export declare class CncMachineTransferDto implements ICncMachineTransferDto {
|
|
8855
8622
|
id: string;
|
|
@@ -16107,6 +15874,194 @@ export interface ISetDiscussionLastReadRequest {
|
|
|
16107
15874
|
operationId?: string | null;
|
|
16108
15875
|
resourceId?: string | null;
|
|
16109
15876
|
}
|
|
15877
|
+
export declare class CompanyUserDto implements ICompanyUserDto {
|
|
15878
|
+
companyId: string;
|
|
15879
|
+
userObjectId: string;
|
|
15880
|
+
username?: string | null;
|
|
15881
|
+
name?: string | null;
|
|
15882
|
+
roles: string[];
|
|
15883
|
+
constructor(data?: ICompanyUserDto);
|
|
15884
|
+
init(_data?: any): void;
|
|
15885
|
+
static fromJS(data: any): CompanyUserDto;
|
|
15886
|
+
toJSON(data?: any): any;
|
|
15887
|
+
}
|
|
15888
|
+
export interface ICompanyUserDto {
|
|
15889
|
+
companyId: string;
|
|
15890
|
+
userObjectId: string;
|
|
15891
|
+
username?: string | null;
|
|
15892
|
+
name?: string | null;
|
|
15893
|
+
roles: string[];
|
|
15894
|
+
}
|
|
15895
|
+
export declare class CreateCompanyUser implements ICreateCompanyUser {
|
|
15896
|
+
username: string;
|
|
15897
|
+
name: string;
|
|
15898
|
+
roles: string[];
|
|
15899
|
+
companyId?: string | null;
|
|
15900
|
+
constructor(data?: ICreateCompanyUser);
|
|
15901
|
+
init(_data?: any): void;
|
|
15902
|
+
static fromJS(data: any): CreateCompanyUser;
|
|
15903
|
+
toJSON(data?: any): any;
|
|
15904
|
+
}
|
|
15905
|
+
export interface ICreateCompanyUser {
|
|
15906
|
+
username: string;
|
|
15907
|
+
name: string;
|
|
15908
|
+
roles: string[];
|
|
15909
|
+
companyId?: string | null;
|
|
15910
|
+
}
|
|
15911
|
+
export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
|
|
15912
|
+
roles: string[];
|
|
15913
|
+
companyId?: string | null;
|
|
15914
|
+
constructor(data?: IUpdateCompanyUserRequest);
|
|
15915
|
+
init(_data?: any): void;
|
|
15916
|
+
static fromJS(data: any): UpdateCompanyUserRequest;
|
|
15917
|
+
toJSON(data?: any): any;
|
|
15918
|
+
}
|
|
15919
|
+
export interface IUpdateCompanyUserRequest {
|
|
15920
|
+
roles: string[];
|
|
15921
|
+
companyId?: string | null;
|
|
15922
|
+
}
|
|
15923
|
+
export declare class ExternalRoleDto implements IExternalRoleDto {
|
|
15924
|
+
id: string;
|
|
15925
|
+
name: string;
|
|
15926
|
+
constructor(data?: IExternalRoleDto);
|
|
15927
|
+
init(_data?: any): void;
|
|
15928
|
+
static fromJS(data: any): ExternalRoleDto;
|
|
15929
|
+
toJSON(data?: any): any;
|
|
15930
|
+
}
|
|
15931
|
+
export interface IExternalRoleDto {
|
|
15932
|
+
id: string;
|
|
15933
|
+
name: string;
|
|
15934
|
+
}
|
|
15935
|
+
export declare class CompanyCustomerDto implements ICompanyCustomerDto {
|
|
15936
|
+
customerTenantId?: string | null;
|
|
15937
|
+
customerAzureAdTenantId?: string | null;
|
|
15938
|
+
customerName?: string | null;
|
|
15939
|
+
supplierId?: string | null;
|
|
15940
|
+
supplierName?: string | null;
|
|
15941
|
+
constructor(data?: ICompanyCustomerDto);
|
|
15942
|
+
init(_data?: any): void;
|
|
15943
|
+
static fromJS(data: any): CompanyCustomerDto;
|
|
15944
|
+
toJSON(data?: any): any;
|
|
15945
|
+
}
|
|
15946
|
+
export interface ICompanyCustomerDto {
|
|
15947
|
+
customerTenantId?: string | null;
|
|
15948
|
+
customerAzureAdTenantId?: string | null;
|
|
15949
|
+
customerName?: string | null;
|
|
15950
|
+
supplierId?: string | null;
|
|
15951
|
+
supplierName?: string | null;
|
|
15952
|
+
}
|
|
15953
|
+
export declare class CompanyDto implements ICompanyDto {
|
|
15954
|
+
id?: string;
|
|
15955
|
+
name?: string;
|
|
15956
|
+
organizationNumber?: string | null;
|
|
15957
|
+
country?: string;
|
|
15958
|
+
tenantId?: string | null;
|
|
15959
|
+
constructor(data?: ICompanyDto);
|
|
15960
|
+
init(_data?: any): void;
|
|
15961
|
+
static fromJS(data: any): CompanyDto;
|
|
15962
|
+
toJSON(data?: any): any;
|
|
15963
|
+
}
|
|
15964
|
+
export interface ICompanyDto {
|
|
15965
|
+
id?: string;
|
|
15966
|
+
name?: string;
|
|
15967
|
+
organizationNumber?: string | null;
|
|
15968
|
+
country?: string;
|
|
15969
|
+
tenantId?: string | null;
|
|
15970
|
+
}
|
|
15971
|
+
export declare class SupplierInviteDto implements ISupplierInviteDto {
|
|
15972
|
+
id: string;
|
|
15973
|
+
supplierId: string;
|
|
15974
|
+
supplierName?: string | null;
|
|
15975
|
+
customerName?: string | null;
|
|
15976
|
+
userId: string;
|
|
15977
|
+
userName?: string | null;
|
|
15978
|
+
companyId?: string | null;
|
|
15979
|
+
deadline: Date;
|
|
15980
|
+
acceptedTimestamp?: Date | null;
|
|
15981
|
+
createdTime: Date;
|
|
15982
|
+
createdBy: string;
|
|
15983
|
+
constructor(data?: ISupplierInviteDto);
|
|
15984
|
+
init(_data?: any): void;
|
|
15985
|
+
static fromJS(data: any): SupplierInviteDto;
|
|
15986
|
+
toJSON(data?: any): any;
|
|
15987
|
+
}
|
|
15988
|
+
export interface ISupplierInviteDto {
|
|
15989
|
+
id: string;
|
|
15990
|
+
supplierId: string;
|
|
15991
|
+
supplierName?: string | null;
|
|
15992
|
+
customerName?: string | null;
|
|
15993
|
+
userId: string;
|
|
15994
|
+
userName?: string | null;
|
|
15995
|
+
companyId?: string | null;
|
|
15996
|
+
deadline: Date;
|
|
15997
|
+
acceptedTimestamp?: Date | null;
|
|
15998
|
+
createdTime: Date;
|
|
15999
|
+
createdBy: string;
|
|
16000
|
+
}
|
|
16001
|
+
export declare class AcceptSupplierInvite implements IAcceptSupplierInvite {
|
|
16002
|
+
companyName?: string;
|
|
16003
|
+
organizationNumber?: string;
|
|
16004
|
+
threeLetterIsoCountry?: string;
|
|
16005
|
+
constructor(data?: IAcceptSupplierInvite);
|
|
16006
|
+
init(_data?: any): void;
|
|
16007
|
+
static fromJS(data: any): AcceptSupplierInvite;
|
|
16008
|
+
toJSON(data?: any): any;
|
|
16009
|
+
}
|
|
16010
|
+
export interface IAcceptSupplierInvite {
|
|
16011
|
+
companyName?: string;
|
|
16012
|
+
organizationNumber?: string;
|
|
16013
|
+
threeLetterIsoCountry?: string;
|
|
16014
|
+
}
|
|
16015
|
+
export declare class CreateSupplierInvite implements ICreateSupplierInvite {
|
|
16016
|
+
supplierId: string;
|
|
16017
|
+
supplierName?: string | null;
|
|
16018
|
+
username: string;
|
|
16019
|
+
invitedName: string;
|
|
16020
|
+
deadline: Date;
|
|
16021
|
+
existingCompanyId?: string | null;
|
|
16022
|
+
constructor(data?: ICreateSupplierInvite);
|
|
16023
|
+
init(_data?: any): void;
|
|
16024
|
+
static fromJS(data: any): CreateSupplierInvite;
|
|
16025
|
+
toJSON(data?: any): any;
|
|
16026
|
+
}
|
|
16027
|
+
export interface ICreateSupplierInvite {
|
|
16028
|
+
supplierId: string;
|
|
16029
|
+
supplierName?: string | null;
|
|
16030
|
+
username: string;
|
|
16031
|
+
invitedName: string;
|
|
16032
|
+
deadline: Date;
|
|
16033
|
+
existingCompanyId?: string | null;
|
|
16034
|
+
}
|
|
16035
|
+
export declare class ExternalSupplierDto implements IExternalSupplierDto {
|
|
16036
|
+
id: string;
|
|
16037
|
+
name: string;
|
|
16038
|
+
companyId: string;
|
|
16039
|
+
active: boolean;
|
|
16040
|
+
constructor(data?: IExternalSupplierDto);
|
|
16041
|
+
init(_data?: any): void;
|
|
16042
|
+
static fromJS(data: any): ExternalSupplierDto;
|
|
16043
|
+
toJSON(data?: any): any;
|
|
16044
|
+
}
|
|
16045
|
+
export interface IExternalSupplierDto {
|
|
16046
|
+
id: string;
|
|
16047
|
+
name: string;
|
|
16048
|
+
companyId: string;
|
|
16049
|
+
active: boolean;
|
|
16050
|
+
}
|
|
16051
|
+
export declare class CreateSupplierMapping implements ICreateSupplierMapping {
|
|
16052
|
+
companyId: string;
|
|
16053
|
+
existingSupplierId: string;
|
|
16054
|
+
newSupplierId: string;
|
|
16055
|
+
constructor(data?: ICreateSupplierMapping);
|
|
16056
|
+
init(_data?: any): void;
|
|
16057
|
+
static fromJS(data: any): CreateSupplierMapping;
|
|
16058
|
+
toJSON(data?: any): any;
|
|
16059
|
+
}
|
|
16060
|
+
export interface ICreateSupplierMapping {
|
|
16061
|
+
companyId: string;
|
|
16062
|
+
existingSupplierId: string;
|
|
16063
|
+
newSupplierId: string;
|
|
16064
|
+
}
|
|
16110
16065
|
export declare class AmcCheckListDto implements IAmcCheckListDto {
|
|
16111
16066
|
results: AmcResultLiteDto[];
|
|
16112
16067
|
continuationToken?: string | null;
|
|
@@ -16127,11 +16082,11 @@ export declare class AmcResultLiteDto implements IAmcResultLiteDto {
|
|
|
16127
16082
|
project?: string | null;
|
|
16128
16083
|
workOrder?: string | null;
|
|
16129
16084
|
materialCertificateTypeId?: string | null;
|
|
16130
|
-
materialCertificateTypeVersion?: number | null;
|
|
16131
16085
|
materialCertificateTypeName?: string | null;
|
|
16086
|
+
materialCertificateTypeVersion?: number | null;
|
|
16132
16087
|
specificationId: string;
|
|
16133
|
-
specificationVersion: number;
|
|
16134
16088
|
specificationName: string;
|
|
16089
|
+
specificationVersion: number;
|
|
16135
16090
|
purchaseOrder?: string | null;
|
|
16136
16091
|
purchaseOrderLine?: string | null;
|
|
16137
16092
|
purchaseOrderItem?: string | null;
|
|
@@ -16156,11 +16111,11 @@ export interface IAmcResultLiteDto {
|
|
|
16156
16111
|
project?: string | null;
|
|
16157
16112
|
workOrder?: string | null;
|
|
16158
16113
|
materialCertificateTypeId?: string | null;
|
|
16159
|
-
materialCertificateTypeVersion?: number | null;
|
|
16160
16114
|
materialCertificateTypeName?: string | null;
|
|
16115
|
+
materialCertificateTypeVersion?: number | null;
|
|
16161
16116
|
specificationId: string;
|
|
16162
|
-
specificationVersion: number;
|
|
16163
16117
|
specificationName: string;
|
|
16118
|
+
specificationVersion: number;
|
|
16164
16119
|
purchaseOrder?: string | null;
|
|
16165
16120
|
purchaseOrderLine?: string | null;
|
|
16166
16121
|
purchaseOrderItem?: string | null;
|
|
@@ -16227,11 +16182,11 @@ export declare class AmcResultDto implements IAmcResultDto {
|
|
|
16227
16182
|
project?: string | null;
|
|
16228
16183
|
workOrder?: string | null;
|
|
16229
16184
|
materialCertificateTypeId?: string | null;
|
|
16230
|
-
materialCertificateTypeVersion?: number | null;
|
|
16231
16185
|
materialCertificateTypeName?: string | null;
|
|
16186
|
+
materialCertificateTypeVersion?: number | null;
|
|
16232
16187
|
specificationId: string;
|
|
16233
|
-
specificationVersion: number;
|
|
16234
16188
|
specificationName: string;
|
|
16189
|
+
specificationVersion: number;
|
|
16235
16190
|
purchaseOrder?: string | null;
|
|
16236
16191
|
purchaseOrderLine?: string | null;
|
|
16237
16192
|
purchaseOrderItem?: string | null;
|
|
@@ -16261,11 +16216,11 @@ export interface IAmcResultDto {
|
|
|
16261
16216
|
project?: string | null;
|
|
16262
16217
|
workOrder?: string | null;
|
|
16263
16218
|
materialCertificateTypeId?: string | null;
|
|
16264
|
-
materialCertificateTypeVersion?: number | null;
|
|
16265
16219
|
materialCertificateTypeName?: string | null;
|
|
16220
|
+
materialCertificateTypeVersion?: number | null;
|
|
16266
16221
|
specificationId: string;
|
|
16267
|
-
specificationVersion: number;
|
|
16268
16222
|
specificationName: string;
|
|
16223
|
+
specificationVersion: number;
|
|
16269
16224
|
purchaseOrder?: string | null;
|
|
16270
16225
|
purchaseOrderLine?: string | null;
|
|
16271
16226
|
purchaseOrderItem?: string | null;
|
|
@@ -16323,7 +16278,13 @@ export interface IAmcTypeManufacturerResultChecksDto {
|
|
|
16323
16278
|
}
|
|
16324
16279
|
export declare class AmcTypeResultLine implements IAmcTypeResultLine {
|
|
16325
16280
|
found?: boolean;
|
|
16326
|
-
|
|
16281
|
+
approved?: boolean | null;
|
|
16282
|
+
comment?: string | null;
|
|
16283
|
+
created: Date;
|
|
16284
|
+
createdBy: string;
|
|
16285
|
+
createdById: string;
|
|
16286
|
+
updatedBy?: string | null;
|
|
16287
|
+
updatedById?: string | null;
|
|
16327
16288
|
constructor(data?: IAmcTypeResultLine);
|
|
16328
16289
|
init(_data?: any): void;
|
|
16329
16290
|
static fromJS(data: any): AmcTypeResultLine;
|
|
@@ -16331,25 +16292,13 @@ export declare class AmcTypeResultLine implements IAmcTypeResultLine {
|
|
|
16331
16292
|
}
|
|
16332
16293
|
export interface IAmcTypeResultLine {
|
|
16333
16294
|
found?: boolean;
|
|
16334
|
-
|
|
16335
|
-
}
|
|
16336
|
-
export declare class AmcResultOverrideDto implements IAmcResultOverrideDto {
|
|
16337
|
-
approved: boolean;
|
|
16338
|
-
comment?: string | null;
|
|
16339
|
-
updated: Date;
|
|
16340
|
-
updatedBy: string;
|
|
16341
|
-
updatedById: string;
|
|
16342
|
-
constructor(data?: IAmcResultOverrideDto);
|
|
16343
|
-
init(_data?: any): void;
|
|
16344
|
-
static fromJS(data: any): AmcResultOverrideDto;
|
|
16345
|
-
toJSON(data?: any): any;
|
|
16346
|
-
}
|
|
16347
|
-
export interface IAmcResultOverrideDto {
|
|
16348
|
-
approved: boolean;
|
|
16295
|
+
approved?: boolean | null;
|
|
16349
16296
|
comment?: string | null;
|
|
16350
|
-
|
|
16351
|
-
|
|
16352
|
-
|
|
16297
|
+
created: Date;
|
|
16298
|
+
createdBy: string;
|
|
16299
|
+
createdById: string;
|
|
16300
|
+
updatedBy?: string | null;
|
|
16301
|
+
updatedById?: string | null;
|
|
16353
16302
|
}
|
|
16354
16303
|
export declare class AmcTypeSignatureResultChecksDto implements IAmcTypeSignatureResultChecksDto {
|
|
16355
16304
|
certifiedBy?: AmcTypeResultLine | null;
|
|
@@ -16526,7 +16475,14 @@ export declare class AmcSpecificationResultLineDto implements IAmcSpecificationR
|
|
|
16526
16475
|
specificationSymbol?: string | null;
|
|
16527
16476
|
readValue?: string | null;
|
|
16528
16477
|
status: AmcSpecificationResultLineStatusDto;
|
|
16529
|
-
|
|
16478
|
+
approved?: boolean | null;
|
|
16479
|
+
comment?: string | null;
|
|
16480
|
+
created: Date;
|
|
16481
|
+
createdBy: string;
|
|
16482
|
+
createdById: string;
|
|
16483
|
+
updated?: Date | null;
|
|
16484
|
+
updatedBy?: string | null;
|
|
16485
|
+
updatedById?: string | null;
|
|
16530
16486
|
constructor(data?: IAmcSpecificationResultLineDto);
|
|
16531
16487
|
init(_data?: any): void;
|
|
16532
16488
|
static fromJS(data: any): AmcSpecificationResultLineDto;
|
|
@@ -16539,7 +16495,14 @@ export interface IAmcSpecificationResultLineDto {
|
|
|
16539
16495
|
specificationSymbol?: string | null;
|
|
16540
16496
|
readValue?: string | null;
|
|
16541
16497
|
status: AmcSpecificationResultLineStatusDto;
|
|
16542
|
-
|
|
16498
|
+
approved?: boolean | null;
|
|
16499
|
+
comment?: string | null;
|
|
16500
|
+
created: Date;
|
|
16501
|
+
createdBy: string;
|
|
16502
|
+
createdById: string;
|
|
16503
|
+
updated?: Date | null;
|
|
16504
|
+
updatedBy?: string | null;
|
|
16505
|
+
updatedById?: string | null;
|
|
16543
16506
|
}
|
|
16544
16507
|
export type AmcSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok";
|
|
16545
16508
|
export declare class AmcMechanicalSpecificationResultDto implements IAmcMechanicalSpecificationResultDto {
|
|
@@ -17169,9 +17132,7 @@ export declare class AmcTypeLiteDto implements IAmcTypeLiteDto {
|
|
|
17169
17132
|
version: number;
|
|
17170
17133
|
name: string;
|
|
17171
17134
|
revision: string;
|
|
17172
|
-
status: AmcTypeStatusDto;
|
|
17173
17135
|
description?: string | null;
|
|
17174
|
-
isStandardCertificateType: boolean;
|
|
17175
17136
|
created: Date;
|
|
17176
17137
|
createdBy: string;
|
|
17177
17138
|
createdById: string;
|
|
@@ -17187,24 +17148,19 @@ export interface IAmcTypeLiteDto {
|
|
|
17187
17148
|
version: number;
|
|
17188
17149
|
name: string;
|
|
17189
17150
|
revision: string;
|
|
17190
|
-
status: AmcTypeStatusDto;
|
|
17191
17151
|
description?: string | null;
|
|
17192
|
-
isStandardCertificateType: boolean;
|
|
17193
17152
|
created: Date;
|
|
17194
17153
|
createdBy: string;
|
|
17195
17154
|
createdById: string;
|
|
17196
17155
|
updatedBy?: string | null;
|
|
17197
17156
|
updatedById?: string | null;
|
|
17198
17157
|
}
|
|
17199
|
-
export type AmcTypeStatusDto = "Draft" | "Released" | "Expired" | "Rejected";
|
|
17200
17158
|
export declare class AmcTypeDto implements IAmcTypeDto {
|
|
17201
17159
|
typeId: string;
|
|
17202
17160
|
version: number;
|
|
17203
17161
|
name: string;
|
|
17204
17162
|
revision: string;
|
|
17205
|
-
status: AmcTypeStatusDto;
|
|
17206
17163
|
description?: string | null;
|
|
17207
|
-
isStandardCertificateType: boolean;
|
|
17208
17164
|
created: Date;
|
|
17209
17165
|
createdBy: string;
|
|
17210
17166
|
createdById: string;
|
|
@@ -17221,9 +17177,7 @@ export interface IAmcTypeDto {
|
|
|
17221
17177
|
version: number;
|
|
17222
17178
|
name: string;
|
|
17223
17179
|
revision: string;
|
|
17224
|
-
status: AmcTypeStatusDto;
|
|
17225
17180
|
description?: string | null;
|
|
17226
|
-
isStandardCertificateType: boolean;
|
|
17227
17181
|
created: Date;
|
|
17228
17182
|
createdBy: string;
|
|
17229
17183
|
createdById: string;
|
|
@@ -17409,9 +17363,6 @@ export declare class CreateAmcTypeRequestDto implements ICreateAmcTypeRequestDto
|
|
|
17409
17363
|
name: string;
|
|
17410
17364
|
revision: string;
|
|
17411
17365
|
description?: string | null;
|
|
17412
|
-
createCopy: boolean;
|
|
17413
|
-
specificationId?: string | null;
|
|
17414
|
-
specificationVersion?: string | null;
|
|
17415
17366
|
constructor(data?: ICreateAmcTypeRequestDto);
|
|
17416
17367
|
init(_data?: any): void;
|
|
17417
17368
|
static fromJS(data: any): CreateAmcTypeRequestDto;
|
|
@@ -17421,14 +17372,10 @@ export interface ICreateAmcTypeRequestDto {
|
|
|
17421
17372
|
name: string;
|
|
17422
17373
|
revision: string;
|
|
17423
17374
|
description?: string | null;
|
|
17424
|
-
createCopy: boolean;
|
|
17425
|
-
specificationId?: string | null;
|
|
17426
|
-
specificationVersion?: string | null;
|
|
17427
17375
|
}
|
|
17428
17376
|
export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
17429
17377
|
typeId: string;
|
|
17430
17378
|
version: number;
|
|
17431
|
-
status: UpdateAmcTypeStatusDto;
|
|
17432
17379
|
description?: string | null;
|
|
17433
17380
|
checks: AmcTypeChecksDto;
|
|
17434
17381
|
constructor(data?: IUpdateAmcTypeDto);
|
|
@@ -17439,11 +17386,9 @@ export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
|
17439
17386
|
export interface IUpdateAmcTypeDto {
|
|
17440
17387
|
typeId: string;
|
|
17441
17388
|
version: number;
|
|
17442
|
-
status: UpdateAmcTypeStatusDto;
|
|
17443
17389
|
description?: string | null;
|
|
17444
17390
|
checks: AmcTypeChecksDto;
|
|
17445
17391
|
}
|
|
17446
|
-
export type UpdateAmcTypeStatusDto = "NotModified" | "Released" | "Obsolete";
|
|
17447
17392
|
export interface FileParameter {
|
|
17448
17393
|
data: any;
|
|
17449
17394
|
fileName: string;
|