revxl-devtools 1.0.1 → 1.0.2
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/checkout/index.html +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/checkout/index.html
CHANGED
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
|
|
183
183
|
<script>
|
|
184
184
|
// Replace with your Stripe Payment Link URL
|
|
185
|
-
const STRIPE_PAYMENT_LINK = '
|
|
185
|
+
const STRIPE_PAYMENT_LINK = 'https://buy.stripe.com/28E14pfy1g5X1nz9HHgbm0s';
|
|
186
186
|
|
|
187
187
|
document.getElementById('checkout-btn').addEventListener('click', function (e) {
|
|
188
188
|
if (STRIPE_PAYMENT_LINK && STRIPE_PAYMENT_LINK !== '#') {
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ export { registerTool, getToolByName, getAllTools };
|
|
|
9
9
|
// ---------------------------------------------------------------------------
|
|
10
10
|
// MCP Server
|
|
11
11
|
// ---------------------------------------------------------------------------
|
|
12
|
-
const PURCHASE_URL = "https://
|
|
12
|
+
const PURCHASE_URL = "https://buy.stripe.com/28E14pfy1g5X1nz9HHgbm0s";
|
|
13
13
|
const server = new Server({ name: "@revxl/devtools", version: "1.0.0" }, { capabilities: { tools: {} } });
|
|
14
14
|
// --- ListTools ------------------------------------------------------------
|
|
15
15
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type { ToolDefinition };
|
|
|
26
26
|
// MCP Server
|
|
27
27
|
// ---------------------------------------------------------------------------
|
|
28
28
|
|
|
29
|
-
const PURCHASE_URL = "https://
|
|
29
|
+
const PURCHASE_URL = "https://buy.stripe.com/28E14pfy1g5X1nz9HHgbm0s";
|
|
30
30
|
|
|
31
31
|
const server = new Server(
|
|
32
32
|
{ name: "@revxl/devtools", version: "1.0.0" },
|