@yolo-croket-dev/amqp-access 0.4.31-slowquery.3 → 0.4.31-slowquery.4
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
package/store-item-server/dto/store-item-bookmark/query/get-store-item-bookmark-users.dto.d.ts
CHANGED
|
@@ -7,6 +7,12 @@ export declare class GetStoreItemBookmarkUsersPayload {
|
|
|
7
7
|
/** 가져올 개수 */
|
|
8
8
|
limit: number;
|
|
9
9
|
}
|
|
10
|
+
export interface GetStoreItemBookmarkUser {
|
|
11
|
+
/** 찜 아이디 */
|
|
12
|
+
_id: string;
|
|
13
|
+
/** 유저아이디 */
|
|
14
|
+
userId: string;
|
|
15
|
+
}
|
|
10
16
|
export interface GetStoreItemBookmarkUsersResult {
|
|
11
|
-
|
|
17
|
+
bookmarkUsers: GetStoreItemBookmarkUser[];
|
|
12
18
|
}
|