@bearei/server-common 0.0.181 → 0.0.182

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.
@@ -8,3 +8,33 @@ export interface FindResult<T extends CommonEntity> {
8
8
  results: T[];
9
9
  total: string;
10
10
  }
11
+ export declare class UserEntity extends CommonEntity {
12
+ avatar: string;
13
+ closedAt: Date;
14
+ email: string;
15
+ fullMobile: string;
16
+ mobile: string;
17
+ nickname: string;
18
+ password: string;
19
+ passwordExpiredAt: Date;
20
+ protected: boolean;
21
+ regionCode: string;
22
+ }
23
+ export declare class BookmarkEntity extends CommonEntity {
24
+ description: string;
25
+ name: string;
26
+ uri: string;
27
+ userId: string;
28
+ }
29
+ export declare class CartonEntity extends CommonEntity {
30
+ description: string;
31
+ icon: string;
32
+ name: string;
33
+ userId: string;
34
+ }
35
+ export declare class TagEntity extends CommonEntity {
36
+ description: string;
37
+ icon: string;
38
+ name: string;
39
+ userId: string;
40
+ }
@@ -1,3 +1,39 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TagEntity = exports.CartonEntity = exports.BookmarkEntity = exports.UserEntity = void 0;
4
+ const app_entity_1 = require("./app.entity");
5
+ class UserEntity extends app_entity_1.CommonEntity {
6
+ avatar;
7
+ closedAt;
8
+ email;
9
+ fullMobile;
10
+ mobile;
11
+ nickname;
12
+ password;
13
+ passwordExpiredAt;
14
+ protected;
15
+ regionCode;
16
+ }
17
+ exports.UserEntity = UserEntity;
18
+ class BookmarkEntity extends app_entity_1.CommonEntity {
19
+ description;
20
+ name;
21
+ uri;
22
+ userId;
23
+ }
24
+ exports.BookmarkEntity = BookmarkEntity;
25
+ class CartonEntity extends app_entity_1.CommonEntity {
26
+ description;
27
+ icon;
28
+ name;
29
+ userId;
30
+ }
31
+ exports.CartonEntity = CartonEntity;
32
+ class TagEntity extends app_entity_1.CommonEntity {
33
+ description;
34
+ icon;
35
+ name;
36
+ userId;
37
+ }
38
+ exports.TagEntity = TagEntity;
3
39
  //# sourceMappingURL=app.interface.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.interface.js","sourceRoot":"","sources":["../src/app.interface.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"app.interface.js","sourceRoot":"","sources":["../src/app.interface.ts"],"names":[],"mappings":";;;AACA,6CAAyC;AAoBzC,MAAa,UAAW,SAAQ,yBAAY;IACpC,MAAM,CAAQ;IACd,QAAQ,CAAM;IACd,KAAK,CAAQ;IACb,UAAU,CAAQ;IAClB,MAAM,CAAQ;IACd,QAAQ,CAAQ;IAChB,QAAQ,CAAQ;IAChB,iBAAiB,CAAM;IACvB,SAAS,CAAS;IAClB,UAAU,CAAQ;CACzB;AAXD,gCAWC;AAED,MAAa,cAAe,SAAQ,yBAAY;IACxC,WAAW,CAAQ;IACnB,IAAI,CAAQ;IACZ,GAAG,CAAQ;IACX,MAAM,CAAQ;CACrB;AALD,wCAKC;AAED,MAAa,YAAa,SAAQ,yBAAY;IACtC,WAAW,CAAQ;IACnB,IAAI,CAAQ;IACZ,IAAI,CAAQ;IACZ,MAAM,CAAQ;CACrB;AALD,oCAKC;AAED,MAAa,SAAU,SAAQ,yBAAY;IACnC,WAAW,CAAQ;IACnB,IAAI,CAAQ;IACZ,IAAI,CAAQ;IACZ,MAAM,CAAQ;CACrB;AALD,8BAKC"}