forlogic-core 1.16.2 → 1.16.3
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/.note/memory/features/import/attachment-idempotency-registry.md +8 -0
- package/.note/memory/features/import/attachment-strategy.md +23 -11
- package/dist/hooks/useModuleAccess.d.ts +3 -4
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/softwaresMap.d.ts +4 -0
- package/dist/types.d.ts +0 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -526,8 +526,6 @@ export interface ModuleAccessResult {
|
|
|
526
526
|
association: UserAssociation | null;
|
|
527
527
|
/** Função para verificar acesso a outro(s) módulo(s) */
|
|
528
528
|
hasAccessTo: (alias: string | string[]) => boolean;
|
|
529
|
-
/** Lista completa de softwares/módulos disponíveis na plataforma */
|
|
530
|
-
softwares: Software[];
|
|
531
529
|
}
|
|
532
530
|
export interface ApiResponse<T = unknown> {
|
|
533
531
|
data: T;
|