@stacksjs/types 0.56.3 → 0.56.21
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/app.mjs +0 -0
- package/dist/auto-imports.mjs +0 -0
- package/dist/build.mjs +0 -0
- package/dist/cache.mjs +0 -0
- package/dist/cdn.mjs +0 -0
- package/dist/cli.mjs +88 -0
- package/dist/components.mjs +0 -0
- package/dist/cron-jobs.mjs +12 -0
- package/dist/database.mjs +0 -0
- package/dist/debug.mjs +0 -0
- package/dist/deploy.mjs +0 -0
- package/dist/dns.mjs +0 -0
- package/dist/docs.mjs +0 -0
- package/dist/errors.mjs +12 -0
- package/dist/events.mjs +0 -0
- package/dist/exit-code.mjs +6 -0
- package/dist/fs.mjs +0 -0
- package/dist/git.mjs +0 -0
- package/dist/hashing.mjs +0 -0
- package/dist/i18n.mjs +0 -0
- package/dist/index.mjs +40 -112
- package/dist/inspect.mjs +0 -0
- package/dist/layout.mjs +0 -0
- package/dist/library.mjs +0 -0
- package/dist/manifest.mjs +0 -0
- package/dist/model.mjs +0 -0
- package/dist/money.mjs +0 -0
- package/dist/notifications.mjs +0 -0
- package/dist/pages.mjs +0 -0
- package/dist/payments.mjs +0 -0
- package/dist/promise.mjs +0 -0
- package/dist/pwa.mjs +0 -0
- package/dist/queue.mjs +0 -0
- package/dist/reactivity.mjs +0 -0
- package/dist/router.mjs +0 -0
- package/dist/search-engine.mjs +0 -0
- package/dist/ssg.mjs +0 -0
- package/dist/stacks.mjs +0 -0
- package/dist/tables.mjs +0 -0
- package/dist/ui.mjs +0 -0
- package/dist/utils.mjs +0 -0
- package/package.json +6 -5
- package/dist/index.d.ts +0 -2111
package/dist/app.mjs
ADDED
|
File without changes
|
|
File without changes
|
package/dist/build.mjs
ADDED
|
File without changes
|
package/dist/cache.mjs
ADDED
|
File without changes
|
package/dist/cdn.mjs
ADDED
|
File without changes
|
package/dist/cli.mjs
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
export var NpmScript = /* @__PURE__ */ ((NpmScript2) => {
|
|
2
|
+
NpmScript2["Build"] = "build";
|
|
3
|
+
NpmScript2["BuildComponents"] = "vite build --config ./core/build/src/vue-components.ts";
|
|
4
|
+
NpmScript2["BuildWebComponents"] = "build:web-components";
|
|
5
|
+
NpmScript2["BuildFunctions"] = "build:functions";
|
|
6
|
+
NpmScript2["BuildDocs"] = "build:docs";
|
|
7
|
+
NpmScript2["BuildStacks"] = "build:stacks";
|
|
8
|
+
NpmScript2["Clean"] = "rimraf pnpm-lock.yaml node_modules/ .stacks/**/node_modules .stacks/**/dist";
|
|
9
|
+
NpmScript2["Dev"] = "dev";
|
|
10
|
+
NpmScript2["DevComponents"] = "vite --config ./core/build/src/vue-components.ts";
|
|
11
|
+
NpmScript2["DevDocs"] = "npx vitepress dev ./docs/src";
|
|
12
|
+
NpmScript2["DevDesktop"] = "dev:desktop";
|
|
13
|
+
NpmScript2["DevPages"] = "dev:pages";
|
|
14
|
+
NpmScript2["DevFunctions"] = "dev:functions";
|
|
15
|
+
NpmScript2["Fresh"] = "fresh";
|
|
16
|
+
NpmScript2["Lint"] = "eslint .";
|
|
17
|
+
NpmScript2["LintFix"] = "eslint . --fix";
|
|
18
|
+
NpmScript2["LintPackageJson"] = "npx publint";
|
|
19
|
+
NpmScript2["MakeStack"] = "make:stack";
|
|
20
|
+
NpmScript2["Test"] = "vitest --config vitest.config.ts";
|
|
21
|
+
NpmScript2["TestUnit"] = "vitest --config vitest.config.ts";
|
|
22
|
+
NpmScript2["TestFeature"] = "playwright test --config playwright.config.ts";
|
|
23
|
+
NpmScript2["TestUi"] = "vitest --config vitest.config.ts --ui";
|
|
24
|
+
NpmScript2["TestCoverage"] = "vitest --config vitest.config.ts --coverage";
|
|
25
|
+
NpmScript2["TestTypes"] = "vue-npx tsc --noEmit";
|
|
26
|
+
NpmScript2["Generate"] = "generate";
|
|
27
|
+
NpmScript2["GenerateTypes"] = "generate:types";
|
|
28
|
+
NpmScript2["GenerateEntries"] = "generate:entries";
|
|
29
|
+
NpmScript2["GenerateVueCompat"] = "generate:vue-compatibility";
|
|
30
|
+
NpmScript2["GenerateWebTypes"] = "generate:web-types";
|
|
31
|
+
NpmScript2["GenerateVsCodeCustomData"] = "generate:vscode-custom-data";
|
|
32
|
+
NpmScript2["GenerateIdeHelpers"] = "generate:ide-helpers";
|
|
33
|
+
NpmScript2["GenerateComponentMeta"] = "generate:component-meta";
|
|
34
|
+
NpmScript2["Release"] = "release";
|
|
35
|
+
NpmScript2["Commit"] = "commit";
|
|
36
|
+
NpmScript2["Example"] = "example";
|
|
37
|
+
NpmScript2["ExampleVue"] = "example:vue";
|
|
38
|
+
NpmScript2["ExampleWebComponents"] = "example:web-components";
|
|
39
|
+
NpmScript2["KeyGenerate"] = "key:generate";
|
|
40
|
+
NpmScript2["TypesFix"] = "types:fix";
|
|
41
|
+
NpmScript2["TypesGenerate"] = "types:generate";
|
|
42
|
+
NpmScript2["Preinstall"] = "preinstall";
|
|
43
|
+
NpmScript2["Prepublish"] = "prepublish";
|
|
44
|
+
NpmScript2["Wip"] = "wip";
|
|
45
|
+
NpmScript2["UpgradeNode"] = "./.stacks/scripts/setup.sh +nodejs.org";
|
|
46
|
+
NpmScript2["UpgradeDependencies"] = "pnpm up";
|
|
47
|
+
return NpmScript2;
|
|
48
|
+
})(NpmScript || {});
|
|
49
|
+
export var Action = /* @__PURE__ */ ((Action2) => {
|
|
50
|
+
Action2["Bump"] = "bump";
|
|
51
|
+
Action2["BuildStacks"] = "build/stacks";
|
|
52
|
+
Action2["BuildComponentLibs"] = "build/component-libs";
|
|
53
|
+
Action2["BuildVueComponentLib"] = "build-vue-component-lib";
|
|
54
|
+
Action2["BuildWebComponentLib"] = "build-web-component-lib";
|
|
55
|
+
Action2["BuildCli"] = "build-cli";
|
|
56
|
+
Action2["BuildCore"] = "build/core";
|
|
57
|
+
Action2["BuildDocs"] = "build-docs";
|
|
58
|
+
Action2["BuildFunctionLib"] = "build-function-lib";
|
|
59
|
+
Action2["Changelog"] = "changelog";
|
|
60
|
+
Action2["Clean"] = "clean";
|
|
61
|
+
Action2["DevComponents"] = "dev/components";
|
|
62
|
+
Action2["Dev"] = "dev/index";
|
|
63
|
+
Action2["DevDocs"] = "dev/docs";
|
|
64
|
+
Action2["Deploy"] = "deploy";
|
|
65
|
+
Action2["Fresh"] = "fresh";
|
|
66
|
+
Action2["GenerateLibraryEntries"] = "generate/lib-entries";
|
|
67
|
+
Action2["Inspire"] = "inspire";
|
|
68
|
+
Action2["KeyGenerate"] = "key-generate";
|
|
69
|
+
Action2["MakeNotification"] = "make-notification";
|
|
70
|
+
Action2["Migrate"] = "migrate";
|
|
71
|
+
Action2["Seed"] = "seed";
|
|
72
|
+
Action2["Lint"] = "lint/index";
|
|
73
|
+
Action2["LintFix"] = "lint/fix";
|
|
74
|
+
Action2["Prepublish"] = "prepublish";
|
|
75
|
+
Action2["Release"] = "release";
|
|
76
|
+
Action2["ShowFeatureTestReport"] = "show-feature-test-report";
|
|
77
|
+
Action2["Test"] = "test";
|
|
78
|
+
Action2["TestUi"] = "test-ui";
|
|
79
|
+
Action2["TestUnit"] = "test-unit";
|
|
80
|
+
Action2["TestFeature"] = "test-feature";
|
|
81
|
+
Action2["TestCoverage"] = "test-coverage";
|
|
82
|
+
Action2["Tinker"] = "tinker";
|
|
83
|
+
Action2["Typecheck"] = "typecheck";
|
|
84
|
+
Action2["Upgrade"] = "upgrade/index";
|
|
85
|
+
Action2["UpgradeNode"] = "upgrade/node";
|
|
86
|
+
Action2["UpgradePackageManager"] = "upgrade/package-manager";
|
|
87
|
+
return Action2;
|
|
88
|
+
})(Action || {});
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export var Every = /* @__PURE__ */ ((Every2) => {
|
|
2
|
+
Every2["Minute"] = "* * * * *";
|
|
3
|
+
Every2["Hour"] = "0 * * * *";
|
|
4
|
+
Every2["HalfHour"] = "0,30 * * * *";
|
|
5
|
+
Every2["Day"] = "0 0 * * *";
|
|
6
|
+
Every2["Month"] = "0 0 1 * *";
|
|
7
|
+
Every2["Week"] = "0 0 * * 0";
|
|
8
|
+
Every2["Year"] = "0 0 1 1 *";
|
|
9
|
+
Every2["FifthMinute"] = "*/5 * * * *";
|
|
10
|
+
Every2["TenthMinute"] = "*/10 * * * *";
|
|
11
|
+
return Every2;
|
|
12
|
+
})(Every || {});
|
|
File without changes
|
package/dist/debug.mjs
ADDED
|
File without changes
|
package/dist/deploy.mjs
ADDED
|
File without changes
|
package/dist/dns.mjs
ADDED
|
File without changes
|
package/dist/docs.mjs
ADDED
|
File without changes
|
package/dist/errors.mjs
ADDED
package/dist/events.mjs
ADDED
|
File without changes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var ExitCode = /* @__PURE__ */ ((ExitCode2) => {
|
|
2
|
+
ExitCode2[ExitCode2["Success"] = 0] = "Success";
|
|
3
|
+
ExitCode2[ExitCode2["FatalError"] = 1] = "FatalError";
|
|
4
|
+
ExitCode2[ExitCode2["InvalidArgument"] = 9] = "InvalidArgument";
|
|
5
|
+
return ExitCode2;
|
|
6
|
+
})(ExitCode || {});
|
package/dist/fs.mjs
ADDED
|
File without changes
|
package/dist/git.mjs
ADDED
|
File without changes
|
package/dist/hashing.mjs
ADDED
|
File without changes
|
package/dist/i18n.mjs
ADDED
|
File without changes
|
package/dist/index.mjs
CHANGED
|
@@ -1,112 +1,40 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
NpmScript2["KeyGenerate"] = "key:generate";
|
|
42
|
-
NpmScript2["TypesFix"] = "types:fix";
|
|
43
|
-
NpmScript2["TypesGenerate"] = "types:generate";
|
|
44
|
-
NpmScript2["Preinstall"] = "preinstall";
|
|
45
|
-
NpmScript2["Prepublish"] = "prepublish";
|
|
46
|
-
NpmScript2["Wip"] = "wip";
|
|
47
|
-
NpmScript2["UpgradeNode"] = "./.stacks/scripts/setup.sh +nodejs.org";
|
|
48
|
-
NpmScript2["UpgradeDependencies"] = "pnpm up";
|
|
49
|
-
return NpmScript2;
|
|
50
|
-
})(NpmScript || {});
|
|
51
|
-
var Action = /* @__PURE__ */ ((Action2) => {
|
|
52
|
-
Action2["Bump"] = "bump";
|
|
53
|
-
Action2["BuildStacks"] = "build/stacks";
|
|
54
|
-
Action2["BuildComponentLibs"] = "build/component-libs";
|
|
55
|
-
Action2["BuildVueComponentLib"] = "build-vue-component-lib";
|
|
56
|
-
Action2["BuildWebComponentLib"] = "build-web-component-lib";
|
|
57
|
-
Action2["BuildCli"] = "build-cli";
|
|
58
|
-
Action2["BuildCore"] = "build/core";
|
|
59
|
-
Action2["BuildDocs"] = "build-docs";
|
|
60
|
-
Action2["BuildFunctionLib"] = "build-function-lib";
|
|
61
|
-
Action2["Changelog"] = "changelog";
|
|
62
|
-
Action2["Clean"] = "clean";
|
|
63
|
-
Action2["DevComponents"] = "dev/components";
|
|
64
|
-
Action2["Dev"] = "dev/index";
|
|
65
|
-
Action2["DevDocs"] = "dev/docs";
|
|
66
|
-
Action2["Deploy"] = "deploy";
|
|
67
|
-
Action2["Fresh"] = "fresh";
|
|
68
|
-
Action2["GenerateLibraryEntries"] = "generate/lib-entries";
|
|
69
|
-
Action2["Inspire"] = "inspire";
|
|
70
|
-
Action2["KeyGenerate"] = "key-generate";
|
|
71
|
-
Action2["MakeNotification"] = "make-notification";
|
|
72
|
-
Action2["Migrate"] = "migrate";
|
|
73
|
-
Action2["Seed"] = "seed";
|
|
74
|
-
Action2["Lint"] = "lint/index";
|
|
75
|
-
Action2["LintFix"] = "lint/fix";
|
|
76
|
-
Action2["Prepublish"] = "prepublish";
|
|
77
|
-
Action2["Release"] = "release";
|
|
78
|
-
Action2["ShowFeatureTestReport"] = "show-feature-test-report";
|
|
79
|
-
Action2["Test"] = "test";
|
|
80
|
-
Action2["TestUi"] = "test-ui";
|
|
81
|
-
Action2["TestUnit"] = "test-unit";
|
|
82
|
-
Action2["TestFeature"] = "test-feature";
|
|
83
|
-
Action2["TestCoverage"] = "test-coverage";
|
|
84
|
-
Action2["Tinker"] = "tinker";
|
|
85
|
-
Action2["Typecheck"] = "typecheck";
|
|
86
|
-
Action2["Upgrade"] = "upgrade/index";
|
|
87
|
-
Action2["UpgradeNode"] = "upgrade/node";
|
|
88
|
-
Action2["UpgradePackageManager"] = "upgrade/package-manager";
|
|
89
|
-
return Action2;
|
|
90
|
-
})(Action || {});
|
|
91
|
-
|
|
92
|
-
var Every = /* @__PURE__ */ ((Every2) => {
|
|
93
|
-
Every2["Minute"] = "* * * * *";
|
|
94
|
-
Every2["Hour"] = "0 * * * *";
|
|
95
|
-
Every2["HalfHour"] = "0,30 * * * *";
|
|
96
|
-
Every2["Day"] = "0 0 * * *";
|
|
97
|
-
Every2["Month"] = "0 0 1 * *";
|
|
98
|
-
Every2["Week"] = "0 0 * * 0";
|
|
99
|
-
Every2["Year"] = "0 0 1 1 *";
|
|
100
|
-
Every2["FifthMinute"] = "*/5 * * * *";
|
|
101
|
-
Every2["TenthMinute"] = "*/10 * * * *";
|
|
102
|
-
return Every2;
|
|
103
|
-
})(Every || {});
|
|
104
|
-
|
|
105
|
-
var ExitCode = /* @__PURE__ */ ((ExitCode2) => {
|
|
106
|
-
ExitCode2[ExitCode2["Success"] = 0] = "Success";
|
|
107
|
-
ExitCode2[ExitCode2["FatalError"] = 1] = "FatalError";
|
|
108
|
-
ExitCode2[ExitCode2["InvalidArgument"] = 9] = "InvalidArgument";
|
|
109
|
-
return ExitCode2;
|
|
110
|
-
})(ExitCode || {});
|
|
111
|
-
|
|
112
|
-
export { Action, Every, ExitCode, NpmScript };
|
|
1
|
+
export * from "./app.mjs";
|
|
2
|
+
export * from "./auto-imports.mjs";
|
|
3
|
+
export * from "./build.mjs";
|
|
4
|
+
export * from "./cache.mjs";
|
|
5
|
+
export * from "./cdn.mjs";
|
|
6
|
+
export * from "./cli.mjs";
|
|
7
|
+
export * from "./components.mjs";
|
|
8
|
+
export * from "./cron-jobs.mjs";
|
|
9
|
+
export * from "./database.mjs";
|
|
10
|
+
export * from "./debug.mjs";
|
|
11
|
+
export * from "./deploy.mjs";
|
|
12
|
+
export * from "./dns.mjs";
|
|
13
|
+
export * from "./docs.mjs";
|
|
14
|
+
export * from "./errors.mjs";
|
|
15
|
+
export * from "./events.mjs";
|
|
16
|
+
export * from "./exit-code.mjs";
|
|
17
|
+
export * from "./fs.mjs";
|
|
18
|
+
export * from "./git.mjs";
|
|
19
|
+
export * from "./hashing.mjs";
|
|
20
|
+
export * from "./i18n.mjs";
|
|
21
|
+
export * from "./inspect.mjs";
|
|
22
|
+
export * from "./layout.mjs";
|
|
23
|
+
export * from "./library.mjs";
|
|
24
|
+
export * from "./manifest.mjs";
|
|
25
|
+
export * from "./model.mjs";
|
|
26
|
+
export * from "./money.mjs";
|
|
27
|
+
export * from "./notifications.mjs";
|
|
28
|
+
export * from "./pages.mjs";
|
|
29
|
+
export * from "./payments.mjs";
|
|
30
|
+
export * from "./promise.mjs";
|
|
31
|
+
export * from "./pwa.mjs";
|
|
32
|
+
export * from "./queue.mjs";
|
|
33
|
+
export * from "./reactivity.mjs";
|
|
34
|
+
export * from "./router.mjs";
|
|
35
|
+
export * from "./search-engine.mjs";
|
|
36
|
+
export * from "./ssg.mjs";
|
|
37
|
+
export * from "./stacks.mjs";
|
|
38
|
+
export * from "./tables.mjs";
|
|
39
|
+
export * from "./ui.mjs";
|
|
40
|
+
export * from "./utils.mjs";
|
package/dist/inspect.mjs
ADDED
|
File without changes
|
package/dist/layout.mjs
ADDED
|
File without changes
|
package/dist/library.mjs
ADDED
|
File without changes
|
|
File without changes
|
package/dist/model.mjs
ADDED
|
File without changes
|
package/dist/money.mjs
ADDED
|
File without changes
|
|
File without changes
|
package/dist/pages.mjs
ADDED
|
File without changes
|
|
File without changes
|
package/dist/promise.mjs
ADDED
|
File without changes
|
package/dist/pwa.mjs
ADDED
|
File without changes
|
package/dist/queue.mjs
ADDED
|
File without changes
|
|
File without changes
|
package/dist/router.mjs
ADDED
|
File without changes
|
|
File without changes
|
package/dist/ssg.mjs
ADDED
|
File without changes
|
package/dist/stacks.mjs
ADDED
|
File without changes
|
package/dist/tables.mjs
ADDED
|
File without changes
|
package/dist/ui.mjs
ADDED
|
File without changes
|
package/dist/utils.mjs
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.56.
|
|
4
|
+
"version": "0.56.21",
|
|
5
5
|
"packageManager": "pnpm@8.6.5",
|
|
6
6
|
"description": "The Stacks framework types.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"./*": "./*"
|
|
31
31
|
},
|
|
32
|
+
"main": "dist/index.mjs",
|
|
32
33
|
"module": "dist/index.mjs",
|
|
33
34
|
"types": "dist/index.d.ts",
|
|
34
35
|
"contributors": [
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"@mdit-vue/plugin-component": "^0.12.0",
|
|
46
47
|
"@mdit-vue/plugin-frontmatter": "^0.12.0",
|
|
47
48
|
"@mdit-vue/types": "^0.12.0",
|
|
48
|
-
"@novu/stateless": "^0.16.
|
|
49
|
+
"@novu/stateless": "^0.16.2",
|
|
49
50
|
"@rollup/pluginutils": "^5.0.2",
|
|
50
51
|
"@types/bcryptjs": "^2.4.2",
|
|
51
52
|
"@types/crypto-js": "^4.1.1",
|
|
@@ -67,7 +68,7 @@
|
|
|
67
68
|
"unplugin-auto-import": "^0.16.4",
|
|
68
69
|
"unplugin-vue-components": "^0.25.1",
|
|
69
70
|
"vite": "^4.3.9",
|
|
70
|
-
"vite-plugin-inspect": "^0.7.
|
|
71
|
+
"vite-plugin-inspect": "^0.7.30",
|
|
71
72
|
"vite-plugin-pwa": "^0.16.4",
|
|
72
73
|
"vite-plugin-vue-layouts": "^0.8.0",
|
|
73
74
|
"vite-ssg": "^0.22.2",
|
|
@@ -75,11 +76,11 @@
|
|
|
75
76
|
"vue": "^3.3.4"
|
|
76
77
|
},
|
|
77
78
|
"devDependencies": {
|
|
78
|
-
"typescript": "^5.1.
|
|
79
|
+
"typescript": "^5.1.5",
|
|
79
80
|
"unbuild": "^1.2.1"
|
|
80
81
|
},
|
|
81
82
|
"scripts": {
|
|
82
|
-
"build": "
|
|
83
|
+
"build": "mkdist",
|
|
83
84
|
"dev": "unbuild --stub",
|
|
84
85
|
"typecheck": "tsc --noEmit"
|
|
85
86
|
}
|