lemonsqueezy-mcp-server 1.0.0
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/ENV_EXAMPLE.md +83 -0
- package/LICENSE +21 -0
- package/README.md +141 -0
- package/SETUP.md +244 -0
- package/dist/config.d.ts +25 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +80 -0
- package/dist/config.js.map +1 -0
- package/dist/config.test.d.ts +2 -0
- package/dist/config.test.d.ts.map +1 -0
- package/dist/config.test.js +55 -0
- package/dist/config.test.js.map +1 -0
- package/dist/connections/firebase.d.ts +3 -0
- package/dist/connections/firebase.d.ts.map +1 -0
- package/dist/connections/firebase.js +62 -0
- package/dist/connections/firebase.js.map +1 -0
- package/dist/connections/salesforce.d.ts +3 -0
- package/dist/connections/salesforce.d.ts.map +1 -0
- package/dist/connections/salesforce.js +307 -0
- package/dist/connections/salesforce.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +101 -0
- package/dist/index.js.map +1 -0
- package/dist/resources/payment-context.d.ts +14 -0
- package/dist/resources/payment-context.d.ts.map +1 -0
- package/dist/resources/payment-context.js +111 -0
- package/dist/resources/payment-context.js.map +1 -0
- package/dist/server.d.ts +36 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +14 -0
- package/dist/server.js.map +1 -0
- package/dist/sync-last-purchase.d.ts +3 -0
- package/dist/sync-last-purchase.d.ts.map +1 -0
- package/dist/sync-last-purchase.js +113 -0
- package/dist/sync-last-purchase.js.map +1 -0
- package/dist/tools/definitions.d.ts +3768 -0
- package/dist/tools/definitions.d.ts.map +1 -0
- package/dist/tools/definitions.js +753 -0
- package/dist/tools/definitions.js.map +1 -0
- package/dist/tools/handlers/analytics.d.ts +21 -0
- package/dist/tools/handlers/analytics.d.ts.map +1 -0
- package/dist/tools/handlers/analytics.js +398 -0
- package/dist/tools/handlers/analytics.js.map +1 -0
- package/dist/tools/handlers/lemonsqueezy.d.ts +436 -0
- package/dist/tools/handlers/lemonsqueezy.d.ts.map +1 -0
- package/dist/tools/handlers/lemonsqueezy.js +481 -0
- package/dist/tools/handlers/lemonsqueezy.js.map +1 -0
- package/dist/tools/handlers/salesforce.d.ts +13 -0
- package/dist/tools/handlers/salesforce.d.ts.map +1 -0
- package/dist/tools/handlers/salesforce.js +54 -0
- package/dist/tools/handlers/salesforce.js.map +1 -0
- package/dist/tools/handlers/vos.d.ts +26 -0
- package/dist/tools/handlers/vos.d.ts.map +1 -0
- package/dist/tools/handlers/vos.js +207 -0
- package/dist/tools/handlers/vos.js.map +1 -0
- package/dist/tools/index.d.ts +7 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +202 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/types.d.ts +24 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/utils/logger.d.ts +3 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +8 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/response.d.ts +14 -0
- package/dist/utils/response.d.ts.map +1 -0
- package/dist/utils/response.js +17 -0
- package/dist/utils/response.js.map +1 -0
- package/dist/utils/retry.d.ts +11 -0
- package/dist/utils/retry.d.ts.map +1 -0
- package/dist/utils/retry.js +36 -0
- package/dist/utils/retry.js.map +1 -0
- package/dist/utils/secrets/provider.d.ts +30 -0
- package/dist/utils/secrets/provider.d.ts.map +1 -0
- package/dist/utils/secrets/provider.js +51 -0
- package/dist/utils/secrets/provider.js.map +1 -0
- package/dist/utils/secrets.d.ts +7 -0
- package/dist/utils/secrets.d.ts.map +1 -0
- package/dist/utils/secrets.js +16 -0
- package/dist/utils/secrets.js.map +1 -0
- package/dist/utils/validation.d.ts +580 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +250 -0
- package/dist/utils/validation.js.map +1 -0
- package/dist/webhooks/listener.d.ts +17 -0
- package/dist/webhooks/listener.d.ts.map +1 -0
- package/dist/webhooks/listener.js +140 -0
- package/dist/webhooks/listener.js.map +1 -0
- package/dist/webhooks/ngrok.d.ts +8 -0
- package/dist/webhooks/ngrok.d.ts.map +1 -0
- package/dist/webhooks/ngrok.js +50 -0
- package/dist/webhooks/ngrok.js.map +1 -0
- package/package.json +68 -0
|
@@ -0,0 +1,436 @@
|
|
|
1
|
+
export declare function handleGetStore(args: {
|
|
2
|
+
storeId: number;
|
|
3
|
+
}): Promise<{
|
|
4
|
+
content: {
|
|
5
|
+
type: "text";
|
|
6
|
+
text: string;
|
|
7
|
+
}[];
|
|
8
|
+
}>;
|
|
9
|
+
export declare function handleListStores(args: {
|
|
10
|
+
page?: number;
|
|
11
|
+
}): Promise<{
|
|
12
|
+
content: {
|
|
13
|
+
type: "text";
|
|
14
|
+
text: string;
|
|
15
|
+
}[];
|
|
16
|
+
}>;
|
|
17
|
+
export declare function handleGetCustomer(args: {
|
|
18
|
+
customerId: number;
|
|
19
|
+
}): Promise<{
|
|
20
|
+
content: {
|
|
21
|
+
type: "text";
|
|
22
|
+
text: string;
|
|
23
|
+
}[];
|
|
24
|
+
}>;
|
|
25
|
+
export declare function handleListCustomers(args: {
|
|
26
|
+
email?: string;
|
|
27
|
+
page?: number;
|
|
28
|
+
}): Promise<{
|
|
29
|
+
content: {
|
|
30
|
+
type: "text";
|
|
31
|
+
text: string;
|
|
32
|
+
}[];
|
|
33
|
+
}>;
|
|
34
|
+
export declare function handleCreateCustomer(args: {
|
|
35
|
+
storeId: number;
|
|
36
|
+
name: string;
|
|
37
|
+
email: string;
|
|
38
|
+
city?: string;
|
|
39
|
+
country?: string;
|
|
40
|
+
region?: string;
|
|
41
|
+
}): Promise<{
|
|
42
|
+
content: {
|
|
43
|
+
type: "text";
|
|
44
|
+
text: string;
|
|
45
|
+
}[];
|
|
46
|
+
}>;
|
|
47
|
+
export declare function handleUpdateCustomer(args: {
|
|
48
|
+
customerId: number;
|
|
49
|
+
name?: string;
|
|
50
|
+
email?: string;
|
|
51
|
+
city?: string;
|
|
52
|
+
country?: string;
|
|
53
|
+
region?: string;
|
|
54
|
+
}): Promise<{
|
|
55
|
+
content: {
|
|
56
|
+
type: "text";
|
|
57
|
+
text: string;
|
|
58
|
+
}[];
|
|
59
|
+
}>;
|
|
60
|
+
export declare function handleArchiveCustomer(args: {
|
|
61
|
+
customerId: number;
|
|
62
|
+
}): Promise<{
|
|
63
|
+
content: {
|
|
64
|
+
type: "text";
|
|
65
|
+
text: string;
|
|
66
|
+
}[];
|
|
67
|
+
}>;
|
|
68
|
+
export declare function handleGetProduct(args: {
|
|
69
|
+
productId: number;
|
|
70
|
+
}): Promise<{
|
|
71
|
+
content: {
|
|
72
|
+
type: "text";
|
|
73
|
+
text: string;
|
|
74
|
+
}[];
|
|
75
|
+
}>;
|
|
76
|
+
export declare function handleListProducts(args: {
|
|
77
|
+
storeId?: number;
|
|
78
|
+
page?: number;
|
|
79
|
+
}): Promise<{
|
|
80
|
+
content: {
|
|
81
|
+
type: "text";
|
|
82
|
+
text: string;
|
|
83
|
+
}[];
|
|
84
|
+
}>;
|
|
85
|
+
export declare function handleGetVariant(args: {
|
|
86
|
+
variantId: number;
|
|
87
|
+
}): Promise<{
|
|
88
|
+
content: {
|
|
89
|
+
type: "text";
|
|
90
|
+
text: string;
|
|
91
|
+
}[];
|
|
92
|
+
}>;
|
|
93
|
+
export declare function handleListVariants(args: {
|
|
94
|
+
productId?: number;
|
|
95
|
+
page?: number;
|
|
96
|
+
}): Promise<{
|
|
97
|
+
content: {
|
|
98
|
+
type: "text";
|
|
99
|
+
text: string;
|
|
100
|
+
}[];
|
|
101
|
+
}>;
|
|
102
|
+
export declare function handleGetOrder(args: {
|
|
103
|
+
orderId: number;
|
|
104
|
+
}): Promise<{
|
|
105
|
+
content: {
|
|
106
|
+
type: "text";
|
|
107
|
+
text: string;
|
|
108
|
+
}[];
|
|
109
|
+
}>;
|
|
110
|
+
export declare function handleListOrders(args: {
|
|
111
|
+
page?: number;
|
|
112
|
+
storeId?: number;
|
|
113
|
+
}): Promise<{
|
|
114
|
+
content: {
|
|
115
|
+
type: "text";
|
|
116
|
+
text: string;
|
|
117
|
+
}[];
|
|
118
|
+
}>;
|
|
119
|
+
export declare function handleSearchOrders(args: {
|
|
120
|
+
userEmail: string;
|
|
121
|
+
}): Promise<{
|
|
122
|
+
content: {
|
|
123
|
+
type: "text";
|
|
124
|
+
text: string;
|
|
125
|
+
}[];
|
|
126
|
+
}>;
|
|
127
|
+
export declare function handleGetOrderItem(args: {
|
|
128
|
+
orderItemId: number;
|
|
129
|
+
}): Promise<{
|
|
130
|
+
content: {
|
|
131
|
+
type: "text";
|
|
132
|
+
text: string;
|
|
133
|
+
}[];
|
|
134
|
+
}>;
|
|
135
|
+
export declare function handleListOrderItems(args: {
|
|
136
|
+
orderId?: number;
|
|
137
|
+
page?: number;
|
|
138
|
+
}): Promise<{
|
|
139
|
+
content: {
|
|
140
|
+
type: "text";
|
|
141
|
+
text: string;
|
|
142
|
+
}[];
|
|
143
|
+
}>;
|
|
144
|
+
export declare function handleGenerateOrderInvoice(args: {
|
|
145
|
+
orderId: number;
|
|
146
|
+
name?: string;
|
|
147
|
+
email?: string;
|
|
148
|
+
address?: string;
|
|
149
|
+
city?: string;
|
|
150
|
+
state?: string;
|
|
151
|
+
zip?: string;
|
|
152
|
+
country?: string;
|
|
153
|
+
}): Promise<{
|
|
154
|
+
content: {
|
|
155
|
+
type: "text";
|
|
156
|
+
text: string;
|
|
157
|
+
}[];
|
|
158
|
+
}>;
|
|
159
|
+
export declare function handleIssueOrderRefund(args: {
|
|
160
|
+
orderId: number;
|
|
161
|
+
amount: number;
|
|
162
|
+
}): Promise<{
|
|
163
|
+
content: {
|
|
164
|
+
type: "text";
|
|
165
|
+
text: string;
|
|
166
|
+
}[];
|
|
167
|
+
}>;
|
|
168
|
+
export declare function handleGetSubscription(args: {
|
|
169
|
+
subscriptionId: number;
|
|
170
|
+
}): Promise<{
|
|
171
|
+
content: {
|
|
172
|
+
type: "text";
|
|
173
|
+
text: string;
|
|
174
|
+
}[];
|
|
175
|
+
}>;
|
|
176
|
+
export declare function handleListSubscriptions(args: {
|
|
177
|
+
storeId?: number;
|
|
178
|
+
page?: number;
|
|
179
|
+
}): Promise<{
|
|
180
|
+
content: {
|
|
181
|
+
type: "text";
|
|
182
|
+
text: string;
|
|
183
|
+
}[];
|
|
184
|
+
}>;
|
|
185
|
+
export declare function handleUpdateSubscription(args: {
|
|
186
|
+
subscriptionId: number;
|
|
187
|
+
variantId?: number;
|
|
188
|
+
productId?: number;
|
|
189
|
+
billingAnchor?: number;
|
|
190
|
+
}): Promise<{
|
|
191
|
+
content: {
|
|
192
|
+
type: "text";
|
|
193
|
+
text: string;
|
|
194
|
+
}[];
|
|
195
|
+
}>;
|
|
196
|
+
export declare function handleCancelSubscription(args: {
|
|
197
|
+
subscriptionId: number;
|
|
198
|
+
}): Promise<{
|
|
199
|
+
content: {
|
|
200
|
+
type: "text";
|
|
201
|
+
text: string;
|
|
202
|
+
}[];
|
|
203
|
+
}>;
|
|
204
|
+
export declare function handleGetSubscriptionItem(args: {
|
|
205
|
+
subscriptionItemId: number;
|
|
206
|
+
}): Promise<{
|
|
207
|
+
content: {
|
|
208
|
+
type: "text";
|
|
209
|
+
text: string;
|
|
210
|
+
}[];
|
|
211
|
+
}>;
|
|
212
|
+
export declare function handleListSubscriptionItems(args: {
|
|
213
|
+
subscriptionId?: number;
|
|
214
|
+
page?: number;
|
|
215
|
+
}): Promise<{
|
|
216
|
+
content: {
|
|
217
|
+
type: "text";
|
|
218
|
+
text: string;
|
|
219
|
+
}[];
|
|
220
|
+
}>;
|
|
221
|
+
export declare function handleGetSubscriptionItemUsage(args: {
|
|
222
|
+
subscriptionItemId: number;
|
|
223
|
+
}): Promise<{
|
|
224
|
+
content: {
|
|
225
|
+
type: "text";
|
|
226
|
+
text: string;
|
|
227
|
+
}[];
|
|
228
|
+
}>;
|
|
229
|
+
export declare function handleGetSubscriptionInvoice(args: {
|
|
230
|
+
subscriptionInvoiceId: number;
|
|
231
|
+
}): Promise<{
|
|
232
|
+
content: {
|
|
233
|
+
type: "text";
|
|
234
|
+
text: string;
|
|
235
|
+
}[];
|
|
236
|
+
}>;
|
|
237
|
+
export declare function handleListSubscriptionInvoices(args: {
|
|
238
|
+
subscriptionId?: number;
|
|
239
|
+
page?: number;
|
|
240
|
+
}): Promise<{
|
|
241
|
+
content: {
|
|
242
|
+
type: "text";
|
|
243
|
+
text: string;
|
|
244
|
+
}[];
|
|
245
|
+
}>;
|
|
246
|
+
export declare function handleGenerateSubscriptionInvoice(args: {
|
|
247
|
+
subscriptionInvoiceId: number;
|
|
248
|
+
}): Promise<{
|
|
249
|
+
content: {
|
|
250
|
+
type: "text";
|
|
251
|
+
text: string;
|
|
252
|
+
}[];
|
|
253
|
+
}>;
|
|
254
|
+
export declare function handleIssueSubscriptionInvoiceRefund(args: {
|
|
255
|
+
subscriptionInvoiceId: number;
|
|
256
|
+
amount: number;
|
|
257
|
+
}): Promise<{
|
|
258
|
+
content: {
|
|
259
|
+
type: "text";
|
|
260
|
+
text: string;
|
|
261
|
+
}[];
|
|
262
|
+
}>;
|
|
263
|
+
export declare function handleGetDiscount(args: {
|
|
264
|
+
discountId: number;
|
|
265
|
+
}): Promise<{
|
|
266
|
+
content: {
|
|
267
|
+
type: "text";
|
|
268
|
+
text: string;
|
|
269
|
+
}[];
|
|
270
|
+
}>;
|
|
271
|
+
export declare function handleListDiscounts(args: {
|
|
272
|
+
storeId?: number;
|
|
273
|
+
page?: number;
|
|
274
|
+
}): Promise<{
|
|
275
|
+
content: {
|
|
276
|
+
type: "text";
|
|
277
|
+
text: string;
|
|
278
|
+
}[];
|
|
279
|
+
}>;
|
|
280
|
+
export declare function handleCreateDiscount(args: {
|
|
281
|
+
storeId: number;
|
|
282
|
+
name: string;
|
|
283
|
+
code: string;
|
|
284
|
+
amount: number;
|
|
285
|
+
amountType: string;
|
|
286
|
+
duration: string;
|
|
287
|
+
durationInMonths?: number;
|
|
288
|
+
}): Promise<{
|
|
289
|
+
content: {
|
|
290
|
+
type: "text";
|
|
291
|
+
text: string;
|
|
292
|
+
}[];
|
|
293
|
+
}>;
|
|
294
|
+
export declare function handleDeleteDiscount(args: {
|
|
295
|
+
discountId: number;
|
|
296
|
+
}): Promise<{
|
|
297
|
+
content: {
|
|
298
|
+
type: "text";
|
|
299
|
+
text: string;
|
|
300
|
+
}[];
|
|
301
|
+
}>;
|
|
302
|
+
export declare function handleGetLicenseKey(args: {
|
|
303
|
+
licenseKeyId: number;
|
|
304
|
+
}): Promise<{
|
|
305
|
+
content: {
|
|
306
|
+
type: "text";
|
|
307
|
+
text: string;
|
|
308
|
+
}[];
|
|
309
|
+
}>;
|
|
310
|
+
export declare function handleListLicenseKeys(args: {
|
|
311
|
+
storeId?: number;
|
|
312
|
+
orderId?: number;
|
|
313
|
+
page?: number;
|
|
314
|
+
}): Promise<{
|
|
315
|
+
content: {
|
|
316
|
+
type: "text";
|
|
317
|
+
text: string;
|
|
318
|
+
}[];
|
|
319
|
+
}>;
|
|
320
|
+
export declare function handleUpdateLicenseKey(args: {
|
|
321
|
+
licenseKeyId: number;
|
|
322
|
+
status?: string;
|
|
323
|
+
}): Promise<{
|
|
324
|
+
content: {
|
|
325
|
+
type: "text";
|
|
326
|
+
text: string;
|
|
327
|
+
}[];
|
|
328
|
+
}>;
|
|
329
|
+
export declare function handleGetFile(args: {
|
|
330
|
+
fileId: number;
|
|
331
|
+
}): Promise<{
|
|
332
|
+
content: {
|
|
333
|
+
type: "text";
|
|
334
|
+
text: string;
|
|
335
|
+
}[];
|
|
336
|
+
}>;
|
|
337
|
+
export declare function handleListFiles(args: {
|
|
338
|
+
productId?: number;
|
|
339
|
+
variantId?: number;
|
|
340
|
+
page?: number;
|
|
341
|
+
}): Promise<{
|
|
342
|
+
content: {
|
|
343
|
+
type: "text";
|
|
344
|
+
text: string;
|
|
345
|
+
}[];
|
|
346
|
+
}>;
|
|
347
|
+
export declare function handleGetUsageRecord(args: {
|
|
348
|
+
usageRecordId: number;
|
|
349
|
+
}): Promise<{
|
|
350
|
+
content: {
|
|
351
|
+
type: "text";
|
|
352
|
+
text: string;
|
|
353
|
+
}[];
|
|
354
|
+
}>;
|
|
355
|
+
export declare function handleListUsageRecords(args: {
|
|
356
|
+
subscriptionItemId?: number;
|
|
357
|
+
page?: number;
|
|
358
|
+
}): Promise<{
|
|
359
|
+
content: {
|
|
360
|
+
type: "text";
|
|
361
|
+
text: string;
|
|
362
|
+
}[];
|
|
363
|
+
}>;
|
|
364
|
+
export declare function handleCreateUsageRecord(args: {
|
|
365
|
+
subscriptionItemId: number;
|
|
366
|
+
quantity: number;
|
|
367
|
+
action: string;
|
|
368
|
+
}): Promise<{
|
|
369
|
+
content: {
|
|
370
|
+
type: "text";
|
|
371
|
+
text: string;
|
|
372
|
+
}[];
|
|
373
|
+
}>;
|
|
374
|
+
export declare function handleCreateCheckout(args: {
|
|
375
|
+
storeId: number;
|
|
376
|
+
variantId: number;
|
|
377
|
+
customPrice?: number;
|
|
378
|
+
productOptions?: any;
|
|
379
|
+
checkoutOptions?: any;
|
|
380
|
+
checkoutData?: any;
|
|
381
|
+
preview?: boolean;
|
|
382
|
+
expiresAt?: string;
|
|
383
|
+
}): Promise<{
|
|
384
|
+
content: {
|
|
385
|
+
type: "text";
|
|
386
|
+
text: string;
|
|
387
|
+
}[];
|
|
388
|
+
}>;
|
|
389
|
+
export declare function handleGetWebhook(args: {
|
|
390
|
+
webhookId: number;
|
|
391
|
+
}): Promise<{
|
|
392
|
+
content: {
|
|
393
|
+
type: "text";
|
|
394
|
+
text: string;
|
|
395
|
+
}[];
|
|
396
|
+
}>;
|
|
397
|
+
export declare function handleListWebhooks(args: {
|
|
398
|
+
storeId?: number;
|
|
399
|
+
page?: number;
|
|
400
|
+
}): Promise<{
|
|
401
|
+
content: {
|
|
402
|
+
type: "text";
|
|
403
|
+
text: string;
|
|
404
|
+
}[];
|
|
405
|
+
}>;
|
|
406
|
+
export declare function handleCreateWebhook(args: {
|
|
407
|
+
storeId: number;
|
|
408
|
+
url: string;
|
|
409
|
+
events: string[];
|
|
410
|
+
secret?: string;
|
|
411
|
+
}): Promise<{
|
|
412
|
+
content: {
|
|
413
|
+
type: "text";
|
|
414
|
+
text: string;
|
|
415
|
+
}[];
|
|
416
|
+
}>;
|
|
417
|
+
export declare function handleUpdateWebhook(args: {
|
|
418
|
+
webhookId: number;
|
|
419
|
+
url?: string;
|
|
420
|
+
events?: string[];
|
|
421
|
+
secret?: string;
|
|
422
|
+
}): Promise<{
|
|
423
|
+
content: {
|
|
424
|
+
type: "text";
|
|
425
|
+
text: string;
|
|
426
|
+
}[];
|
|
427
|
+
}>;
|
|
428
|
+
export declare function handleDeleteWebhook(args: {
|
|
429
|
+
webhookId: number;
|
|
430
|
+
}): Promise<{
|
|
431
|
+
content: {
|
|
432
|
+
type: "text";
|
|
433
|
+
text: string;
|
|
434
|
+
}[];
|
|
435
|
+
}>;
|
|
436
|
+
//# sourceMappingURL=lemonsqueezy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lemonsqueezy.d.ts","sourceRoot":"","sources":["../../../src/tools/handlers/lemonsqueezy.ts"],"names":[],"mappings":"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"}
|