@experts_hub/shared 1.0.168 → 1.0.169
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
|
@@ -1279,10 +1279,12 @@ declare class FreelancerSkillDto {
|
|
|
1279
1279
|
|
|
1280
1280
|
declare const FREELANCER_ADMIN_PATTERNS: {
|
|
1281
1281
|
fetchAdminFreelancers: string;
|
|
1282
|
+
exportAdminFreelancers: string;
|
|
1282
1283
|
};
|
|
1283
1284
|
|
|
1284
1285
|
declare const CLIENT_ADMIN_PATTERNS: {
|
|
1285
1286
|
fetchAdminClients: string;
|
|
1287
|
+
exportAdminClients: string;
|
|
1286
1288
|
};
|
|
1287
1289
|
|
|
1288
1290
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
package/dist/index.d.ts
CHANGED
|
@@ -1279,10 +1279,12 @@ declare class FreelancerSkillDto {
|
|
|
1279
1279
|
|
|
1280
1280
|
declare const FREELANCER_ADMIN_PATTERNS: {
|
|
1281
1281
|
fetchAdminFreelancers: string;
|
|
1282
|
+
exportAdminFreelancers: string;
|
|
1282
1283
|
};
|
|
1283
1284
|
|
|
1284
1285
|
declare const CLIENT_ADMIN_PATTERNS: {
|
|
1285
1286
|
fetchAdminClients: string;
|
|
1287
|
+
exportAdminClients: string;
|
|
1286
1288
|
};
|
|
1287
1289
|
|
|
1288
1290
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
package/dist/index.js
CHANGED
|
@@ -2840,12 +2840,14 @@ __decorateClass([
|
|
|
2840
2840
|
|
|
2841
2841
|
// src/modules/freelancer-admin/pattern/pattern.ts
|
|
2842
2842
|
var FREELANCER_ADMIN_PATTERNS = {
|
|
2843
|
-
fetchAdminFreelancers: "fetch.admin.freelancers"
|
|
2843
|
+
fetchAdminFreelancers: "fetch.admin.freelancers",
|
|
2844
|
+
exportAdminFreelancers: "export.admin.freelancers"
|
|
2844
2845
|
};
|
|
2845
2846
|
|
|
2846
2847
|
// src/modules/client-admin/pattern/pattern.ts
|
|
2847
2848
|
var CLIENT_ADMIN_PATTERNS = {
|
|
2848
|
-
fetchAdminClients: "fetch.admin.clients"
|
|
2849
|
+
fetchAdminClients: "fetch.admin.clients",
|
|
2850
|
+
exportAdminClients: "export.admin.clients"
|
|
2849
2851
|
};
|
|
2850
2852
|
|
|
2851
2853
|
// src/adapters/tcp/user.tcp.adapter.ts
|
package/dist/index.mjs
CHANGED
|
@@ -2914,12 +2914,14 @@ __decorateClass([
|
|
|
2914
2914
|
|
|
2915
2915
|
// src/modules/freelancer-admin/pattern/pattern.ts
|
|
2916
2916
|
var FREELANCER_ADMIN_PATTERNS = {
|
|
2917
|
-
fetchAdminFreelancers: "fetch.admin.freelancers"
|
|
2917
|
+
fetchAdminFreelancers: "fetch.admin.freelancers",
|
|
2918
|
+
exportAdminFreelancers: "export.admin.freelancers"
|
|
2918
2919
|
};
|
|
2919
2920
|
|
|
2920
2921
|
// src/modules/client-admin/pattern/pattern.ts
|
|
2921
2922
|
var CLIENT_ADMIN_PATTERNS = {
|
|
2922
|
-
fetchAdminClients: "fetch.admin.clients"
|
|
2923
|
+
fetchAdminClients: "fetch.admin.clients",
|
|
2924
|
+
exportAdminClients: "export.admin.clients"
|
|
2923
2925
|
};
|
|
2924
2926
|
|
|
2925
2927
|
// src/adapters/tcp/user.tcp.adapter.ts
|