@firfi/huly-mcp 0.9.2 → 0.9.3
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.cjs +24 -22
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -150602,6 +150602,7 @@ var Email = Schema_exports.NonEmptyString.pipe(
|
|
|
150602
150602
|
);
|
|
150603
150603
|
var StatusName = NonEmptyString2.pipe(Schema_exports.brand("StatusName"));
|
|
150604
150604
|
var PersonName = NonEmptyString2.pipe(Schema_exports.brand("PersonName"));
|
|
150605
|
+
var PersonRefInput = Schema_exports.Union(Email, PersonName);
|
|
150605
150606
|
var ComponentLabel = NonEmptyString2.pipe(Schema_exports.brand("ComponentLabel"));
|
|
150606
150607
|
var MilestoneLabel = NonEmptyString2.pipe(Schema_exports.brand("MilestoneLabel"));
|
|
150607
150608
|
var ChannelName = NonEmptyString2.pipe(Schema_exports.brand("ChannelName"));
|
|
@@ -151042,8 +151043,8 @@ var ListLeadsParamsBase = Schema_exports.Struct({
|
|
|
151042
151043
|
status: Schema_exports.optional(StatusName.annotations({
|
|
151043
151044
|
description: "Filter by status name"
|
|
151044
151045
|
})),
|
|
151045
|
-
assignee: Schema_exports.optional(
|
|
151046
|
-
description: "Filter by assignee email"
|
|
151046
|
+
assignee: Schema_exports.optional(PersonRefInput.annotations({
|
|
151047
|
+
description: "Filter by assignee email or display name"
|
|
151047
151048
|
})),
|
|
151048
151049
|
titleSearch: Schema_exports.optional(Schema_exports.String.annotations({
|
|
151049
151050
|
description: "Search leads by title substring (case-insensitive)"
|
|
@@ -171275,7 +171276,7 @@ var PostHog = class extends PostHogBackendClient {
|
|
|
171275
171276
|
};
|
|
171276
171277
|
|
|
171277
171278
|
// src/version.ts
|
|
171278
|
-
var VERSION = true ? "0.9.
|
|
171279
|
+
var VERSION = true ? "0.9.3" : "0.0.0-dev";
|
|
171279
171280
|
|
|
171280
171281
|
// src/telemetry/posthog.ts
|
|
171281
171282
|
var POSTHOG_API_KEY = "phc_TGfFqCGdnF0p68wuFzd5WSw1IsBvOJW0YgoMJDyZPjm";
|
|
@@ -171705,6 +171706,7 @@ var tracker = require_lib36().default;
|
|
|
171705
171706
|
var optionalTimestamp = (value3) => value3 === void 0 ? void 0 : Timestamp.make(value3);
|
|
171706
171707
|
var optionalNullableTimestamp = (value3) => value3 === void 0 || value3 === null ? value3 : Timestamp.make(value3);
|
|
171707
171708
|
var optionalActivityCount = (value3) => value3 === void 0 ? void 0 : ActivityCount.make(value3);
|
|
171709
|
+
var optionalPersonId = (value3) => value3 === void 0 || value3 === "" ? void 0 : PersonId.make(value3);
|
|
171708
171710
|
var serverPopulatedCreateBy = "";
|
|
171709
171711
|
var listActivity = (params) => Effect_exports.gen(function* () {
|
|
171710
171712
|
const client = yield* HulyClient;
|
|
@@ -171800,7 +171802,7 @@ var listReactions = (params) => Effect_exports.gen(function* () {
|
|
|
171800
171802
|
id: ReactionId.make(r._id),
|
|
171801
171803
|
messageId: ActivityMessageId.make(r.attachedTo),
|
|
171802
171804
|
emoji: EmojiCode.make(r.emoji),
|
|
171803
|
-
createdBy:
|
|
171805
|
+
createdBy: optionalPersonId(r.createBy)
|
|
171804
171806
|
}));
|
|
171805
171807
|
return result;
|
|
171806
171808
|
});
|
|
@@ -174751,8 +174753,8 @@ var ListIssuesParamsBase = Schema_exports.Struct({
|
|
|
174751
174753
|
status: Schema_exports.optional(StatusName.annotations({
|
|
174752
174754
|
description: "Filter by status name"
|
|
174753
174755
|
})),
|
|
174754
|
-
assignee: Schema_exports.optional(
|
|
174755
|
-
description: "Filter by assignee email"
|
|
174756
|
+
assignee: Schema_exports.optional(PersonRefInput.annotations({
|
|
174757
|
+
description: "Filter by assignee email or display name"
|
|
174756
174758
|
})),
|
|
174757
174759
|
parentIssue: Schema_exports.optional(IssueIdentifier.annotations({
|
|
174758
174760
|
description: "Filter to children of this parent issue (e.g., 'HULY-42')"
|
|
@@ -174831,8 +174833,8 @@ var CreateIssueParamsSchema = Schema_exports.Struct({
|
|
|
174831
174833
|
priority: Schema_exports.optional(IssuePrioritySchema.annotations({
|
|
174832
174834
|
description: "Issue priority (urgent, high, medium, low, no-priority)"
|
|
174833
174835
|
})),
|
|
174834
|
-
assignee: Schema_exports.optional(
|
|
174835
|
-
description: "Assignee email address"
|
|
174836
|
+
assignee: Schema_exports.optional(PersonRefInput.annotations({
|
|
174837
|
+
description: "Assignee email address or display name"
|
|
174836
174838
|
})),
|
|
174837
174839
|
status: Schema_exports.optional(StatusName.annotations({
|
|
174838
174840
|
description: "Initial status (uses project default if not specified)"
|
|
@@ -174869,8 +174871,8 @@ var UpdateIssueParamsSchema = Schema_exports.Struct({
|
|
|
174869
174871
|
description: "New issue priority"
|
|
174870
174872
|
})),
|
|
174871
174873
|
assignee: Schema_exports.optional(
|
|
174872
|
-
Schema_exports.NullOr(
|
|
174873
|
-
description: "New assignee email (null to unassign)"
|
|
174874
|
+
Schema_exports.NullOr(PersonRefInput).annotations({
|
|
174875
|
+
description: "New assignee email or display name (null to unassign)"
|
|
174874
174876
|
})
|
|
174875
174877
|
),
|
|
174876
174878
|
status: Schema_exports.optional(StatusName.annotations({
|
|
@@ -175023,8 +175025,8 @@ var CreateComponentParamsSchema = Schema_exports.Struct({
|
|
|
175023
175025
|
description: Schema_exports.optional(Schema_exports.String.annotations({
|
|
175024
175026
|
description: "Component description (markdown supported)"
|
|
175025
175027
|
})),
|
|
175026
|
-
lead: Schema_exports.optional(
|
|
175027
|
-
description: "Lead person email address"
|
|
175028
|
+
lead: Schema_exports.optional(PersonRefInput.annotations({
|
|
175029
|
+
description: "Lead person email address or display name"
|
|
175028
175030
|
}))
|
|
175029
175031
|
}).annotations({
|
|
175030
175032
|
title: "CreateComponentParams",
|
|
@@ -175044,8 +175046,8 @@ var UpdateComponentParamsSchema = Schema_exports.Struct({
|
|
|
175044
175046
|
description: "New component description (markdown supported)"
|
|
175045
175047
|
})),
|
|
175046
175048
|
lead: Schema_exports.optional(
|
|
175047
|
-
Schema_exports.NullOr(
|
|
175048
|
-
description: "New lead person email (null to unassign)"
|
|
175049
|
+
Schema_exports.NullOr(PersonRefInput).annotations({
|
|
175050
|
+
description: "New lead person email or display name (null to unassign)"
|
|
175049
175051
|
})
|
|
175050
175052
|
)
|
|
175051
175053
|
}).annotations({
|
|
@@ -175307,8 +175309,8 @@ var ChildTemplateFieldsSchema = Schema_exports.Struct({
|
|
|
175307
175309
|
priority: Schema_exports.optional(IssuePrioritySchema.annotations({
|
|
175308
175310
|
description: "Child default priority"
|
|
175309
175311
|
})),
|
|
175310
|
-
assignee: Schema_exports.optional(
|
|
175311
|
-
description: "Child default assignee email"
|
|
175312
|
+
assignee: Schema_exports.optional(PersonRefInput.annotations({
|
|
175313
|
+
description: "Child default assignee email or display name"
|
|
175312
175314
|
})),
|
|
175313
175315
|
component: Schema_exports.optional(ComponentIdentifier.annotations({
|
|
175314
175316
|
description: "Child default component ID or label"
|
|
@@ -175384,8 +175386,8 @@ var CreateIssueTemplateParamsSchema = Schema_exports.Struct({
|
|
|
175384
175386
|
priority: Schema_exports.optional(IssuePrioritySchema.annotations({
|
|
175385
175387
|
description: "Default priority for issues created from this template"
|
|
175386
175388
|
})),
|
|
175387
|
-
assignee: Schema_exports.optional(
|
|
175388
|
-
description: "Default assignee email address"
|
|
175389
|
+
assignee: Schema_exports.optional(PersonRefInput.annotations({
|
|
175390
|
+
description: "Default assignee email address or display name"
|
|
175389
175391
|
})),
|
|
175390
175392
|
component: Schema_exports.optional(ComponentIdentifier.annotations({
|
|
175391
175393
|
description: "Default component ID or label"
|
|
@@ -175418,8 +175420,8 @@ var CreateIssueFromTemplateParamsSchema = Schema_exports.Struct({
|
|
|
175418
175420
|
priority: Schema_exports.optional(IssuePrioritySchema.annotations({
|
|
175419
175421
|
description: "Override priority"
|
|
175420
175422
|
})),
|
|
175421
|
-
assignee: Schema_exports.optional(
|
|
175422
|
-
description: "Override assignee email"
|
|
175423
|
+
assignee: Schema_exports.optional(PersonRefInput.annotations({
|
|
175424
|
+
description: "Override assignee email or display name"
|
|
175423
175425
|
})),
|
|
175424
175426
|
status: Schema_exports.optional(StatusName.annotations({
|
|
175425
175427
|
description: "Initial status (uses project default if not specified)"
|
|
@@ -175448,8 +175450,8 @@ var UpdateIssueTemplateParamsSchema = Schema_exports.Struct({
|
|
|
175448
175450
|
description: "New default priority"
|
|
175449
175451
|
})),
|
|
175450
175452
|
assignee: Schema_exports.optional(
|
|
175451
|
-
Schema_exports.NullOr(
|
|
175452
|
-
description: "New default assignee email (null to unassign)"
|
|
175453
|
+
Schema_exports.NullOr(PersonRefInput).annotations({
|
|
175454
|
+
description: "New default assignee email or display name (null to unassign)"
|
|
175453
175455
|
})
|
|
175454
175456
|
),
|
|
175455
175457
|
component: Schema_exports.optional(
|