@elite.framework/ng.core 2.0.32 → 2.0.34
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/models/index.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ interface PaginatedResult<T> {
|
|
|
217
217
|
declare namespace Rest {
|
|
218
218
|
type Config = Partial<{
|
|
219
219
|
apiName: string;
|
|
220
|
+
moduleName: string;
|
|
220
221
|
skipHandleError: boolean;
|
|
221
222
|
skipAddingHeader: boolean;
|
|
222
223
|
observe: Observe;
|
|
@@ -569,6 +570,9 @@ declare class AuthErrorEvent extends AuthEvent {
|
|
|
569
570
|
interface LoginParams {
|
|
570
571
|
username: string;
|
|
571
572
|
password: string;
|
|
573
|
+
companyId: string;
|
|
574
|
+
branchId: string;
|
|
575
|
+
branchYearId: string;
|
|
572
576
|
rememberMe?: boolean;
|
|
573
577
|
redirectUrl?: string;
|
|
574
578
|
}
|