@yolo-croket-dev/amqp-access 0.5.7-sj3 → 0.5.7-sj4
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/brand-bookmark/query/get-brand-bookmarks-by-brand-infos.dto.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare class BrandInfo {
|
|
|
5
5
|
export declare class GetBrandBookmarksByBrandInfosPayload {
|
|
6
6
|
brandInfos: BrandInfo[];
|
|
7
7
|
}
|
|
8
|
-
declare class
|
|
8
|
+
export declare class BrandBookmarkWithUserData {
|
|
9
9
|
userId: string;
|
|
10
10
|
appPush: boolean;
|
|
11
11
|
brandNewsAppPush: boolean;
|
|
@@ -15,6 +15,6 @@ declare class BrandBookmarkData {
|
|
|
15
15
|
brandLatestBookmarkDate: Date;
|
|
16
16
|
}
|
|
17
17
|
export interface GetBrandBookmarksByBrandInfosResult {
|
|
18
|
-
bookmarks:
|
|
18
|
+
bookmarks: BrandBookmarkWithUserData[];
|
|
19
19
|
}
|
|
20
20
|
export {};
|
package/store-item-server/dto/brand-bookmark/query/get-brand-bookmarks-by-brand-infos.dto.js
CHANGED
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.GetBrandBookmarksByBrandInfosPayload = void 0;
|
|
12
|
+
exports.BrandBookmarkWithUserData = exports.GetBrandBookmarksByBrandInfosPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
class BrandInfo {
|
|
15
15
|
}
|
|
@@ -28,5 +28,6 @@ __decorate([
|
|
|
28
28
|
(0, class_validator_1.IsArray)(),
|
|
29
29
|
__metadata("design:type", Array)
|
|
30
30
|
], GetBrandBookmarksByBrandInfosPayload.prototype, "brandInfos", void 0);
|
|
31
|
-
class
|
|
31
|
+
class BrandBookmarkWithUserData {
|
|
32
32
|
}
|
|
33
|
+
exports.BrandBookmarkWithUserData = BrandBookmarkWithUserData;
|