gomtm 0.0.206 → 0.0.211
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/esm/cli/build.d.ts +2 -0
- package/dist/esm/cli/build.js +60 -0
- package/dist/esm/cli/deployMtWorker.d.ts +2 -0
- package/dist/esm/cli/deployMtWorker.js +19 -0
- package/dist/esm/cli/deploy_cf_worker.d.ts +2 -0
- package/dist/esm/cli/deploy_cf_worker.js +70 -0
- package/dist/esm/cli/deploy_mtxcli.d.ts +2 -0
- package/dist/esm/cli/deploy_mtxcli.js +55 -0
- package/dist/esm/cli/deploy_mtxedge.d.ts +2 -0
- package/dist/esm/cli/deploy_mtxedge.js +55 -0
- package/dist/esm/cli/deploy_mtxui.d.ts +2 -0
- package/dist/esm/cli/deploy_mtxui.js +45 -0
- package/dist/esm/cli/up_cf1.d.ts +2 -0
- package/dist/esm/cli/up_cf1.js +29 -0
- package/dist/esm/cli/vc_mtxedge.d.ts +2 -0
- package/dist/esm/cli/vc_mtxedge.js +44 -0
- package/dist/esm/curd/CommonListViewV2.js +19 -3
- package/dist/esm/curd/create/CurdCreatePanel.d.ts +6 -0
- package/dist/esm/curd/create/CurdCreatePanel.js +23 -0
- package/dist/esm/curd/dlg/DlgCurdDebugInfo.d.ts +6 -0
- package/dist/esm/curd/dlg/DlgCurdDebugInfo.js +39 -0
- package/dist/esm/curd/dlg/DlgDebugInfo.d.ts +4 -0
- package/dist/esm/curd/dlg/DlgDebugInfo.js +21 -0
- package/dist/esm/curd/edit/CurdEditPanel.d.ts +6 -0
- package/dist/esm/curd/edit/CurdEditPanel.js +23 -0
- package/dist/esm/main.d.ts +2 -0
- package/dist/esm/main.js +34 -0
- package/dist/esm/providers/GomtmProvider.js +1 -1
- package/dist/esm/providers/logger.context.d.ts +2 -0
- package/dist/esm/store/gomtm.atom.d.ts +4 -0
- package/dist/esm/store/gomtm.atom.js +12 -0
- package/dist/esm/utils.d.ts +1 -0
- package/dist/esm/utils.js +5 -0
- package/dist/esm/validations/spContentModi.d.ts +4 -4
- package/dist/esm/validations/spRoute.d.ts +8 -8
- package/dist/esm/validations/user.d.ts +4 -4
- package/dist/gomtm +0 -0
- package/dist/tsconfig.type.tsbuildinfo +1 -1
- package/package.json +7 -2
|
@@ -2,6 +2,8 @@ import { PropsWithChildren } from 'react';
|
|
|
2
2
|
export declare function LoggerProvider(props: {} & PropsWithChildren): import("react").JSX.Element;
|
|
3
3
|
export declare function useLogger(): {
|
|
4
4
|
info: {
|
|
5
|
+
(...data: any[]): void;
|
|
6
|
+
(...data: any[]): void;
|
|
5
7
|
(...data: any[]): void;
|
|
6
8
|
(message?: any, ...optionalParams: any[]): void;
|
|
7
9
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { atom } from "jotai";
|
|
3
|
+
const isDebugValueAtom = atom(false);
|
|
4
|
+
const isDebugAtom = atom((get) => {
|
|
5
|
+
return get(isDebugValueAtom);
|
|
6
|
+
}, (_, set, value) => {
|
|
7
|
+
set(isDebugValueAtom, value);
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
isDebugAtom,
|
|
11
|
+
isDebugValueAtom
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const projectRoot: string;
|
|
@@ -23,15 +23,15 @@ export declare const spContentModiCreateInput: z.ZodObject<{
|
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
action: string;
|
|
25
25
|
value: string;
|
|
26
|
-
sel: string;
|
|
27
26
|
spRouteId: string;
|
|
27
|
+
sel: string;
|
|
28
28
|
matchContentType: string;
|
|
29
29
|
title?: string | undefined;
|
|
30
30
|
}, {
|
|
31
31
|
action: string;
|
|
32
32
|
value: string;
|
|
33
|
-
sel: string;
|
|
34
33
|
spRouteId: string;
|
|
34
|
+
sel: string;
|
|
35
35
|
matchContentType: string;
|
|
36
36
|
title?: string | undefined;
|
|
37
37
|
}>;
|
|
@@ -47,16 +47,16 @@ export declare const spContentModiSaveInput: z.ZodObject<{
|
|
|
47
47
|
id: string;
|
|
48
48
|
action: string;
|
|
49
49
|
value: string;
|
|
50
|
-
sel: string;
|
|
51
50
|
spRouteId: string;
|
|
51
|
+
sel: string;
|
|
52
52
|
matchContentType: string;
|
|
53
53
|
title?: string | undefined;
|
|
54
54
|
}, {
|
|
55
55
|
id: string;
|
|
56
56
|
action: string;
|
|
57
57
|
value: string;
|
|
58
|
-
sel: string;
|
|
59
58
|
spRouteId: string;
|
|
59
|
+
sel: string;
|
|
60
60
|
matchContentType: string;
|
|
61
61
|
title?: string | undefined;
|
|
62
62
|
}>;
|
|
@@ -21,16 +21,16 @@ export declare const spRouteCreateInput: z.ZodObject<{
|
|
|
21
21
|
value: z.ZodString;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
23
|
title: string;
|
|
24
|
-
|
|
24
|
+
value: string;
|
|
25
25
|
hostPattern: string;
|
|
26
26
|
pathPattern: string;
|
|
27
|
-
|
|
27
|
+
spProjectId: string;
|
|
28
28
|
}, {
|
|
29
29
|
title: string;
|
|
30
|
-
|
|
30
|
+
value: string;
|
|
31
31
|
hostPattern: string;
|
|
32
32
|
pathPattern: string;
|
|
33
|
-
|
|
33
|
+
spProjectId: string;
|
|
34
34
|
}>;
|
|
35
35
|
export type SpRouteSaveInput = z.infer<typeof SpRouteSaveInput>;
|
|
36
36
|
export declare const SpRouteSaveInput: z.ZodObject<{
|
|
@@ -43,15 +43,15 @@ export declare const SpRouteSaveInput: z.ZodObject<{
|
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
44
|
id: string;
|
|
45
45
|
title: string;
|
|
46
|
-
|
|
46
|
+
value: string;
|
|
47
47
|
hostPattern: string;
|
|
48
48
|
pathPattern: string;
|
|
49
|
-
|
|
49
|
+
spProjectId: string;
|
|
50
50
|
}, {
|
|
51
51
|
id: string;
|
|
52
52
|
title: string;
|
|
53
|
-
|
|
53
|
+
value: string;
|
|
54
54
|
hostPattern: string;
|
|
55
55
|
pathPattern: string;
|
|
56
|
-
|
|
56
|
+
spProjectId: string;
|
|
57
57
|
}>;
|
|
@@ -42,23 +42,23 @@ export declare const Oauth2LoginResponseSchema: z.ZodObject<{
|
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
accessToken: string;
|
|
44
44
|
id: string;
|
|
45
|
-
userName: string;
|
|
46
45
|
roles: string[];
|
|
46
|
+
userName: string;
|
|
47
47
|
}, {
|
|
48
48
|
accessToken: string;
|
|
49
49
|
id: string;
|
|
50
|
-
userName: string;
|
|
51
50
|
roles: string[];
|
|
51
|
+
userName: string;
|
|
52
52
|
}>;
|
|
53
53
|
export type Oauth2LoginResponse = z.infer<typeof Oauth2LoginResponseSchema>;
|
|
54
54
|
export declare const MeResponseSchema: z.ZodObject<{
|
|
55
55
|
userName: z.ZodString;
|
|
56
56
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
userName: string;
|
|
59
58
|
roles: string[];
|
|
60
|
-
}, {
|
|
61
59
|
userName: string;
|
|
60
|
+
}, {
|
|
62
61
|
roles: string[];
|
|
62
|
+
userName: string;
|
|
63
63
|
}>;
|
|
64
64
|
export type MeResponse = z.infer<typeof MeResponseSchema>;
|
package/dist/gomtm
ADDED
|
Binary file
|