@experts_hub/shared 1.0.618 → 1.0.620
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/entities/contract-summary.entity.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -8
- package/dist/index.mjs +2 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1636,7 +1636,7 @@ declare class ContractSummary extends BaseEntity {
|
|
|
1636
1636
|
escrowDepositeAmount: number;
|
|
1637
1637
|
status: ContractSummaryStatusEnum;
|
|
1638
1638
|
contracts: Contract[];
|
|
1639
|
-
|
|
1639
|
+
hiring: Hiring;
|
|
1640
1640
|
}
|
|
1641
1641
|
|
|
1642
1642
|
declare enum HiredFreelancerNatureOfWorkEnum {
|
package/dist/index.d.ts
CHANGED
|
@@ -1636,7 +1636,7 @@ declare class ContractSummary extends BaseEntity {
|
|
|
1636
1636
|
escrowDepositeAmount: number;
|
|
1637
1637
|
status: ContractSummaryStatusEnum;
|
|
1638
1638
|
contracts: Contract[];
|
|
1639
|
-
|
|
1639
|
+
hiring: Hiring;
|
|
1640
1640
|
}
|
|
1641
1641
|
|
|
1642
1642
|
declare enum HiredFreelancerNatureOfWorkEnum {
|
package/dist/index.js
CHANGED
|
@@ -4688,7 +4688,7 @@ __decorateClass([
|
|
|
4688
4688
|
], ContractSummary.prototype, "contracts", 2);
|
|
4689
4689
|
__decorateClass([
|
|
4690
4690
|
(0, import_typeorm26.OneToOne)(() => Hiring, (hiring) => hiring.contractSummary)
|
|
4691
|
-
], ContractSummary.prototype, "
|
|
4691
|
+
], ContractSummary.prototype, "hiring", 2);
|
|
4692
4692
|
ContractSummary = __decorateClass([
|
|
4693
4693
|
(0, import_typeorm26.Entity)("contract_summaries")
|
|
4694
4694
|
], ContractSummary);
|
|
@@ -4740,7 +4740,7 @@ __decorateClass([
|
|
|
4740
4740
|
__decorateClass([
|
|
4741
4741
|
(0, import_typeorm27.OneToOne)(
|
|
4742
4742
|
() => ContractSummary,
|
|
4743
|
-
(contractSummary) => contractSummary.
|
|
4743
|
+
(contractSummary) => contractSummary.hiring
|
|
4744
4744
|
),
|
|
4745
4745
|
(0, import_typeorm27.JoinColumn)({ name: "contract_summary_id" })
|
|
4746
4746
|
], Hiring.prototype, "contractSummary", 2);
|
|
@@ -11555,13 +11555,7 @@ var DiscordTransport = class extends import_winston_transport.default {
|
|
|
11555
11555
|
setImmediate(() => {
|
|
11556
11556
|
this.emit("logged", info);
|
|
11557
11557
|
});
|
|
11558
|
-
console.log(`[DiscordTransport] ========== NEW LOG ENTRY ==========`);
|
|
11559
|
-
console.log(`[DiscordTransport] Info object:`, JSON.stringify(info, null, 2));
|
|
11560
|
-
console.log(`[DiscordTransport] Level type:`, typeof info.level);
|
|
11561
|
-
console.log(`[DiscordTransport] Level value:`, info.level);
|
|
11562
|
-
console.log(`[DiscordTransport] Level charCodes:`, info.level ? Array.from(info.level).map((c) => c.charCodeAt(0)) : "N/A");
|
|
11563
11558
|
const shouldLog = this.shouldLog(info.level);
|
|
11564
|
-
console.log(`[DiscordTransport] Final decision - Enabled: ${this.transportOptions.enabled}, ShouldLog: ${shouldLog}`);
|
|
11565
11559
|
if (!this.transportOptions.enabled || !shouldLog) {
|
|
11566
11560
|
console.log(`[DiscordTransport] \u274C Skipping this log entry`);
|
|
11567
11561
|
callback();
|
package/dist/index.mjs
CHANGED
|
@@ -4494,7 +4494,7 @@ __decorateClass([
|
|
|
4494
4494
|
], ContractSummary.prototype, "contracts", 2);
|
|
4495
4495
|
__decorateClass([
|
|
4496
4496
|
OneToOne5(() => Hiring, (hiring) => hiring.contractSummary)
|
|
4497
|
-
], ContractSummary.prototype, "
|
|
4497
|
+
], ContractSummary.prototype, "hiring", 2);
|
|
4498
4498
|
ContractSummary = __decorateClass([
|
|
4499
4499
|
Entity25("contract_summaries")
|
|
4500
4500
|
], ContractSummary);
|
|
@@ -4546,7 +4546,7 @@ __decorateClass([
|
|
|
4546
4546
|
__decorateClass([
|
|
4547
4547
|
OneToOne6(
|
|
4548
4548
|
() => ContractSummary,
|
|
4549
|
-
(contractSummary) => contractSummary.
|
|
4549
|
+
(contractSummary) => contractSummary.hiring
|
|
4550
4550
|
),
|
|
4551
4551
|
JoinColumn25({ name: "contract_summary_id" })
|
|
4552
4552
|
], Hiring.prototype, "contractSummary", 2);
|
|
@@ -11661,13 +11661,7 @@ var DiscordTransport = class extends Transport {
|
|
|
11661
11661
|
setImmediate(() => {
|
|
11662
11662
|
this.emit("logged", info);
|
|
11663
11663
|
});
|
|
11664
|
-
console.log(`[DiscordTransport] ========== NEW LOG ENTRY ==========`);
|
|
11665
|
-
console.log(`[DiscordTransport] Info object:`, JSON.stringify(info, null, 2));
|
|
11666
|
-
console.log(`[DiscordTransport] Level type:`, typeof info.level);
|
|
11667
|
-
console.log(`[DiscordTransport] Level value:`, info.level);
|
|
11668
|
-
console.log(`[DiscordTransport] Level charCodes:`, info.level ? Array.from(info.level).map((c) => c.charCodeAt(0)) : "N/A");
|
|
11669
11664
|
const shouldLog = this.shouldLog(info.level);
|
|
11670
|
-
console.log(`[DiscordTransport] Final decision - Enabled: ${this.transportOptions.enabled}, ShouldLog: ${shouldLog}`);
|
|
11671
11665
|
if (!this.transportOptions.enabled || !shouldLog) {
|
|
11672
11666
|
console.log(`[DiscordTransport] \u274C Skipping this log entry`);
|
|
11673
11667
|
callback();
|