@experts_hub/shared 1.0.190 → 1.0.191

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
@@ -1335,6 +1335,9 @@ declare const FREELANCER_ADMIN_PATTERNS: {
1335
1335
 
1336
1336
  declare const CLIENT_ADMIN_PATTERNS: {
1337
1337
  fetchAdminClients: string;
1338
+ updateAdminClients: string;
1339
+ fetchAdminClientById: string;
1340
+ deleteAdminClient: string;
1338
1341
  exportAdminClients: string;
1339
1342
  fetchClientCount: string;
1340
1343
  };
package/dist/index.d.ts CHANGED
@@ -1335,6 +1335,9 @@ declare const FREELANCER_ADMIN_PATTERNS: {
1335
1335
 
1336
1336
  declare const CLIENT_ADMIN_PATTERNS: {
1337
1337
  fetchAdminClients: string;
1338
+ updateAdminClients: string;
1339
+ fetchAdminClientById: string;
1340
+ deleteAdminClient: string;
1338
1341
  exportAdminClients: string;
1339
1342
  fetchClientCount: string;
1340
1343
  };
package/dist/index.js CHANGED
@@ -3039,6 +3039,9 @@ var FREELANCER_ADMIN_PATTERNS = {
3039
3039
  // src/modules/client-admin/pattern/pattern.ts
3040
3040
  var CLIENT_ADMIN_PATTERNS = {
3041
3041
  fetchAdminClients: "fetch.admin.clients",
3042
+ updateAdminClients: "update.admin.clients",
3043
+ fetchAdminClientById: "fetch.admin.client_by_id",
3044
+ deleteAdminClient: "delete.admin.client",
3042
3045
  exportAdminClients: "export.admin.clients",
3043
3046
  fetchClientCount: "fetch.client.count"
3044
3047
  };
package/dist/index.mjs CHANGED
@@ -3122,6 +3122,9 @@ var FREELANCER_ADMIN_PATTERNS = {
3122
3122
  // src/modules/client-admin/pattern/pattern.ts
3123
3123
  var CLIENT_ADMIN_PATTERNS = {
3124
3124
  fetchAdminClients: "fetch.admin.clients",
3125
+ updateAdminClients: "update.admin.clients",
3126
+ fetchAdminClientById: "fetch.admin.client_by_id",
3127
+ deleteAdminClient: "delete.admin.client",
3125
3128
  exportAdminClients: "export.admin.clients",
3126
3129
  fetchClientCount: "fetch.client.count"
3127
3130
  };
@@ -1,5 +1,8 @@
1
1
  export declare const CLIENT_ADMIN_PATTERNS: {
2
2
  fetchAdminClients: string;
3
+ updateAdminClients: string;
4
+ fetchAdminClientById: string;
5
+ deleteAdminClient: string;
3
6
  exportAdminClients: string;
4
7
  fetchClientCount: string;
5
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.190",
3
+ "version": "1.0.191",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -1,3 +0,0 @@
1
- export * from './pattern/pattern';
2
- export * from './dto';
3
- export * from './client-admin.interface';
@@ -1,7 +0,0 @@
1
- export declare const CLIENT_PATTERN: {
2
- fetchClient: string;
3
- findClientById: string;
4
- createClient: string;
5
- updateClient: string;
6
- deleteClient: string;
7
- };