@yolo-croket-dev/amqp-access 0.6.60-jun.0 → 0.6.60-jun.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/package.json
CHANGED
|
@@ -6,11 +6,11 @@ export declare class GetActivityListAtAppPayload {
|
|
|
6
6
|
sort?: string;
|
|
7
7
|
unRead?: boolean;
|
|
8
8
|
}
|
|
9
|
-
type GetActivityListAtAppResultActivity = Pick<ActivityEntity, '_author' | 'method' | 'content' | 'lastTime' | 'read' | 'appUrl' | 'webUrl' | 'title'> & {
|
|
9
|
+
export type GetActivityListAtAppResultActivity = Pick<ActivityEntity, '_author' | 'method' | 'content' | 'lastTime' | 'read' | 'appUrl' | 'webUrl' | 'title'> & {
|
|
10
10
|
activityId: string;
|
|
11
11
|
typeInfo: ActivityInfoData;
|
|
12
12
|
};
|
|
13
|
-
interface GetActivityListAtAppResultData {
|
|
13
|
+
export interface GetActivityListAtAppResultData {
|
|
14
14
|
list: GetActivityListAtAppResultActivity[];
|
|
15
15
|
}
|
|
16
16
|
export interface GetActivityListAtAppResult {
|
|
@@ -19,4 +19,3 @@ export interface GetActivityListAtAppResult {
|
|
|
19
19
|
maxPage: number;
|
|
20
20
|
activityList: GetActivityListAtAppResultData[];
|
|
21
21
|
}
|
|
22
|
-
export {};
|
|
@@ -3,11 +3,11 @@ import { ActivityInfoData } from '../common.interface';
|
|
|
3
3
|
export declare class GetActivityPreviewListPayload {
|
|
4
4
|
page: number;
|
|
5
5
|
}
|
|
6
|
-
type GetActivityPreviewListResultActivity = Pick<ActivityEntity, '_author' | 'method' | 'content' | 'lastTime' | 'read' | 'appUrl' | 'webUrl' | 'title'> & {
|
|
6
|
+
export type GetActivityPreviewListResultActivity = Pick<ActivityEntity, '_author' | 'method' | 'content' | 'lastTime' | 'read' | 'appUrl' | 'webUrl' | 'title'> & {
|
|
7
7
|
activityId: string;
|
|
8
8
|
typeInfo: ActivityInfoData;
|
|
9
9
|
};
|
|
10
|
-
interface GetActivityPreviewListResultData {
|
|
10
|
+
export interface GetActivityPreviewListResultData {
|
|
11
11
|
preview: GetActivityPreviewListResultActivity;
|
|
12
12
|
list: GetActivityPreviewListResultActivity[];
|
|
13
13
|
remainCount: number;
|
|
@@ -18,4 +18,3 @@ export interface GetActivityPreviewListResult {
|
|
|
18
18
|
maxPage: number;
|
|
19
19
|
activityList: GetActivityPreviewListResultData[];
|
|
20
20
|
}
|
|
21
|
-
export {};
|