@ignos/api-client 20260417.113.1-alpha → 20260421.115.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
|
@@ -3377,7 +3377,7 @@ export declare class ExternalClient extends AuthorizedApiBase implements IExtern
|
|
|
3377
3377
|
}
|
|
3378
3378
|
export interface ISuppliersClient {
|
|
3379
3379
|
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3380
|
-
createSupplierInvite(request:
|
|
3380
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3381
3381
|
deleteSupplierInvite(id: string): Promise<void>;
|
|
3382
3382
|
listSuppliers(): Promise<ExternalSupplierDto[]>;
|
|
3383
3383
|
deleteSupplier(id: string): Promise<void>;
|
|
@@ -3398,7 +3398,7 @@ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppl
|
|
|
3398
3398
|
});
|
|
3399
3399
|
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
3400
3400
|
protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
|
|
3401
|
-
createSupplierInvite(request:
|
|
3401
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
3402
3402
|
protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
|
|
3403
3403
|
deleteSupplierInvite(id: string): Promise<void>;
|
|
3404
3404
|
protected processDeleteSupplierInvite(response: Response): Promise<void>;
|
|
@@ -9409,12 +9409,13 @@ export interface TenantWithSupplierDto {
|
|
|
9409
9409
|
customerName: string;
|
|
9410
9410
|
supplierTenantEntraId: string;
|
|
9411
9411
|
}
|
|
9412
|
-
export interface
|
|
9412
|
+
export interface CreateSupplierInviteRequest {
|
|
9413
9413
|
supplierId: string;
|
|
9414
9414
|
supplierName?: string | null;
|
|
9415
9415
|
username: string;
|
|
9416
9416
|
invitedName: string;
|
|
9417
9417
|
deadline: Date;
|
|
9418
|
+
utcOffset?: number;
|
|
9418
9419
|
}
|
|
9419
9420
|
export interface ExternalSupplierDto {
|
|
9420
9421
|
id: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -29459,7 +29459,7 @@ export interface ISuppliersClient {
|
|
|
29459
29459
|
|
|
29460
29460
|
listSupplierInvites(): Promise<SupplierInviteDto[]>;
|
|
29461
29461
|
|
|
29462
|
-
createSupplierInvite(request:
|
|
29462
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto>;
|
|
29463
29463
|
|
|
29464
29464
|
deleteSupplierInvite(id: string): Promise<void>;
|
|
29465
29465
|
|
|
@@ -29523,7 +29523,7 @@ export class SuppliersClient extends AuthorizedApiBase implements ISuppliersClie
|
|
|
29523
29523
|
return Promise.resolve<SupplierInviteDto[]>(null as any);
|
|
29524
29524
|
}
|
|
29525
29525
|
|
|
29526
|
-
createSupplierInvite(request:
|
|
29526
|
+
createSupplierInvite(request: CreateSupplierInviteRequest): Promise<SupplierInviteDto> {
|
|
29527
29527
|
let url_ = this.baseUrl + "/suppliers/supplierinvites";
|
|
29528
29528
|
url_ = url_.replace(/[?&]$/, "");
|
|
29529
29529
|
|
|
@@ -36569,12 +36569,13 @@ export interface TenantWithSupplierDto {
|
|
|
36569
36569
|
supplierTenantEntraId: string;
|
|
36570
36570
|
}
|
|
36571
36571
|
|
|
36572
|
-
export interface
|
|
36572
|
+
export interface CreateSupplierInviteRequest {
|
|
36573
36573
|
supplierId: string;
|
|
36574
36574
|
supplierName?: string | null;
|
|
36575
36575
|
username: string;
|
|
36576
36576
|
invitedName: string;
|
|
36577
36577
|
deadline: Date;
|
|
36578
|
+
utcOffset?: number;
|
|
36578
36579
|
}
|
|
36579
36580
|
|
|
36580
36581
|
export interface ExternalSupplierDto {
|