@r2wa-org/eden 0.0.69 → 0.0.71
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/src/admin/index.d.ts +178 -4
- package/dist/src/asset-convert-product/admin/dto.schemas.d.ts +235 -0
- package/dist/src/asset-convert-product/admin/router.d.ts +174 -0
- package/dist/src/asset-convert-product/admin/service.d.ts +170 -0
- package/dist/src/asset-convert-product/db.schemas.d.ts +34 -0
- package/dist/src/asset-convert-product/schema.d.ts +17 -0
- package/dist/src/asset-convert-product/user/dto.schemas.d.ts +4 -0
- package/dist/src/asset-convert-product/user/router.d.ts +3 -0
- package/dist/src/asset-convert-product/user/service.d.ts +3 -0
- package/dist/src/index.d.ts +184 -7
- package/dist/src/news/admin/dto.schemas.d.ts +5 -5
- package/dist/src/news/admin/router.d.ts +4 -4
- package/dist/src/news/admin/service.d.ts +3 -3
- package/dist/src/news/user/dto.schemas.d.ts +5 -5
- package/dist/src/news/user/router.d.ts +3 -3
- package/dist/src/news/user/service.d.ts +4 -4
- package/package.json +1 -1
|
@@ -10,13 +10,13 @@ export declare const newsSelectModel: import("@sinclair/typebox").TObject<{
|
|
|
10
10
|
published: "published";
|
|
11
11
|
}>;
|
|
12
12
|
sortOrder: import("@sinclair/typebox").TInteger;
|
|
13
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
13
14
|
createdBy: import("@sinclair/typebox").TString;
|
|
14
15
|
title: import("@sinclair/typebox").TString;
|
|
15
16
|
content: import("@sinclair/typebox").TString;
|
|
16
17
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
17
18
|
categoryId: import("@sinclair/typebox").TString;
|
|
18
19
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
19
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
20
20
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
21
21
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
22
22
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -38,13 +38,13 @@ export declare const newsListItemModel: import("@sinclair/typebox").TObject<{
|
|
|
38
38
|
draft: "draft";
|
|
39
39
|
published: "published";
|
|
40
40
|
}>;
|
|
41
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
41
42
|
createdBy: import("@sinclair/typebox").TString;
|
|
42
43
|
title: import("@sinclair/typebox").TString;
|
|
43
44
|
content: import("@sinclair/typebox").TString;
|
|
44
45
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
45
46
|
categoryId: import("@sinclair/typebox").TString;
|
|
46
47
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
47
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
48
48
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
49
49
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
50
50
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -70,13 +70,13 @@ export declare const newsListResponse: import("@sinclair/typebox").TObject<{
|
|
|
70
70
|
draft: "draft";
|
|
71
71
|
published: "published";
|
|
72
72
|
}>;
|
|
73
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
73
74
|
createdBy: import("@sinclair/typebox").TString;
|
|
74
75
|
title: import("@sinclair/typebox").TString;
|
|
75
76
|
content: import("@sinclair/typebox").TString;
|
|
76
77
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
77
78
|
categoryId: import("@sinclair/typebox").TString;
|
|
78
79
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
79
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
80
80
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
81
81
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
82
82
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -105,12 +105,12 @@ export declare const newsCreateModel: import("@sinclair/typebox").TObject<{
|
|
|
105
105
|
published: "published";
|
|
106
106
|
}>>;
|
|
107
107
|
sortOrder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
108
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
108
109
|
title: import("@sinclair/typebox").TString;
|
|
109
110
|
content: import("@sinclair/typebox").TString;
|
|
110
111
|
summary: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
111
112
|
categoryId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
112
113
|
isPinned: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
113
|
-
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
114
114
|
hasVideo: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
115
115
|
requireReadConfirmation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
116
116
|
externalUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
@@ -128,12 +128,12 @@ export declare const newsUpdateModel: import("@sinclair/typebox").TObject<{
|
|
|
128
128
|
published: "published";
|
|
129
129
|
}>>;
|
|
130
130
|
sortOrder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
131
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
131
132
|
title: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
132
133
|
content: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
133
134
|
summary: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
134
135
|
categoryId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
135
136
|
isPinned: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
136
|
-
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
137
137
|
hasVideo: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
138
138
|
requireReadConfirmation: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
139
139
|
externalUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
@@ -387,10 +387,10 @@ export declare const newsAdminRouter: Elysia<"/news", {
|
|
|
387
387
|
scope?: string[] | undefined;
|
|
388
388
|
status?: "archived" | "draft" | "published" | undefined;
|
|
389
389
|
sortOrder?: number | undefined;
|
|
390
|
+
isHot?: boolean | undefined;
|
|
390
391
|
summary?: string | null | undefined;
|
|
391
392
|
categoryId?: string | undefined;
|
|
392
393
|
isPinned?: boolean | undefined;
|
|
393
|
-
isHot?: boolean | undefined;
|
|
394
394
|
hasVideo?: boolean | undefined;
|
|
395
395
|
requireReadConfirmation?: boolean | undefined;
|
|
396
396
|
externalUrl?: string | null | undefined;
|
|
@@ -445,13 +445,13 @@ export declare const newsAdminRouter: Elysia<"/news", {
|
|
|
445
445
|
deletedAt: Date | null;
|
|
446
446
|
status: "archived" | "draft" | "published";
|
|
447
447
|
sortOrder: number;
|
|
448
|
+
isHot: boolean;
|
|
448
449
|
createdBy: string;
|
|
449
450
|
title: string;
|
|
450
451
|
content: string;
|
|
451
452
|
summary: string | null;
|
|
452
453
|
categoryId: string;
|
|
453
454
|
isPinned: boolean;
|
|
454
|
-
isHot: boolean;
|
|
455
455
|
hasVideo: boolean;
|
|
456
456
|
requireReadConfirmation: boolean;
|
|
457
457
|
externalUrl: string | null;
|
|
@@ -513,13 +513,13 @@ export declare const newsAdminRouter: Elysia<"/news", {
|
|
|
513
513
|
deletedAt: Date | null;
|
|
514
514
|
status: "archived" | "draft" | "published";
|
|
515
515
|
sortOrder: number;
|
|
516
|
+
isHot: boolean;
|
|
516
517
|
createdBy: string;
|
|
517
518
|
title: string;
|
|
518
519
|
content: string;
|
|
519
520
|
summary: string | null;
|
|
520
521
|
categoryId: string;
|
|
521
522
|
isPinned: boolean;
|
|
522
|
-
isHot: boolean;
|
|
523
523
|
hasVideo: boolean;
|
|
524
524
|
requireReadConfirmation: boolean;
|
|
525
525
|
externalUrl: string | null;
|
|
@@ -595,12 +595,12 @@ export declare const newsAdminRouter: Elysia<"/news", {
|
|
|
595
595
|
scope?: string[] | undefined;
|
|
596
596
|
status?: "archived" | "draft" | "published" | undefined;
|
|
597
597
|
sortOrder?: number | undefined;
|
|
598
|
+
isHot?: boolean | undefined;
|
|
598
599
|
title?: string | undefined;
|
|
599
600
|
content?: string | undefined;
|
|
600
601
|
summary?: string | null | undefined;
|
|
601
602
|
categoryId?: string | undefined;
|
|
602
603
|
isPinned?: boolean | undefined;
|
|
603
|
-
isHot?: boolean | undefined;
|
|
604
604
|
hasVideo?: boolean | undefined;
|
|
605
605
|
requireReadConfirmation?: boolean | undefined;
|
|
606
606
|
externalUrl?: string | null | undefined;
|
|
@@ -10,13 +10,13 @@ export declare abstract class AdminNewsService extends BaseNewsService {
|
|
|
10
10
|
deletedAt: Date | null;
|
|
11
11
|
status: "archived" | "draft" | "published";
|
|
12
12
|
sortOrder: number;
|
|
13
|
+
isHot: boolean;
|
|
13
14
|
createdBy: string;
|
|
14
15
|
title: string;
|
|
15
16
|
content: string;
|
|
16
17
|
summary: string | null;
|
|
17
18
|
categoryId: string;
|
|
18
19
|
isPinned: boolean;
|
|
19
|
-
isHot: boolean;
|
|
20
20
|
hasVideo: boolean;
|
|
21
21
|
requireReadConfirmation: boolean;
|
|
22
22
|
externalUrl: string | null;
|
|
@@ -61,13 +61,13 @@ export declare abstract class AdminNewsService extends BaseNewsService {
|
|
|
61
61
|
deletedAt: Date | null;
|
|
62
62
|
status: "archived" | "draft" | "published";
|
|
63
63
|
sortOrder: number;
|
|
64
|
+
isHot: boolean;
|
|
64
65
|
createdBy: string;
|
|
65
66
|
title: string;
|
|
66
67
|
content: string;
|
|
67
68
|
summary: string | null;
|
|
68
69
|
categoryId: string;
|
|
69
70
|
isPinned: boolean;
|
|
70
|
-
isHot: boolean;
|
|
71
71
|
hasVideo: boolean;
|
|
72
72
|
requireReadConfirmation: boolean;
|
|
73
73
|
externalUrl: string | null;
|
|
@@ -129,13 +129,13 @@ export declare abstract class AdminNewsService extends BaseNewsService {
|
|
|
129
129
|
deletedAt: Date | null;
|
|
130
130
|
status: "archived" | "draft" | "published";
|
|
131
131
|
sortOrder: number;
|
|
132
|
+
isHot: boolean;
|
|
132
133
|
createdBy: string;
|
|
133
134
|
title: string;
|
|
134
135
|
content: string;
|
|
135
136
|
summary: string | null;
|
|
136
137
|
categoryId: string;
|
|
137
138
|
isPinned: boolean;
|
|
138
|
-
isHot: boolean;
|
|
139
139
|
hasVideo: boolean;
|
|
140
140
|
requireReadConfirmation: boolean;
|
|
141
141
|
externalUrl: string | null;
|
|
@@ -10,13 +10,13 @@ export declare const newsSelectModel: import("@sinclair/typebox").TObject<{
|
|
|
10
10
|
published: "published";
|
|
11
11
|
}>;
|
|
12
12
|
sortOrder: import("@sinclair/typebox").TInteger;
|
|
13
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
13
14
|
createdBy: import("@sinclair/typebox").TString;
|
|
14
15
|
title: import("@sinclair/typebox").TString;
|
|
15
16
|
content: import("@sinclair/typebox").TString;
|
|
16
17
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
17
18
|
categoryId: import("@sinclair/typebox").TString;
|
|
18
19
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
19
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
20
20
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
21
21
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
22
22
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -38,13 +38,13 @@ export declare const newsListItemModel: import("@sinclair/typebox").TObject<{
|
|
|
38
38
|
draft: "draft";
|
|
39
39
|
published: "published";
|
|
40
40
|
}>;
|
|
41
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
41
42
|
createdBy: import("@sinclair/typebox").TString;
|
|
42
43
|
title: import("@sinclair/typebox").TString;
|
|
43
44
|
content: import("@sinclair/typebox").TString;
|
|
44
45
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
45
46
|
categoryId: import("@sinclair/typebox").TString;
|
|
46
47
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
47
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
48
48
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
49
49
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
50
50
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -70,13 +70,13 @@ export declare const newsListResponse: import("@sinclair/typebox").TObject<{
|
|
|
70
70
|
draft: "draft";
|
|
71
71
|
published: "published";
|
|
72
72
|
}>;
|
|
73
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
73
74
|
createdBy: import("@sinclair/typebox").TString;
|
|
74
75
|
title: import("@sinclair/typebox").TString;
|
|
75
76
|
content: import("@sinclair/typebox").TString;
|
|
76
77
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
77
78
|
categoryId: import("@sinclair/typebox").TString;
|
|
78
79
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
79
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
80
80
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
81
81
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
82
82
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -123,13 +123,13 @@ export declare const newsDetailResponse: import("@sinclair/typebox").TObject<{
|
|
|
123
123
|
draft: "draft";
|
|
124
124
|
published: "published";
|
|
125
125
|
}>;
|
|
126
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
126
127
|
createdBy: import("@sinclair/typebox").TString;
|
|
127
128
|
title: import("@sinclair/typebox").TString;
|
|
128
129
|
content: import("@sinclair/typebox").TString;
|
|
129
130
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
130
131
|
categoryId: import("@sinclair/typebox").TString;
|
|
131
132
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
132
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
133
133
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
134
134
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
135
135
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -159,13 +159,13 @@ export declare const pendingConfirmationsResponse: import("@sinclair/typebox").T
|
|
|
159
159
|
draft: "draft";
|
|
160
160
|
published: "published";
|
|
161
161
|
}>;
|
|
162
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
162
163
|
createdBy: import("@sinclair/typebox").TString;
|
|
163
164
|
title: import("@sinclair/typebox").TString;
|
|
164
165
|
content: import("@sinclair/typebox").TString;
|
|
165
166
|
summary: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
166
167
|
categoryId: import("@sinclair/typebox").TString;
|
|
167
168
|
isPinned: import("@sinclair/typebox").TBoolean;
|
|
168
|
-
isHot: import("@sinclair/typebox").TBoolean;
|
|
169
169
|
hasVideo: import("@sinclair/typebox").TBoolean;
|
|
170
170
|
requireReadConfirmation: import("@sinclair/typebox").TBoolean;
|
|
171
171
|
externalUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
@@ -408,13 +408,13 @@ export declare const newsRouter: Elysia<"/news", {
|
|
|
408
408
|
scope: string[];
|
|
409
409
|
status: "archived" | "draft" | "published";
|
|
410
410
|
sortOrder: number;
|
|
411
|
+
isHot: boolean;
|
|
411
412
|
createdBy: string;
|
|
412
413
|
title: string;
|
|
413
414
|
content: string;
|
|
414
415
|
summary: string | null;
|
|
415
416
|
categoryId: string;
|
|
416
417
|
isPinned: boolean;
|
|
417
|
-
isHot: boolean;
|
|
418
418
|
hasVideo: boolean;
|
|
419
419
|
requireReadConfirmation: boolean;
|
|
420
420
|
externalUrl: string | null;
|
|
@@ -466,13 +466,13 @@ export declare const newsRouter: Elysia<"/news", {
|
|
|
466
466
|
scope: string[];
|
|
467
467
|
status: "archived" | "draft" | "published";
|
|
468
468
|
sortOrder: number;
|
|
469
|
+
isHot: boolean;
|
|
469
470
|
createdBy: string;
|
|
470
471
|
title: string;
|
|
471
472
|
content: string;
|
|
472
473
|
summary: string | null;
|
|
473
474
|
categoryId: string;
|
|
474
475
|
isPinned: boolean;
|
|
475
|
-
isHot: boolean;
|
|
476
476
|
hasVideo: boolean;
|
|
477
477
|
requireReadConfirmation: boolean;
|
|
478
478
|
externalUrl: string | null;
|
|
@@ -540,13 +540,13 @@ export declare const newsRouter: Elysia<"/news", {
|
|
|
540
540
|
scope: string[];
|
|
541
541
|
status: "archived" | "draft" | "published";
|
|
542
542
|
sortOrder: number;
|
|
543
|
+
isHot: boolean;
|
|
543
544
|
createdBy: string;
|
|
544
545
|
title: string;
|
|
545
546
|
content: string;
|
|
546
547
|
summary: string | null;
|
|
547
548
|
categoryId: string;
|
|
548
549
|
isPinned: boolean;
|
|
549
|
-
isHot: boolean;
|
|
550
550
|
hasVideo: boolean;
|
|
551
551
|
requireReadConfirmation: boolean;
|
|
552
552
|
externalUrl: string | null;
|
|
@@ -11,13 +11,13 @@ export declare abstract class UserNewsService extends BaseNewsService {
|
|
|
11
11
|
deletedAt: Date | null;
|
|
12
12
|
status: "archived" | "draft" | "published";
|
|
13
13
|
sortOrder: number;
|
|
14
|
+
isHot: boolean;
|
|
14
15
|
createdBy: string;
|
|
15
16
|
title: string;
|
|
16
17
|
content: string;
|
|
17
18
|
summary: string | null;
|
|
18
19
|
categoryId: string;
|
|
19
20
|
isPinned: boolean;
|
|
20
|
-
isHot: boolean;
|
|
21
21
|
hasVideo: boolean;
|
|
22
22
|
requireReadConfirmation: boolean;
|
|
23
23
|
externalUrl: string | null;
|
|
@@ -59,13 +59,13 @@ export declare abstract class UserNewsService extends BaseNewsService {
|
|
|
59
59
|
deletedAt: Date | null;
|
|
60
60
|
status: "archived" | "draft" | "published";
|
|
61
61
|
sortOrder: number;
|
|
62
|
+
isHot: boolean;
|
|
62
63
|
createdBy: string;
|
|
63
64
|
title: string;
|
|
64
65
|
content: string;
|
|
65
66
|
summary: string | null;
|
|
66
67
|
categoryId: string;
|
|
67
68
|
isPinned: boolean;
|
|
68
|
-
isHot: boolean;
|
|
69
69
|
hasVideo: boolean;
|
|
70
70
|
requireReadConfirmation: boolean;
|
|
71
71
|
externalUrl: string | null;
|
|
@@ -126,13 +126,13 @@ export declare abstract class UserNewsService extends BaseNewsService {
|
|
|
126
126
|
deletedAt: Date | null;
|
|
127
127
|
status: "archived" | "draft" | "published";
|
|
128
128
|
sortOrder: number;
|
|
129
|
+
isHot: boolean;
|
|
129
130
|
createdBy: string;
|
|
130
131
|
title: string;
|
|
131
132
|
content: string;
|
|
132
133
|
summary: string | null;
|
|
133
134
|
categoryId: string;
|
|
134
135
|
isPinned: boolean;
|
|
135
|
-
isHot: boolean;
|
|
136
136
|
hasVideo: boolean;
|
|
137
137
|
requireReadConfirmation: boolean;
|
|
138
138
|
externalUrl: string | null;
|
|
@@ -199,13 +199,13 @@ export declare abstract class UserNewsService extends BaseNewsService {
|
|
|
199
199
|
deletedAt: Date | null;
|
|
200
200
|
status: "archived" | "draft" | "published";
|
|
201
201
|
sortOrder: number;
|
|
202
|
+
isHot: boolean;
|
|
202
203
|
createdBy: string;
|
|
203
204
|
title: string;
|
|
204
205
|
content: string;
|
|
205
206
|
summary: string | null;
|
|
206
207
|
categoryId: string;
|
|
207
208
|
isPinned: boolean;
|
|
208
|
-
isHot: boolean;
|
|
209
209
|
hasVideo: boolean;
|
|
210
210
|
requireReadConfirmation: boolean;
|
|
211
211
|
externalUrl: string | null;
|