@ignos/api-client 20260416.107.1-alpha → 20260416.108.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -9378,14 +9378,14 @@ export interface SupplierInviteDto {
|
|
|
9378
9378
|
customerName?: string | null;
|
|
9379
9379
|
userId: string;
|
|
9380
9380
|
userName?: string | null;
|
|
9381
|
-
companyId?: string | null;
|
|
9382
9381
|
deadline: Date;
|
|
9383
9382
|
acceptedTimestamp?: Date | null;
|
|
9384
9383
|
createdTime: Date;
|
|
9385
9384
|
createdBy: string;
|
|
9386
9385
|
}
|
|
9387
9386
|
export interface AcceptSupplierInvite {
|
|
9388
|
-
companyName?: string;
|
|
9387
|
+
companyName?: string | null;
|
|
9388
|
+
companyId?: string | null;
|
|
9389
9389
|
organizationNumber?: string;
|
|
9390
9390
|
threeLetterIsoCountry?: string;
|
|
9391
9391
|
}
|
|
@@ -9395,7 +9395,6 @@ export interface CreateSupplierInvite {
|
|
|
9395
9395
|
username: string;
|
|
9396
9396
|
invitedName: string;
|
|
9397
9397
|
deadline: Date;
|
|
9398
|
-
existingCompanyId?: string | null;
|
|
9399
9398
|
}
|
|
9400
9399
|
export interface ExternalSupplierDto {
|
|
9401
9400
|
id: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -36423,7 +36423,6 @@ export interface SupplierInviteDto {
|
|
|
36423
36423
|
customerName?: string | null;
|
|
36424
36424
|
userId: string;
|
|
36425
36425
|
userName?: string | null;
|
|
36426
|
-
companyId?: string | null;
|
|
36427
36426
|
deadline: Date;
|
|
36428
36427
|
acceptedTimestamp?: Date | null;
|
|
36429
36428
|
createdTime: Date;
|
|
@@ -36431,7 +36430,8 @@ export interface SupplierInviteDto {
|
|
|
36431
36430
|
}
|
|
36432
36431
|
|
|
36433
36432
|
export interface AcceptSupplierInvite {
|
|
36434
|
-
companyName?: string;
|
|
36433
|
+
companyName?: string | null;
|
|
36434
|
+
companyId?: string | null;
|
|
36435
36435
|
organizationNumber?: string;
|
|
36436
36436
|
threeLetterIsoCountry?: string;
|
|
36437
36437
|
}
|
|
@@ -36442,7 +36442,6 @@ export interface CreateSupplierInvite {
|
|
|
36442
36442
|
username: string;
|
|
36443
36443
|
invitedName: string;
|
|
36444
36444
|
deadline: Date;
|
|
36445
|
-
existingCompanyId?: string | null;
|
|
36446
36445
|
}
|
|
36447
36446
|
|
|
36448
36447
|
export interface ExternalSupplierDto {
|