From c57cd6b9dd1b4c83bfeebdf6e05401c9ceba1427 Mon Sep 17 00:00:00 2001 From: George Alexiou Date: Thu, 12 Jun 2025 18:17:14 +0100 Subject: [PATCH 1/2] fix: update M2PDF_API_URL to point to the production API endpoint --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 9e3e0c5..ab6ad80 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,4 +1,4 @@ -export const M2PDF_API_URL = "https://qa.api.markdown2pdf.ai"; +export const M2PDF_API_URL = "https://api.markdown2pdf.ai"; export const M2PDF_POLL_INTERVAL = 3000; export const M2PDF_TIMEOUTS = { REQUEST: 10000, From 493736da72e6fc42d79f7c029e53c20739aaf86c Mon Sep 17 00:00:00 2001 From: George Alexiou Date: Thu, 12 Jun 2025 18:17:19 +0100 Subject: [PATCH 2/2] chore: bump version to 0.2.1 in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0a64a9c..26e7e5a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@serendipityai/markdown2pdf-typescript", "displayName": "Typescript client for markdown2pdf.ai", - "version": "0.2.0", + "version": "0.2.1", "description": "⚡ TypeScript client for markdown2pdf.ai - Convert markdown to PDF with Lightning payments", "main": "dist/index.js", "types": "dist/index.d.ts",