@ignos/api-client 20260415.106.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
|
@@ -3713,6 +3713,7 @@ export interface UserDetailsDto {
|
|
|
3713
3713
|
hasAccessToIgnos?: boolean;
|
|
3714
3714
|
isInvitedUser?: boolean;
|
|
3715
3715
|
isSupplier?: boolean;
|
|
3716
|
+
companyId?: string | null;
|
|
3716
3717
|
}
|
|
3717
3718
|
export interface UserDto {
|
|
3718
3719
|
id?: string | null;
|
|
@@ -9377,14 +9378,14 @@ export interface SupplierInviteDto {
|
|
|
9377
9378
|
customerName?: string | null;
|
|
9378
9379
|
userId: string;
|
|
9379
9380
|
userName?: string | null;
|
|
9380
|
-
companyId?: string | null;
|
|
9381
9381
|
deadline: Date;
|
|
9382
9382
|
acceptedTimestamp?: Date | null;
|
|
9383
9383
|
createdTime: Date;
|
|
9384
9384
|
createdBy: string;
|
|
9385
9385
|
}
|
|
9386
9386
|
export interface AcceptSupplierInvite {
|
|
9387
|
-
companyName?: string;
|
|
9387
|
+
companyName?: string | null;
|
|
9388
|
+
companyId?: string | null;
|
|
9388
9389
|
organizationNumber?: string;
|
|
9389
9390
|
threeLetterIsoCountry?: string;
|
|
9390
9391
|
}
|
|
@@ -9394,7 +9395,6 @@ export interface CreateSupplierInvite {
|
|
|
9394
9395
|
username: string;
|
|
9395
9396
|
invitedName: string;
|
|
9396
9397
|
deadline: Date;
|
|
9397
|
-
existingCompanyId?: string | null;
|
|
9398
9398
|
}
|
|
9399
9399
|
export interface ExternalSupplierDto {
|
|
9400
9400
|
id: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -29979,6 +29979,7 @@ export interface UserDetailsDto {
|
|
|
29979
29979
|
hasAccessToIgnos?: boolean;
|
|
29980
29980
|
isInvitedUser?: boolean;
|
|
29981
29981
|
isSupplier?: boolean;
|
|
29982
|
+
companyId?: string | null;
|
|
29982
29983
|
}
|
|
29983
29984
|
|
|
29984
29985
|
export interface UserDto {
|
|
@@ -36422,7 +36423,6 @@ export interface SupplierInviteDto {
|
|
|
36422
36423
|
customerName?: string | null;
|
|
36423
36424
|
userId: string;
|
|
36424
36425
|
userName?: string | null;
|
|
36425
|
-
companyId?: string | null;
|
|
36426
36426
|
deadline: Date;
|
|
36427
36427
|
acceptedTimestamp?: Date | null;
|
|
36428
36428
|
createdTime: Date;
|
|
@@ -36430,7 +36430,8 @@ export interface SupplierInviteDto {
|
|
|
36430
36430
|
}
|
|
36431
36431
|
|
|
36432
36432
|
export interface AcceptSupplierInvite {
|
|
36433
|
-
companyName?: string;
|
|
36433
|
+
companyName?: string | null;
|
|
36434
|
+
companyId?: string | null;
|
|
36434
36435
|
organizationNumber?: string;
|
|
36435
36436
|
threeLetterIsoCountry?: string;
|
|
36436
36437
|
}
|
|
@@ -36441,7 +36442,6 @@ export interface CreateSupplierInvite {
|
|
|
36441
36442
|
username: string;
|
|
36442
36443
|
invitedName: string;
|
|
36443
36444
|
deadline: Date;
|
|
36444
|
-
existingCompanyId?: string | null;
|
|
36445
36445
|
}
|
|
36446
36446
|
|
|
36447
36447
|
export interface ExternalSupplierDto {
|