forlogic-core 2.4.13 → 2.4.14
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/dist/auth/services/TokenManager.d.ts +4 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types.d.ts +1 -0
- package/docs/sql/import/validate_occurrences_categories.sql +47 -21
- package/docs/sql/import/validate_risks.sql +24 -11
- package/docs/sql/import/validate_risks_groups.sql +34 -18
- package/package.json +1 -1
|
@@ -51,6 +51,10 @@ export declare const TokenManager: {
|
|
|
51
51
|
payload: import("./TokenService").JwtPayload;
|
|
52
52
|
};
|
|
53
53
|
getCompanyId: (alias?: string) => string | null;
|
|
54
|
+
/**
|
|
55
|
+
* Retorna o AppGroupId da associação (parts[5] do campo co* do Access Token).
|
|
56
|
+
*/
|
|
57
|
+
getAppGroupId: (alias?: string) => number | null;
|
|
54
58
|
/**
|
|
55
59
|
* Retorna o ID numérico da empresa (parts[1] do campo co*).
|
|
56
60
|
* Usado exclusivamente para nomear containers Azure Blob (ex: un4104).
|