@experts_hub/shared 1.0.181 → 1.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.
package/dist/index.d.mts CHANGED
@@ -1313,11 +1313,13 @@ declare class FreelancerSkillDto {
1313
1313
  declare const FREELANCER_ADMIN_PATTERNS: {
1314
1314
  fetchAdminFreelancers: string;
1315
1315
  exportAdminFreelancers: string;
1316
+ fetchFreelancerCount: string;
1316
1317
  };
1317
1318
 
1318
1319
  declare const CLIENT_ADMIN_PATTERNS: {
1319
1320
  fetchAdminClients: string;
1320
1321
  exportAdminClients: string;
1322
+ fetchClientCount: string;
1321
1323
  };
1322
1324
 
1323
1325
  declare const FREELANCER_DECLARATION_PATTERN: {
package/dist/index.d.ts CHANGED
@@ -1313,11 +1313,13 @@ declare class FreelancerSkillDto {
1313
1313
  declare const FREELANCER_ADMIN_PATTERNS: {
1314
1314
  fetchAdminFreelancers: string;
1315
1315
  exportAdminFreelancers: string;
1316
+ fetchFreelancerCount: string;
1316
1317
  };
1317
1318
 
1318
1319
  declare const CLIENT_ADMIN_PATTERNS: {
1319
1320
  fetchAdminClients: string;
1320
1321
  exportAdminClients: string;
1322
+ fetchClientCount: string;
1321
1323
  };
1322
1324
 
1323
1325
  declare const FREELANCER_DECLARATION_PATTERN: {
package/dist/index.js CHANGED
@@ -2973,13 +2973,15 @@ __decorateClass([
2973
2973
  // src/modules/freelancer-admin/pattern/pattern.ts
2974
2974
  var FREELANCER_ADMIN_PATTERNS = {
2975
2975
  fetchAdminFreelancers: "fetch.admin.freelancers",
2976
- exportAdminFreelancers: "export.admin.freelancers"
2976
+ exportAdminFreelancers: "export.admin.freelancers",
2977
+ fetchFreelancerCount: "fetch.freelancer.count"
2977
2978
  };
2978
2979
 
2979
2980
  // src/modules/client-admin/pattern/pattern.ts
2980
2981
  var CLIENT_ADMIN_PATTERNS = {
2981
2982
  fetchAdminClients: "fetch.admin.clients",
2982
- exportAdminClients: "export.admin.clients"
2983
+ exportAdminClients: "export.admin.clients",
2984
+ fetchClientCount: "fetch.client.count"
2983
2985
  };
2984
2986
 
2985
2987
  // src/modules/user/freelancer-declaration/pattern/pattern.ts
package/dist/index.mjs CHANGED
@@ -3057,13 +3057,15 @@ __decorateClass([
3057
3057
  // src/modules/freelancer-admin/pattern/pattern.ts
3058
3058
  var FREELANCER_ADMIN_PATTERNS = {
3059
3059
  fetchAdminFreelancers: "fetch.admin.freelancers",
3060
- exportAdminFreelancers: "export.admin.freelancers"
3060
+ exportAdminFreelancers: "export.admin.freelancers",
3061
+ fetchFreelancerCount: "fetch.freelancer.count"
3061
3062
  };
3062
3063
 
3063
3064
  // src/modules/client-admin/pattern/pattern.ts
3064
3065
  var CLIENT_ADMIN_PATTERNS = {
3065
3066
  fetchAdminClients: "fetch.admin.clients",
3066
- exportAdminClients: "export.admin.clients"
3067
+ exportAdminClients: "export.admin.clients",
3068
+ fetchClientCount: "fetch.client.count"
3067
3069
  };
3068
3070
 
3069
3071
  // src/modules/user/freelancer-declaration/pattern/pattern.ts
@@ -1,4 +1,5 @@
1
1
  export declare const CLIENT_ADMIN_PATTERNS: {
2
2
  fetchAdminClients: string;
3
3
  exportAdminClients: string;
4
+ fetchClientCount: string;
4
5
  };
@@ -1,4 +1,5 @@
1
1
  export declare const FREELANCER_ADMIN_PATTERNS: {
2
2
  fetchAdminFreelancers: string;
3
3
  exportAdminFreelancers: string;
4
+ fetchFreelancerCount: string;
4
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.181",
3
+ "version": "1.0.182",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",