@ignos/api-client 20260702.166.1-alpha → 20260706.168.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
|
@@ -9770,8 +9770,9 @@ export interface CompanyDto {
|
|
|
9770
9770
|
export interface SupplierInviteDto {
|
|
9771
9771
|
id: string;
|
|
9772
9772
|
supplierId: string;
|
|
9773
|
+
threeLetterIsoCountry: string;
|
|
9774
|
+
organizationNumber: string;
|
|
9773
9775
|
supplierName?: string | null;
|
|
9774
|
-
customerName?: string | null;
|
|
9775
9776
|
userId: string;
|
|
9776
9777
|
userName?: string | null;
|
|
9777
9778
|
acceptedTimestamp?: Date | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -38146,8 +38146,9 @@ export interface CompanyDto {
|
|
|
38146
38146
|
export interface SupplierInviteDto {
|
|
38147
38147
|
id: string;
|
|
38148
38148
|
supplierId: string;
|
|
38149
|
+
threeLetterIsoCountry: string;
|
|
38150
|
+
organizationNumber: string;
|
|
38149
38151
|
supplierName?: string | null;
|
|
38150
|
-
customerName?: string | null;
|
|
38151
38152
|
userId: string;
|
|
38152
38153
|
userName?: string | null;
|
|
38153
38154
|
acceptedTimestamp?: Date | null;
|