forlogic-core 2.3.3 → 2.3.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.
@@ -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.4",
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",