gomtm 0.0.292 → 0.0.293
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/curd/listview/list-store.d.ts +1 -1
- package/dist/esm/curd/listview/list-store.js +1 -1
- package/dist/esm/mtmFetcher.d.ts +1 -1
- package/dist/esm/validations/spContentModi.d.ts +4 -4
- package/dist/esm/validations/spRoute.d.ts +4 -4
- package/dist/esm/validations/user.d.ts +6 -6
- package/dist/tsconfig.type.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/esm/providers/GomtmProvider.d.ts +0 -4
- package/dist/esm/providers/GomtmProvider.js +0 -1
- package/dist/esm/store/useStore.d.ts +0 -2
- package/dist/esm/store/useStore.js +0 -13
package/dist/esm/mtmFetcher.d.ts
CHANGED
|
@@ -23,15 +23,15 @@ export declare const spContentModiCreateInput: z.ZodObject<{
|
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
value: string;
|
|
25
25
|
action: string;
|
|
26
|
-
sel: string;
|
|
27
26
|
spRouteId: string;
|
|
27
|
+
sel: string;
|
|
28
28
|
matchContentType: string;
|
|
29
29
|
title?: string | undefined;
|
|
30
30
|
}, {
|
|
31
31
|
value: string;
|
|
32
32
|
action: 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
|
value: string;
|
|
48
48
|
id: string;
|
|
49
49
|
action: string;
|
|
50
|
-
sel: string;
|
|
51
50
|
spRouteId: string;
|
|
51
|
+
sel: string;
|
|
52
52
|
matchContentType: string;
|
|
53
53
|
title?: string | undefined;
|
|
54
54
|
}, {
|
|
55
55
|
value: string;
|
|
56
56
|
id: string;
|
|
57
57
|
action: string;
|
|
58
|
-
sel: string;
|
|
59
58
|
spRouteId: string;
|
|
59
|
+
sel: string;
|
|
60
60
|
matchContentType: string;
|
|
61
61
|
title?: string | undefined;
|
|
62
62
|
}>;
|
|
@@ -22,15 +22,15 @@ export declare const spRouteCreateInput: z.ZodObject<{
|
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
23
|
value: string;
|
|
24
24
|
title: string;
|
|
25
|
-
spProjectId: string;
|
|
26
25
|
hostPattern: string;
|
|
27
26
|
pathPattern: string;
|
|
27
|
+
spProjectId: string;
|
|
28
28
|
}, {
|
|
29
29
|
value: string;
|
|
30
30
|
title: string;
|
|
31
|
-
spProjectId: string;
|
|
32
31
|
hostPattern: string;
|
|
33
32
|
pathPattern: string;
|
|
33
|
+
spProjectId: string;
|
|
34
34
|
}>;
|
|
35
35
|
export type SpRouteSaveInput = z.infer<typeof SpRouteSaveInput>;
|
|
36
36
|
export declare const SpRouteSaveInput: z.ZodObject<{
|
|
@@ -44,14 +44,14 @@ export declare const SpRouteSaveInput: z.ZodObject<{
|
|
|
44
44
|
value: string;
|
|
45
45
|
id: string;
|
|
46
46
|
title: string;
|
|
47
|
-
spProjectId: string;
|
|
48
47
|
hostPattern: string;
|
|
49
48
|
pathPattern: string;
|
|
49
|
+
spProjectId: string;
|
|
50
50
|
}, {
|
|
51
51
|
value: string;
|
|
52
52
|
id: string;
|
|
53
53
|
title: string;
|
|
54
|
-
spProjectId: string;
|
|
55
54
|
hostPattern: string;
|
|
56
55
|
pathPattern: string;
|
|
56
|
+
spProjectId: string;
|
|
57
57
|
}>;
|
|
@@ -27,11 +27,11 @@ export declare const createUserSchema: z.ZodObject<{
|
|
|
27
27
|
name: z.ZodString;
|
|
28
28
|
email: z.ZodString;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
email: string;
|
|
31
30
|
name: string;
|
|
32
|
-
}, {
|
|
33
31
|
email: string;
|
|
32
|
+
}, {
|
|
34
33
|
name: string;
|
|
34
|
+
email: string;
|
|
35
35
|
}>;
|
|
36
36
|
export type ICreateUser = z.infer<typeof createUserSchema>;
|
|
37
37
|
export declare const Oauth2LoginResponseSchema: z.ZodObject<{
|
|
@@ -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>;
|