@experts_hub/shared 1.0.259 → 1.0.260
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.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4774,7 +4774,9 @@ __decorateClass([
|
|
|
4774
4774
|
JobFreelancerRecommendation = __decorateClass([
|
|
4775
4775
|
(0, import_typeorm44.ViewEntity)({
|
|
4776
4776
|
name: "job_freelancer_recommendations",
|
|
4777
|
-
materialized: true
|
|
4777
|
+
materialized: true,
|
|
4778
|
+
synchronize: false
|
|
4779
|
+
// ✅ important: prevent auto-sync during migrations
|
|
4778
4780
|
})
|
|
4779
4781
|
], JobFreelancerRecommendation);
|
|
4780
4782
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -4926,7 +4926,9 @@ __decorateClass([
|
|
|
4926
4926
|
JobFreelancerRecommendation = __decorateClass([
|
|
4927
4927
|
ViewEntity({
|
|
4928
4928
|
name: "job_freelancer_recommendations",
|
|
4929
|
-
materialized: true
|
|
4929
|
+
materialized: true,
|
|
4930
|
+
synchronize: false
|
|
4931
|
+
// ✅ important: prevent auto-sync during migrations
|
|
4930
4932
|
})
|
|
4931
4933
|
], JobFreelancerRecommendation);
|
|
4932
4934
|
export {
|