@arkstack/common 0.10.0 → 0.10.2
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.d.ts +20 -1
- package/package.json +2 -2
package/dist/app.d.ts
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
import { GlobalConfig, GlobalEnv } from '
|
|
1
|
+
import type { GlobalConfig, GlobalEnv } from '.'
|
|
2
|
+
|
|
3
|
+
interface Stubs {
|
|
4
|
+
api: string;
|
|
5
|
+
model: string;
|
|
6
|
+
resource: string;
|
|
7
|
+
controller: string;
|
|
8
|
+
collection: string;
|
|
9
|
+
apiResource: string;
|
|
10
|
+
}
|
|
2
11
|
|
|
3
12
|
declare global {
|
|
4
13
|
var env: GlobalEnv
|
|
@@ -27,4 +36,14 @@ declare global {
|
|
|
27
36
|
}
|
|
28
37
|
}
|
|
29
38
|
|
|
39
|
+
declare module 'resora' {
|
|
40
|
+
interface Config {
|
|
41
|
+
stubs: Stubs;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
interface ResoraConfig {
|
|
45
|
+
stubs?: Partial<Stubs> | undefined
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
30
49
|
export { }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/common",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core utilities, primitives, and shared infrastructure for the Arkstack ecosystem.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@h3ravel/support": "^0.15.11",
|
|
44
44
|
"arkormx": "^ 2.4.1",
|
|
45
|
-
"@arkstack/contract": "^0.10.
|
|
45
|
+
"@arkstack/contract": "^0.10.2"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsdown --config-loader unrun",
|