gomtm 0.0.329 → 0.0.331
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 +3 -3
- package/dist/esm/validations/_common.d.ts +6 -6
- package/dist/esm/validations/blog.d.ts +6 -6
- package/dist/esm/validations/crawlerSchema.d.ts +3 -3
- 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/curd/list-item/CommonListItemView.d.ts +0 -9
- package/dist/esm/curd/list-item/CommonListItemView.js +0 -68
- package/dist/esm/curd/list-item/ListItem.d.ts +0 -6
- package/dist/esm/curd/list-item/ListItem.js +0 -23
- package/dist/esm/curd/list-item/ListLayout.d.ts +0 -5
- package/dist/esm/curd/list-item/ListLayout.js +0 -19
- package/dist/esm/curd/list-item/PostCardListItem.d.ts +0 -8
- package/dist/esm/curd/list-item/PostCardListItem.js +0 -152
- package/dist/esm/curd/list-item/PostListItemAuto.d.ts +0 -5
- package/dist/esm/curd/list-item/PostListItemAuto.js +0 -43
- package/dist/esm/curd/listview/ListViewProvider.d.ts +0 -5
- package/dist/esm/curd/listview/ListViewProvider.js +0 -115
- package/dist/esm/ly/ExampleChildren.d.ts +0 -2
- package/dist/esm/ly/ExampleChildren.js +0 -8
|
@@ -4,10 +4,10 @@ interface ListViewStateProps {
|
|
|
4
4
|
backendUrl?: string;
|
|
5
5
|
svc: string;
|
|
6
6
|
methodList: string;
|
|
7
|
-
methodGet
|
|
8
|
-
methodUpdate
|
|
7
|
+
methodGet?: string;
|
|
8
|
+
methodUpdate?: string;
|
|
9
9
|
methodCreate?: string;
|
|
10
|
-
methodDelete
|
|
10
|
+
methodDelete?: string;
|
|
11
11
|
paramsGet?: any;
|
|
12
12
|
paramsList?: any;
|
|
13
13
|
slugPath?: string;
|
|
@@ -10,13 +10,13 @@ export declare const commonListInputSchema: z.ZodObject<{
|
|
|
10
10
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
11
11
|
cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
keyword?: string | undefined;
|
|
14
|
-
limit?: number | undefined;
|
|
15
13
|
cursor?: string | null | undefined;
|
|
16
|
-
}, {
|
|
17
|
-
keyword?: string | undefined;
|
|
18
14
|
limit?: number | undefined;
|
|
15
|
+
keyword?: string | undefined;
|
|
16
|
+
}, {
|
|
19
17
|
cursor?: string | null | undefined;
|
|
18
|
+
limit?: number | undefined;
|
|
19
|
+
keyword?: string | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
export declare const getByIdInputSchema: z.ZodObject<{
|
|
22
22
|
id: z.ZodString;
|
|
@@ -49,9 +49,9 @@ export declare const PaginateQuery: z.ZodObject<{
|
|
|
49
49
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
50
50
|
cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
limit?: number | undefined;
|
|
53
52
|
cursor?: string | null | undefined;
|
|
54
|
-
}, {
|
|
55
53
|
limit?: number | undefined;
|
|
54
|
+
}, {
|
|
56
55
|
cursor?: string | null | undefined;
|
|
56
|
+
limit?: number | undefined;
|
|
57
57
|
}>;
|
|
@@ -5,13 +5,13 @@ export declare const blogListQueryInputSchema: z.ZodObject<{
|
|
|
5
5
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
6
6
|
cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
keyword?: string | undefined;
|
|
9
|
-
slug?: string | undefined;
|
|
10
|
-
limit?: number | undefined;
|
|
11
8
|
cursor?: string | null | undefined;
|
|
12
|
-
}, {
|
|
13
|
-
keyword?: string | undefined;
|
|
14
|
-
slug?: string | undefined;
|
|
15
9
|
limit?: number | undefined;
|
|
10
|
+
slug?: string | undefined;
|
|
11
|
+
keyword?: string | undefined;
|
|
12
|
+
}, {
|
|
16
13
|
cursor?: string | null | undefined;
|
|
14
|
+
limit?: number | undefined;
|
|
15
|
+
slug?: string | undefined;
|
|
16
|
+
keyword?: string | undefined;
|
|
17
17
|
}>;
|
|
@@ -6,12 +6,12 @@ export declare const crawlerListQueryInputSchema: z.ZodObject<{
|
|
|
6
6
|
cursor: z.ZodOptional<z.ZodString>;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
limit: number;
|
|
9
|
+
cursor?: string | undefined;
|
|
9
10
|
q?: string | undefined;
|
|
10
11
|
name?: string | undefined;
|
|
11
|
-
cursor?: string | undefined;
|
|
12
12
|
}, {
|
|
13
|
+
cursor?: string | undefined;
|
|
14
|
+
limit?: number | undefined;
|
|
13
15
|
q?: string | undefined;
|
|
14
16
|
name?: string | undefined;
|
|
15
|
-
limit?: number | undefined;
|
|
16
|
-
cursor?: string | undefined;
|
|
17
17
|
}>;
|
|
@@ -21,15 +21,15 @@ export declare const spContentModiCreateInput: z.ZodObject<{
|
|
|
21
21
|
action: z.ZodString;
|
|
22
22
|
value: z.ZodString;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
action: string;
|
|
25
24
|
value: string;
|
|
25
|
+
action: string;
|
|
26
26
|
sel: string;
|
|
27
27
|
spRouteId: string;
|
|
28
28
|
matchContentType: string;
|
|
29
29
|
title?: string | undefined;
|
|
30
30
|
}, {
|
|
31
|
-
action: string;
|
|
32
31
|
value: string;
|
|
32
|
+
action: string;
|
|
33
33
|
sel: string;
|
|
34
34
|
spRouteId: string;
|
|
35
35
|
matchContentType: string;
|
|
@@ -44,17 +44,17 @@ export declare const spContentModiSaveInput: z.ZodObject<{
|
|
|
44
44
|
action: z.ZodString;
|
|
45
45
|
value: z.ZodString;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
+
value: string;
|
|
47
48
|
id: string;
|
|
48
49
|
action: string;
|
|
49
|
-
value: string;
|
|
50
50
|
sel: string;
|
|
51
51
|
spRouteId: string;
|
|
52
52
|
matchContentType: string;
|
|
53
53
|
title?: string | undefined;
|
|
54
54
|
}, {
|
|
55
|
+
value: string;
|
|
55
56
|
id: string;
|
|
56
57
|
action: string;
|
|
57
|
-
value: string;
|
|
58
58
|
sel: string;
|
|
59
59
|
spRouteId: string;
|
|
60
60
|
matchContentType: string;
|
|
@@ -20,14 +20,14 @@ export declare const spRouteCreateInput: z.ZodObject<{
|
|
|
20
20
|
pathPattern: z.ZodString;
|
|
21
21
|
value: z.ZodString;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
-
title: string;
|
|
24
23
|
value: string;
|
|
24
|
+
title: string;
|
|
25
25
|
spProjectId: string;
|
|
26
26
|
hostPattern: string;
|
|
27
27
|
pathPattern: string;
|
|
28
28
|
}, {
|
|
29
|
-
title: string;
|
|
30
29
|
value: string;
|
|
30
|
+
title: string;
|
|
31
31
|
spProjectId: string;
|
|
32
32
|
hostPattern: string;
|
|
33
33
|
pathPattern: string;
|
|
@@ -41,16 +41,16 @@ export declare const SpRouteSaveInput: z.ZodObject<{
|
|
|
41
41
|
pathPattern: z.ZodString;
|
|
42
42
|
value: z.ZodString;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
|
+
value: string;
|
|
44
45
|
id: string;
|
|
45
46
|
title: string;
|
|
46
|
-
value: string;
|
|
47
47
|
spProjectId: string;
|
|
48
48
|
hostPattern: string;
|
|
49
49
|
pathPattern: string;
|
|
50
50
|
}, {
|
|
51
|
+
value: string;
|
|
51
52
|
id: string;
|
|
52
53
|
title: string;
|
|
53
|
-
value: string;
|
|
54
54
|
spProjectId: string;
|
|
55
55
|
hostPattern: string;
|
|
56
56
|
pathPattern: string;
|
|
@@ -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
|
-
name: string;
|
|
31
30
|
email: string;
|
|
32
|
-
}, {
|
|
33
31
|
name: string;
|
|
32
|
+
}, {
|
|
34
33
|
email: string;
|
|
34
|
+
name: 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
|
-
roles: string[];
|
|
46
45
|
userName: string;
|
|
46
|
+
roles: string[];
|
|
47
47
|
}, {
|
|
48
48
|
accessToken: string;
|
|
49
49
|
id: string;
|
|
50
|
-
roles: string[];
|
|
51
50
|
userName: string;
|
|
51
|
+
roles: 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
|
-
roles: string[];
|
|
59
58
|
userName: string;
|
|
60
|
-
}, {
|
|
61
59
|
roles: string[];
|
|
60
|
+
}, {
|
|
62
61
|
userName: string;
|
|
62
|
+
roles: string[];
|
|
63
63
|
}>;
|
|
64
64
|
export type MeResponse = z.infer<typeof MeResponseSchema>;
|