forlogic-core 2.3.3 → 2.3.5

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.
Files changed (37) hide show
  1. package/dist/action-plans/index.d.ts +14 -103
  2. package/dist/action-plans/index.esm.js +1 -1
  3. package/dist/action-plans/index.js +1 -1
  4. package/dist/action-plans/types.d.ts +361 -551
  5. package/dist/assets/index.d.ts +31 -0
  6. package/dist/audit-trail/index.d.ts +8 -103
  7. package/dist/audit-trail/types.d.ts +173 -567
  8. package/dist/auth/services/TokenService.d.ts +1 -0
  9. package/dist/auth/services/userPhotoApi.d.ts +5 -0
  10. package/dist/auth/services/userProfileApi.d.ts +18 -0
  11. package/dist/auth/utils/authDebug.d.ts +18 -0
  12. package/dist/components/ui/combobox.d.ts +2 -1
  13. package/dist/exports/integrations.d.ts +2 -0
  14. package/dist/index.css +1 -1
  15. package/dist/index.css.map +1 -1
  16. package/dist/index.d.ts +1 -0
  17. package/dist/index.esm.js +1 -1
  18. package/dist/index.js +1 -1
  19. package/dist/leadership/index.d.ts +12 -103
  20. package/dist/leadership/types.d.ts +13 -593
  21. package/dist/places/index.d.ts +8 -104
  22. package/dist/places/types.d.ts +6 -599
  23. package/dist/qualiex/hooks/useQualiexReady.d.ts +15 -0
  24. package/dist/qualiex/services/qualiexApiService.d.ts +18 -0
  25. package/dist/sign/index.d.ts +8 -104
  26. package/dist/sign/index.esm.js +1 -1
  27. package/dist/sign/index.js +1 -1
  28. package/dist/sign/types.d.ts +46 -596
  29. package/dist/updates/components/UpdatesBar.d.ts +10 -0
  30. package/dist/updates/components/UpdatesDialog.d.ts +10 -0
  31. package/dist/updates/components/UserUpdatesViewer.d.ts +5 -0
  32. package/dist/updates/hooks/useUserUpdates.d.ts +5 -0
  33. package/dist/updates/index.d.ts +9 -0
  34. package/dist/updates/services/userUpdatesApi.d.ts +3 -0
  35. package/dist/updates/types.d.ts +24 -0
  36. package/dist/updates/utils/dismissedStore.d.ts +4 -0
  37. package/package.json +2 -2
@@ -0,0 +1,24 @@
1
+ export interface UserUpdateBarItem {
2
+ id: string;
3
+ title: string;
4
+ color: string;
5
+ text: string;
6
+ url: string;
7
+ description: string;
8
+ countLiked: number;
9
+ companySoftwares: string;
10
+ idOption: number;
11
+ }
12
+ export interface UserUpdateDialogItem {
13
+ id: string;
14
+ title: string;
15
+ color: string;
16
+ description: string;
17
+ softwares: string;
18
+ countLiked: number;
19
+ idOption: number;
20
+ urlVideo?: string | null;
21
+ videoUrl?: string | null;
22
+ url?: string | null;
23
+ }
24
+ export type UpdateTypeId = 1 | 2 | 3;
@@ -0,0 +1,4 @@
1
+ export declare function readSet(key: string): Set<string>;
2
+ export declare function writeSet(key: string, set: Set<string>): void;
3
+ export declare function barDismissedKey(alias?: string | null): string;
4
+ export declare function dialogSeenKey(alias?: string | null): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forlogic-core",
3
- "version": "2.3.3",
3
+ "version": "2.3.5",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -61,7 +61,7 @@
61
61
  "dev": "vite",
62
62
  "build": "vite build",
63
63
  "build:dev": "vite build --mode development",
64
- "build:lib": "npx tsx scripts/generate-ds-docs.ts & rollup -c",
64
+ "build:lib": "npx tsx scripts/generate-ds-docs.ts & tsc -p tsconfig.lib.json && rollup -c",
65
65
  "lint": "eslint .",
66
66
  "docs:check": "tsx scripts/check-docs.ts",
67
67
  "docs:check-all": "tsx scripts/check-docs.ts --all",