plac-micro-common 1.2.76 → 1.2.77

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.
@@ -5,6 +5,7 @@ export declare class AppActivityLogEntity extends _BaseEntity {
5
5
  id: string;
6
6
  application_id: string;
7
7
  actor_user_id?: string | null;
8
+ actor_user_name?: string | null;
8
9
  action_type: ApplicationActionType;
9
10
  from_value?: string | null;
10
11
  to_value?: string | null;
@@ -30,6 +30,10 @@ __decorate([
30
30
  (0, typeorm_1.Column)({ type: "uuid", nullable: true }),
31
31
  __metadata("design:type", Object)
32
32
  ], AppActivityLogEntity.prototype, "actor_user_id", void 0);
33
+ __decorate([
34
+ (0, typeorm_1.Column)({ type: "varchar", length: 100, nullable: true }),
35
+ __metadata("design:type", Object)
36
+ ], AppActivityLogEntity.prototype, "actor_user_name", void 0);
33
37
  __decorate([
34
38
  (0, typeorm_1.Column)({
35
39
  type: "varchar",
@@ -28,6 +28,8 @@ export interface RequestContextData {
28
28
  }
29
29
  export type CurrentUserInfo = {
30
30
  id: string;
31
+ full_name: string;
32
+ full_name_kh?: string;
31
33
  username?: string;
32
34
  partner_id?: string;
33
35
  org_id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plac-micro-common",
3
- "version": "1.2.76",
3
+ "version": "1.2.77",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {