Skip to content

Commit

Permalink
fix: Remove unused endpoint' field from valtownMetaSchema (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeesha authored Dec 31, 2024
1 parent 27d9fd6 commit c896645
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion control-plane/src/modules/integrations/valtown.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ describe("Val.town Integration", () => {
describe("fetchValTownMeta", () => {
it("should fetch and parse metadata", async () => {
const mockMeta = {
endpoint: "https://api.val.town",
description: "Test description",
functions: [
{
Expand Down
1 change: 0 additions & 1 deletion control-plane/src/modules/integrations/valtown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { createSign } from "crypto";

// Schema for the /meta endpoint response
const valtownMetaSchema = z.object({
endpoint: z.string().url(),
description: z.string(),
functions: z.array(
z.object({
Expand Down

0 comments on commit c896645

Please sign in to comment.