@datapos/datapos-shared 0.3.62 → 0.3.65
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.
|
@@ -5,8 +5,8 @@ export interface ComponentConfig {
|
|
|
5
5
|
id: string;
|
|
6
6
|
label: Record<string, string>;
|
|
7
7
|
lastUpdatedAt?: Timestamp;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
icon?: string;
|
|
9
|
+
iconDark?: string;
|
|
10
10
|
status?: ComponentStatus;
|
|
11
11
|
statusId: ComponentStatusId;
|
|
12
12
|
typeId: ComponentTypeId;
|
|
@@ -23,7 +23,7 @@ export type { ConnectorInterfaceResult, ContextInterfaceResult, Engine, EngineWo
|
|
|
23
23
|
export { APIError, ApplicationError, EngineError, FetchError, OperationalError, VueError, WindowRuntimeError, WindowPromiseRejectionError } from './errors';
|
|
24
24
|
export type { SerialisedError } from './errors';
|
|
25
25
|
export type { EventQueryConfig, EventQueryLocalisedConfig } from './eventQuery';
|
|
26
|
-
export type { Presenter, PresenterConfig, PresenterLocalisedConfig } from './presenter';
|
|
26
|
+
export type { Presenter, PresenterConfig, PresenterItemConfig, PresenterLocalisedConfig } from './presenter';
|
|
27
27
|
export type { Recipe, RecipeConfig, RecipeLocalisedConfig } from './recipe';
|
|
28
28
|
export type { ServiceData } from './service';
|
|
29
29
|
export type { StateConfig } from './state';
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.65",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
@@ -16,31 +16,31 @@
|
|
|
16
16
|
},
|
|
17
17
|
"types": "./dist/types/src/index.d.ts",
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@datapos/datapos-development": "^0.3.
|
|
20
|
-
"@types/node": "^24.
|
|
21
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
22
|
-
"@typescript-eslint/parser": "^8.
|
|
19
|
+
"@datapos/datapos-development": "^0.3.29",
|
|
20
|
+
"@types/node": "^24.9.1",
|
|
21
|
+
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
22
|
+
"@typescript-eslint/parser": "^8.46.2",
|
|
23
23
|
"csv-parse": "^6.1.0",
|
|
24
|
-
"eslint": "^9.
|
|
24
|
+
"eslint": "^9.38.0",
|
|
25
25
|
"eslint-plugin-import": "^2.32.0",
|
|
26
|
-
"jiti": "^2.
|
|
27
|
-
"license-report": "^6.8.
|
|
26
|
+
"jiti": "^2.6.1",
|
|
27
|
+
"license-report": "^6.8.1",
|
|
28
28
|
"license-report-check": "^0.1.2",
|
|
29
|
-
"npm-check-updates": "^
|
|
29
|
+
"npm-check-updates": "^19.1.1",
|
|
30
30
|
"prettier": "^3.6.2",
|
|
31
31
|
"retire": "^5.3.0",
|
|
32
|
-
"typescript": "^5.9.
|
|
33
|
-
"vite": "^7.1.
|
|
32
|
+
"typescript": "^5.9.3",
|
|
33
|
+
"vite": "^7.1.12",
|
|
34
34
|
"vite-plugin-dts": "^4.5.4"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"audit": "npm audit",
|
|
38
|
-
"build": "
|
|
38
|
+
"build": "vite build",
|
|
39
39
|
"bumpVersion": "node -e \"import('@datapos/datapos-development').then(m => m.bumpVersion())\"",
|
|
40
40
|
"check": "npm outdated; npm-check-updates -i && retire",
|
|
41
41
|
"document": "license-report --only=prod,peer > LICENSES.json && license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",
|
|
42
|
-
"format": "
|
|
43
|
-
"lint": "
|
|
42
|
+
"format": "prettier --write *.ts",
|
|
43
|
+
"lint": "eslint src/**/*.ts",
|
|
44
44
|
"publishToNPM": "npm publish --access public",
|
|
45
45
|
"release": "npm run syncWithGitHub && npm run build && npm run publishToNPM",
|
|
46
46
|
"syncWithGitHub": "npm run bumpVersion && node -e \"require('@datapos/datapos-development').syncWithGitHub()\"",
|