@ignos/api-client 20260122.0.13840 → 20260122.0.13844-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 +229 -334
- package/lib/ignosportal-api.js +4567 -4949
- package/package.json +1 -1
- package/src/ignosportal-api.ts +14936 -15416
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,6 +3129,87 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3225
3129
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3226
3130
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3227
3131
|
}
|
|
3132
|
+
export interface IExternalAccessClient {
|
|
3133
|
+
listUsers(companyId: string | undefined): Promise<CompanyUserDto[]>;
|
|
3134
|
+
createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
|
|
3135
|
+
updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
|
|
3136
|
+
deleteCompanyUser(id: string, companyId: string | undefined): Promise<void>;
|
|
3137
|
+
listRoles(): Promise<ExternalRoleDto[]>;
|
|
3138
|
+
listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
|
|
3139
|
+
deleteCompanyCustomer(tenantId: string): Promise<void>;
|
|
3140
|
+
}
|
|
3141
|
+
export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
|
|
3142
|
+
private http;
|
|
3143
|
+
private baseUrl;
|
|
3144
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3145
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3146
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3147
|
+
});
|
|
3148
|
+
listUsers(companyId: string | 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 | 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 {
|
|
3167
|
+
private http;
|
|
3168
|
+
private baseUrl;
|
|
3169
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3170
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3171
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3172
|
+
});
|
|
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 {
|
|
3190
|
+
private http;
|
|
3191
|
+
private baseUrl;
|
|
3192
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
3193
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3194
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3195
|
+
});
|
|
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>;
|
|
3212
|
+
}
|
|
3228
3213
|
export declare class AzureRegionDto implements IAzureRegionDto {
|
|
3229
3214
|
displayName: string;
|
|
3230
3215
|
name: string;
|
|
@@ -8541,244 +8526,6 @@ export interface IDocumentGeneratorTypeDto {
|
|
|
8541
8526
|
key: string;
|
|
8542
8527
|
description: string;
|
|
8543
8528
|
}
|
|
8544
|
-
export declare class CompanyUserDto implements ICompanyUserDto {
|
|
8545
|
-
companyId?: string | null;
|
|
8546
|
-
username?: string | null;
|
|
8547
|
-
name?: string | null;
|
|
8548
|
-
roles?: string[] | null;
|
|
8549
|
-
constructor(data?: ICompanyUserDto);
|
|
8550
|
-
init(_data?: any): void;
|
|
8551
|
-
static fromJS(data: any): CompanyUserDto;
|
|
8552
|
-
toJSON(data?: any): any;
|
|
8553
|
-
}
|
|
8554
|
-
export interface ICompanyUserDto {
|
|
8555
|
-
companyId?: string | null;
|
|
8556
|
-
username?: string | null;
|
|
8557
|
-
name?: string | null;
|
|
8558
|
-
roles?: string[] | null;
|
|
8559
|
-
}
|
|
8560
|
-
export declare class CreateCompanyUserRequest implements ICreateCompanyUserRequest {
|
|
8561
|
-
username: string;
|
|
8562
|
-
name: string;
|
|
8563
|
-
roles: string[];
|
|
8564
|
-
companyId?: string | null;
|
|
8565
|
-
constructor(data?: ICreateCompanyUserRequest);
|
|
8566
|
-
init(_data?: any): void;
|
|
8567
|
-
static fromJS(data: any): CreateCompanyUserRequest;
|
|
8568
|
-
toJSON(data?: any): any;
|
|
8569
|
-
}
|
|
8570
|
-
export interface ICreateCompanyUserRequest {
|
|
8571
|
-
username: string;
|
|
8572
|
-
name: string;
|
|
8573
|
-
roles: string[];
|
|
8574
|
-
companyId?: string | null;
|
|
8575
|
-
}
|
|
8576
|
-
export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
|
|
8577
|
-
name: string;
|
|
8578
|
-
roles: string[];
|
|
8579
|
-
companyId?: string | null;
|
|
8580
|
-
constructor(data?: IUpdateCompanyUserRequest);
|
|
8581
|
-
init(_data?: any): void;
|
|
8582
|
-
static fromJS(data: any): UpdateCompanyUserRequest;
|
|
8583
|
-
toJSON(data?: any): any;
|
|
8584
|
-
}
|
|
8585
|
-
export interface IUpdateCompanyUserRequest {
|
|
8586
|
-
name: string;
|
|
8587
|
-
roles: string[];
|
|
8588
|
-
companyId?: string | null;
|
|
8589
|
-
}
|
|
8590
|
-
export declare class ExternalRoleDto implements IExternalRoleDto {
|
|
8591
|
-
id: string;
|
|
8592
|
-
name: string;
|
|
8593
|
-
constructor(data?: IExternalRoleDto);
|
|
8594
|
-
init(_data?: any): void;
|
|
8595
|
-
static fromJS(data: any): ExternalRoleDto;
|
|
8596
|
-
toJSON(data?: any): any;
|
|
8597
|
-
}
|
|
8598
|
-
export interface IExternalRoleDto {
|
|
8599
|
-
id: string;
|
|
8600
|
-
name: string;
|
|
8601
|
-
}
|
|
8602
|
-
export declare class CompanyCustomerDto implements ICompanyCustomerDto {
|
|
8603
|
-
customerTenantId?: string | null;
|
|
8604
|
-
customerAzureAdTenantId?: string | null;
|
|
8605
|
-
customerName?: string | null;
|
|
8606
|
-
supplierId?: string | null;
|
|
8607
|
-
supplierName?: string | null;
|
|
8608
|
-
constructor(data?: ICompanyCustomerDto);
|
|
8609
|
-
init(_data?: any): void;
|
|
8610
|
-
static fromJS(data: any): CompanyCustomerDto;
|
|
8611
|
-
toJSON(data?: any): any;
|
|
8612
|
-
}
|
|
8613
|
-
export interface ICompanyCustomerDto {
|
|
8614
|
-
customerTenantId?: string | null;
|
|
8615
|
-
customerAzureAdTenantId?: string | null;
|
|
8616
|
-
customerName?: string | null;
|
|
8617
|
-
supplierId?: string | null;
|
|
8618
|
-
supplierName?: string | null;
|
|
8619
|
-
}
|
|
8620
|
-
export declare class InviteDto implements IInviteDto {
|
|
8621
|
-
tenantId: string;
|
|
8622
|
-
companyName: string;
|
|
8623
|
-
id: string;
|
|
8624
|
-
supplierId: string;
|
|
8625
|
-
supplierName: string;
|
|
8626
|
-
username: string;
|
|
8627
|
-
deadline: Date;
|
|
8628
|
-
createdTime: Date;
|
|
8629
|
-
createdBy: string;
|
|
8630
|
-
constructor(data?: IInviteDto);
|
|
8631
|
-
init(_data?: any): void;
|
|
8632
|
-
static fromJS(data: any): InviteDto;
|
|
8633
|
-
toJSON(data?: any): any;
|
|
8634
|
-
}
|
|
8635
|
-
export interface IInviteDto {
|
|
8636
|
-
tenantId: string;
|
|
8637
|
-
companyName: string;
|
|
8638
|
-
id: string;
|
|
8639
|
-
supplierId: string;
|
|
8640
|
-
supplierName: string;
|
|
8641
|
-
username: string;
|
|
8642
|
-
deadline: Date;
|
|
8643
|
-
createdTime: Date;
|
|
8644
|
-
createdBy: string;
|
|
8645
|
-
}
|
|
8646
|
-
export declare class CompanyDto implements ICompanyDto {
|
|
8647
|
-
id?: string | null;
|
|
8648
|
-
name?: string | null;
|
|
8649
|
-
organizationNumber?: string | null;
|
|
8650
|
-
country?: string | null;
|
|
8651
|
-
tenantId?: string | null;
|
|
8652
|
-
constructor(data?: ICompanyDto);
|
|
8653
|
-
init(_data?: any): void;
|
|
8654
|
-
static fromJS(data: any): CompanyDto;
|
|
8655
|
-
toJSON(data?: any): any;
|
|
8656
|
-
}
|
|
8657
|
-
export interface ICompanyDto {
|
|
8658
|
-
id?: string | null;
|
|
8659
|
-
name?: string | null;
|
|
8660
|
-
organizationNumber?: string | null;
|
|
8661
|
-
country?: string | null;
|
|
8662
|
-
tenantId?: string | null;
|
|
8663
|
-
}
|
|
8664
|
-
export declare class AcceptSupplierInviteRequest implements IAcceptSupplierInviteRequest {
|
|
8665
|
-
tenantId: string;
|
|
8666
|
-
existingCompanyId?: string | null;
|
|
8667
|
-
companyName?: string | null;
|
|
8668
|
-
organizationNumber?: string | null;
|
|
8669
|
-
threeLetterIsoCountry?: string | null;
|
|
8670
|
-
constructor(data?: IAcceptSupplierInviteRequest);
|
|
8671
|
-
init(_data?: any): void;
|
|
8672
|
-
static fromJS(data: any): AcceptSupplierInviteRequest;
|
|
8673
|
-
toJSON(data?: any): any;
|
|
8674
|
-
}
|
|
8675
|
-
export interface IAcceptSupplierInviteRequest {
|
|
8676
|
-
tenantId: string;
|
|
8677
|
-
existingCompanyId?: string | null;
|
|
8678
|
-
companyName?: string | null;
|
|
8679
|
-
organizationNumber?: string | null;
|
|
8680
|
-
threeLetterIsoCountry?: string | null;
|
|
8681
|
-
}
|
|
8682
|
-
export declare class SupplierInviteDto implements ISupplierInviteDto {
|
|
8683
|
-
id: string;
|
|
8684
|
-
supplierId: string;
|
|
8685
|
-
name: string;
|
|
8686
|
-
username: string;
|
|
8687
|
-
deadline: Date;
|
|
8688
|
-
createdTime: Date;
|
|
8689
|
-
createdBy: string;
|
|
8690
|
-
constructor(data?: ISupplierInviteDto);
|
|
8691
|
-
init(_data?: any): void;
|
|
8692
|
-
static fromJS(data: any): SupplierInviteDto;
|
|
8693
|
-
toJSON(data?: any): any;
|
|
8694
|
-
}
|
|
8695
|
-
export interface ISupplierInviteDto {
|
|
8696
|
-
id: string;
|
|
8697
|
-
supplierId: string;
|
|
8698
|
-
name: string;
|
|
8699
|
-
username: string;
|
|
8700
|
-
deadline: Date;
|
|
8701
|
-
createdTime: Date;
|
|
8702
|
-
createdBy: string;
|
|
8703
|
-
}
|
|
8704
|
-
export declare class CreateSupplierInvite implements ICreateSupplierInvite {
|
|
8705
|
-
supplierId: string;
|
|
8706
|
-
name: string;
|
|
8707
|
-
username: string;
|
|
8708
|
-
deadline: Date;
|
|
8709
|
-
constructor(data?: ICreateSupplierInvite);
|
|
8710
|
-
init(_data?: any): void;
|
|
8711
|
-
static fromJS(data: any): CreateSupplierInvite;
|
|
8712
|
-
toJSON(data?: any): any;
|
|
8713
|
-
}
|
|
8714
|
-
export interface ICreateSupplierInvite {
|
|
8715
|
-
supplierId: string;
|
|
8716
|
-
name: string;
|
|
8717
|
-
username: string;
|
|
8718
|
-
deadline: Date;
|
|
8719
|
-
}
|
|
8720
|
-
export declare class ExternalSupplierDto implements IExternalSupplierDto {
|
|
8721
|
-
id: string;
|
|
8722
|
-
name: string;
|
|
8723
|
-
companyId: string;
|
|
8724
|
-
active: boolean;
|
|
8725
|
-
constructor(data?: IExternalSupplierDto);
|
|
8726
|
-
init(_data?: any): void;
|
|
8727
|
-
static fromJS(data: any): ExternalSupplierDto;
|
|
8728
|
-
toJSON(data?: any): any;
|
|
8729
|
-
}
|
|
8730
|
-
export interface IExternalSupplierDto {
|
|
8731
|
-
id: string;
|
|
8732
|
-
name: string;
|
|
8733
|
-
companyId: string;
|
|
8734
|
-
active: boolean;
|
|
8735
|
-
}
|
|
8736
|
-
export declare class ImportSupplier implements IImportSupplier {
|
|
8737
|
-
supplierId: string;
|
|
8738
|
-
name: string;
|
|
8739
|
-
organizationNumber?: string | null;
|
|
8740
|
-
threeLetterIsoCountry: string;
|
|
8741
|
-
users: ImportSupplierUserDto[];
|
|
8742
|
-
constructor(data?: IImportSupplier);
|
|
8743
|
-
init(_data?: any): void;
|
|
8744
|
-
static fromJS(data: any): ImportSupplier;
|
|
8745
|
-
toJSON(data?: any): any;
|
|
8746
|
-
}
|
|
8747
|
-
export interface IImportSupplier {
|
|
8748
|
-
supplierId: string;
|
|
8749
|
-
name: string;
|
|
8750
|
-
organizationNumber?: string | null;
|
|
8751
|
-
threeLetterIsoCountry: string;
|
|
8752
|
-
users: ImportSupplierUserDto[];
|
|
8753
|
-
}
|
|
8754
|
-
export declare class ImportSupplierUserDto implements IImportSupplierUserDto {
|
|
8755
|
-
username: string;
|
|
8756
|
-
name: string;
|
|
8757
|
-
roles: string[];
|
|
8758
|
-
constructor(data?: IImportSupplierUserDto);
|
|
8759
|
-
init(_data?: any): void;
|
|
8760
|
-
static fromJS(data: any): ImportSupplierUserDto;
|
|
8761
|
-
toJSON(data?: any): any;
|
|
8762
|
-
}
|
|
8763
|
-
export interface IImportSupplierUserDto {
|
|
8764
|
-
username: string;
|
|
8765
|
-
name: string;
|
|
8766
|
-
roles: string[];
|
|
8767
|
-
}
|
|
8768
|
-
export declare class CreateSupplierMapping implements ICreateSupplierMapping {
|
|
8769
|
-
companyId: string;
|
|
8770
|
-
existingSupplierId: string;
|
|
8771
|
-
newSupplierId: string;
|
|
8772
|
-
constructor(data?: ICreateSupplierMapping);
|
|
8773
|
-
init(_data?: any): void;
|
|
8774
|
-
static fromJS(data: any): CreateSupplierMapping;
|
|
8775
|
-
toJSON(data?: any): any;
|
|
8776
|
-
}
|
|
8777
|
-
export interface ICreateSupplierMapping {
|
|
8778
|
-
companyId: string;
|
|
8779
|
-
existingSupplierId: string;
|
|
8780
|
-
newSupplierId: string;
|
|
8781
|
-
}
|
|
8782
8529
|
export declare class CncMachineTransferDto implements ICncMachineTransferDto {
|
|
8783
8530
|
id: string;
|
|
8784
8531
|
cncMachineOperationId?: string | null;
|
|
@@ -16033,6 +15780,154 @@ export interface ISetDiscussionLastReadRequest {
|
|
|
16033
15780
|
operationId?: string | null;
|
|
16034
15781
|
resourceId?: string | null;
|
|
16035
15782
|
}
|
|
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);
|
|
15790
|
+
init(_data?: any): void;
|
|
15791
|
+
static fromJS(data: any): CompanyUserDto;
|
|
15792
|
+
toJSON(data?: any): any;
|
|
15793
|
+
}
|
|
15794
|
+
export interface ICompanyUserDto {
|
|
15795
|
+
companyId: string;
|
|
15796
|
+
userObjectId: string;
|
|
15797
|
+
username?: string | null;
|
|
15798
|
+
name?: string | null;
|
|
15799
|
+
roles: string[];
|
|
15800
|
+
}
|
|
15801
|
+
export declare class CreateCompanyUser implements ICreateCompanyUser {
|
|
15802
|
+
username: string;
|
|
15803
|
+
name: string;
|
|
15804
|
+
roles: string[];
|
|
15805
|
+
companyId: string;
|
|
15806
|
+
constructor(data?: ICreateCompanyUser);
|
|
15807
|
+
init(_data?: any): void;
|
|
15808
|
+
static fromJS(data: any): CreateCompanyUser;
|
|
15809
|
+
toJSON(data?: any): any;
|
|
15810
|
+
}
|
|
15811
|
+
export interface ICreateCompanyUser {
|
|
15812
|
+
username: string;
|
|
15813
|
+
name: string;
|
|
15814
|
+
roles: string[];
|
|
15815
|
+
companyId: string;
|
|
15816
|
+
}
|
|
15817
|
+
export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
|
|
15818
|
+
roles: string[];
|
|
15819
|
+
companyId: string;
|
|
15820
|
+
constructor(data?: IUpdateCompanyUserRequest);
|
|
15821
|
+
init(_data?: any): void;
|
|
15822
|
+
static fromJS(data: any): UpdateCompanyUserRequest;
|
|
15823
|
+
toJSON(data?: any): any;
|
|
15824
|
+
}
|
|
15825
|
+
export interface IUpdateCompanyUserRequest {
|
|
15826
|
+
roles: string[];
|
|
15827
|
+
companyId: string;
|
|
15828
|
+
}
|
|
15829
|
+
export declare class ExternalRoleDto implements IExternalRoleDto {
|
|
15830
|
+
id: string;
|
|
15831
|
+
name: string;
|
|
15832
|
+
constructor(data?: IExternalRoleDto);
|
|
15833
|
+
init(_data?: any): void;
|
|
15834
|
+
static fromJS(data: any): ExternalRoleDto;
|
|
15835
|
+
toJSON(data?: any): any;
|
|
15836
|
+
}
|
|
15837
|
+
export interface IExternalRoleDto {
|
|
15838
|
+
id: string;
|
|
15839
|
+
name: string;
|
|
15840
|
+
}
|
|
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);
|
|
15848
|
+
init(_data?: any): void;
|
|
15849
|
+
static fromJS(data: any): CompanyCustomerDto;
|
|
15850
|
+
toJSON(data?: any): any;
|
|
15851
|
+
}
|
|
15852
|
+
export interface ICompanyCustomerDto {
|
|
15853
|
+
customerTenantId?: string | null;
|
|
15854
|
+
customerAzureAdTenantId?: string | null;
|
|
15855
|
+
customerName?: string | null;
|
|
15856
|
+
supplierId?: string | null;
|
|
15857
|
+
supplierName?: string | null;
|
|
15858
|
+
}
|
|
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);
|
|
15866
|
+
init(_data?: any): void;
|
|
15867
|
+
static fromJS(data: any): CompanyDto;
|
|
15868
|
+
toJSON(data?: any): any;
|
|
15869
|
+
}
|
|
15870
|
+
export interface ICompanyDto {
|
|
15871
|
+
id?: string;
|
|
15872
|
+
name?: string;
|
|
15873
|
+
organizationNumber?: string | null;
|
|
15874
|
+
country?: string;
|
|
15875
|
+
tenantId?: string | null;
|
|
15876
|
+
}
|
|
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);
|
|
15887
|
+
init(_data?: any): void;
|
|
15888
|
+
static fromJS(data: any): InviteSuppliers;
|
|
15889
|
+
toJSON(data?: any): any;
|
|
15890
|
+
}
|
|
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;
|
|
15903
|
+
name: string;
|
|
15904
|
+
companyId: string;
|
|
15905
|
+
active: boolean;
|
|
15906
|
+
constructor(data?: IExternalSupplierDto);
|
|
15907
|
+
init(_data?: any): void;
|
|
15908
|
+
static fromJS(data: any): ExternalSupplierDto;
|
|
15909
|
+
toJSON(data?: any): any;
|
|
15910
|
+
}
|
|
15911
|
+
export interface IExternalSupplierDto {
|
|
15912
|
+
id: string;
|
|
15913
|
+
name: string;
|
|
15914
|
+
companyId: string;
|
|
15915
|
+
active: boolean;
|
|
15916
|
+
}
|
|
15917
|
+
export declare class CreateSupplierMapping implements ICreateSupplierMapping {
|
|
15918
|
+
companyId: string;
|
|
15919
|
+
existingSupplierId: string;
|
|
15920
|
+
newSupplierId: string;
|
|
15921
|
+
constructor(data?: ICreateSupplierMapping);
|
|
15922
|
+
init(_data?: any): void;
|
|
15923
|
+
static fromJS(data: any): CreateSupplierMapping;
|
|
15924
|
+
toJSON(data?: any): any;
|
|
15925
|
+
}
|
|
15926
|
+
export interface ICreateSupplierMapping {
|
|
15927
|
+
companyId: string;
|
|
15928
|
+
existingSupplierId: string;
|
|
15929
|
+
newSupplierId: string;
|
|
15930
|
+
}
|
|
16036
15931
|
export interface FileParameter {
|
|
16037
15932
|
data: any;
|
|
16038
15933
|
fileName: string;
|