ngx-sp-auth 3.0.2 → 3.0.4
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/fesm2022/ngx-sp-auth.mjs +33 -1
- package/fesm2022/ngx-sp-auth.mjs.map +1 -1
- package/lib/components/menu-lateral/model/ret-menu-item-structure.d.ts +7 -0
- package/lib/components/menu-lateral/model/ret-menu-lateral.d.ts +7 -0
- package/lib/components/menu-lateral/model/ret-menu-promise.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
package/fesm2022/ngx-sp-auth.mjs
CHANGED
|
@@ -3117,6 +3117,38 @@ class InfraUsuarioImg {
|
|
|
3117
3117
|
}
|
|
3118
3118
|
}
|
|
3119
3119
|
|
|
3120
|
+
class RetInfraUsuarioImg {
|
|
3121
|
+
constructor() {
|
|
3122
|
+
this.Error = false;
|
|
3123
|
+
this.ErrorMessage = "";
|
|
3124
|
+
this.InfraUsuarioImg = new InfraUsuarioImg();
|
|
3125
|
+
this.uncompressedFileSize = 0;
|
|
3126
|
+
this.compressedFileSize = 0;
|
|
3127
|
+
}
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
class RetMenuItemStructure {
|
|
3131
|
+
constructor() {
|
|
3132
|
+
this.Error = false;
|
|
3133
|
+
this.ErrorMessage = "";
|
|
3134
|
+
this.MenuItem = [];
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
|
|
3138
|
+
class RetMenuLateral {
|
|
3139
|
+
constructor() {
|
|
3140
|
+
this.Error = false;
|
|
3141
|
+
this.ErrorMessage = "";
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
class RetMenuPromise {
|
|
3146
|
+
constructor() {
|
|
3147
|
+
this.menuList = [];
|
|
3148
|
+
this.isAuthorized = false;
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
|
|
3120
3152
|
class RetNavSubMenu {
|
|
3121
3153
|
constructor() {
|
|
3122
3154
|
this.Error = false;
|
|
@@ -3364,5 +3396,5 @@ const AUTH_ROUTES = [
|
|
|
3364
3396
|
* Generated bundle index. Do not edit.
|
|
3365
3397
|
*/
|
|
3366
3398
|
|
|
3367
|
-
export { AUTH_ROUTES, AuthAplicInterceptor, AuthGuard, AuthInfraInterceptor, AuthModule, AuthService, AuthStorageService, DynamicMenuComponent, EnvironmentService, ExternaLoginlGuard, IMenu, InfraUsuarioImg, LibCustomLoginService, LibCustomMenuService, LibCustomStorageService, LibMenuConfigService, LoginComponent, LoginGuard, LoginOSComponent, LoginOSGuard, LoginProgress, MenuLateralComponent, MenuServicesService, NotifSubmenuComponent, NovaSenhaComponent, PrimaryDropdownComponent, RetNavSubMenu, RetSubmenuWithCards, SecondaryDropdownComponent, SelecaoEstabelecimentosModalComponent, SituacaoLogin };
|
|
3399
|
+
export { AUTH_ROUTES, AuthAplicInterceptor, AuthGuard, AuthInfraInterceptor, AuthModule, AuthService, AuthStorageService, DynamicMenuComponent, EnvironmentService, ExternaLoginlGuard, IMenu, InfraUsuarioImg, LibCustomLoginService, LibCustomMenuService, LibCustomStorageService, LibMenuConfigService, LoginComponent, LoginGuard, LoginOSComponent, LoginOSGuard, LoginProgress, MenuLateralComponent, MenuServicesService, NotifSubmenuComponent, NovaSenhaComponent, PrimaryDropdownComponent, RetInfraUsuarioImg, RetMenuItemStructure, RetMenuLateral, RetMenuPromise, RetNavSubMenu, RetSubmenuWithCards, SecondaryDropdownComponent, SelecaoEstabelecimentosModalComponent, SituacaoLogin };
|
|
3368
3400
|
//# sourceMappingURL=ngx-sp-auth.mjs.map
|