@experts_hub/shared 1.0.457 → 1.0.458

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.
@@ -2,6 +2,7 @@ import { BaseEntity } from "./base.entity";
2
2
  import { User } from "./user.entity";
3
3
  import { WalletTransaction } from "./wallet-transaction.entity";
4
4
  export declare enum WalletAccountTypeEnum {
5
+ ADMIN = "ADMIN",
5
6
  BUSINESS = "BUSINESS",
6
7
  FREELANCER = "FREELANCER"
7
8
  }
package/dist/index.d.mts CHANGED
@@ -1687,6 +1687,7 @@ declare class WalletTransaction extends BaseEntity {
1687
1687
  }
1688
1688
 
1689
1689
  declare enum WalletAccountTypeEnum {
1690
+ ADMIN = "ADMIN",
1690
1691
  BUSINESS = "BUSINESS",
1691
1692
  FREELANCER = "FREELANCER"
1692
1693
  }
package/dist/index.d.ts CHANGED
@@ -1687,6 +1687,7 @@ declare class WalletTransaction extends BaseEntity {
1687
1687
  }
1688
1688
 
1689
1689
  declare enum WalletAccountTypeEnum {
1690
+ ADMIN = "ADMIN",
1690
1691
  BUSINESS = "BUSINESS",
1691
1692
  FREELANCER = "FREELANCER"
1692
1693
  }
package/dist/index.js CHANGED
@@ -4993,6 +4993,7 @@ WalletTransaction = __decorateClass([
4993
4993
 
4994
4994
  // src/entities/wallet.entity.ts
4995
4995
  var WalletAccountTypeEnum = /* @__PURE__ */ ((WalletAccountTypeEnum2) => {
4996
+ WalletAccountTypeEnum2["ADMIN"] = "ADMIN";
4996
4997
  WalletAccountTypeEnum2["BUSINESS"] = "BUSINESS";
4997
4998
  WalletAccountTypeEnum2["FREELANCER"] = "FREELANCER";
4998
4999
  return WalletAccountTypeEnum2;
package/dist/index.mjs CHANGED
@@ -5020,6 +5020,7 @@ WalletTransaction = __decorateClass([
5020
5020
 
5021
5021
  // src/entities/wallet.entity.ts
5022
5022
  var WalletAccountTypeEnum = /* @__PURE__ */ ((WalletAccountTypeEnum2) => {
5023
+ WalletAccountTypeEnum2["ADMIN"] = "ADMIN";
5023
5024
  WalletAccountTypeEnum2["BUSINESS"] = "BUSINESS";
5024
5025
  WalletAccountTypeEnum2["FREELANCER"] = "FREELANCER";
5025
5026
  return WalletAccountTypeEnum2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.457",
3
+ "version": "1.0.458",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",