@armor/zuora-mcp 0.0.0-development

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.
Files changed (47) hide show
  1. package/.env.example +16 -0
  2. package/README.md +249 -0
  3. package/dist/cli.d.ts +15 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +73 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/config.d.ts +26 -0
  8. package/dist/config.d.ts.map +1 -0
  9. package/dist/config.js +56 -0
  10. package/dist/config.js.map +1 -0
  11. package/dist/index.d.ts +22 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +148 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/prompts.d.ts +11 -0
  16. package/dist/prompts.d.ts.map +1 -0
  17. package/dist/prompts.js +236 -0
  18. package/dist/prompts.js.map +1 -0
  19. package/dist/resources.d.ts +11 -0
  20. package/dist/resources.d.ts.map +1 -0
  21. package/dist/resources.js +526 -0
  22. package/dist/resources.js.map +1 -0
  23. package/dist/setup.d.ts +12 -0
  24. package/dist/setup.d.ts.map +1 -0
  25. package/dist/setup.js +188 -0
  26. package/dist/setup.js.map +1 -0
  27. package/dist/token-manager.d.ts +34 -0
  28. package/dist/token-manager.d.ts.map +1 -0
  29. package/dist/token-manager.js +103 -0
  30. package/dist/token-manager.js.map +1 -0
  31. package/dist/tools.d.ts +1096 -0
  32. package/dist/tools.d.ts.map +1 -0
  33. package/dist/tools.js +2841 -0
  34. package/dist/tools.js.map +1 -0
  35. package/dist/types.d.ts +758 -0
  36. package/dist/types.d.ts.map +1 -0
  37. package/dist/types.js +5 -0
  38. package/dist/types.js.map +1 -0
  39. package/dist/zoql-helpers.d.ts +68 -0
  40. package/dist/zoql-helpers.d.ts.map +1 -0
  41. package/dist/zoql-helpers.js +154 -0
  42. package/dist/zoql-helpers.js.map +1 -0
  43. package/dist/zuora-client.d.ts +184 -0
  44. package/dist/zuora-client.d.ts.map +1 -0
  45. package/dist/zuora-client.js +583 -0
  46. package/dist/zuora-client.js.map +1 -0
  47. package/package.json +60 -0
@@ -0,0 +1,1096 @@
1
+ /**
2
+ * MCP Tool Definitions for Zuora Billing Operations
3
+ * Provides account, invoice, subscription, payment, and ZOQL query tools
4
+ */
5
+ import { z } from "zod";
6
+ import type { ZuoraClient } from "./zuora-client.js";
7
+ import type { ToolResult } from "./types.js";
8
+ export declare const schemas: {
9
+ getAccount: z.ZodObject<{
10
+ accountKey: z.ZodString;
11
+ }, "strip", z.ZodTypeAny, {
12
+ accountKey: string;
13
+ }, {
14
+ accountKey: string;
15
+ }>;
16
+ getAccountSummary: z.ZodObject<{
17
+ accountKey: z.ZodString;
18
+ }, "strip", z.ZodTypeAny, {
19
+ accountKey: string;
20
+ }, {
21
+ accountKey: string;
22
+ }>;
23
+ getInvoice: z.ZodObject<{
24
+ invoiceId: z.ZodString;
25
+ }, "strip", z.ZodTypeAny, {
26
+ invoiceId: string;
27
+ }, {
28
+ invoiceId: string;
29
+ }>;
30
+ listInvoices: z.ZodObject<{
31
+ accountKey: z.ZodString;
32
+ page: z.ZodDefault<z.ZodNumber>;
33
+ pageSize: z.ZodDefault<z.ZodNumber>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ accountKey: string;
36
+ page: number;
37
+ pageSize: number;
38
+ }, {
39
+ accountKey: string;
40
+ page?: number | undefined;
41
+ pageSize?: number | undefined;
42
+ }>;
43
+ getSubscription: z.ZodObject<{
44
+ subscriptionKey: z.ZodString;
45
+ }, "strip", z.ZodTypeAny, {
46
+ subscriptionKey: string;
47
+ }, {
48
+ subscriptionKey: string;
49
+ }>;
50
+ listSubscriptions: z.ZodObject<{
51
+ accountKey: z.ZodString;
52
+ }, "strip", z.ZodTypeAny, {
53
+ accountKey: string;
54
+ }, {
55
+ accountKey: string;
56
+ }>;
57
+ getPayment: z.ZodObject<{
58
+ paymentId: z.ZodString;
59
+ }, "strip", z.ZodTypeAny, {
60
+ paymentId: string;
61
+ }, {
62
+ paymentId: string;
63
+ }>;
64
+ listPayments: z.ZodObject<{
65
+ accountKey: z.ZodOptional<z.ZodString>;
66
+ page: z.ZodDefault<z.ZodNumber>;
67
+ pageSize: z.ZodDefault<z.ZodNumber>;
68
+ }, "strip", z.ZodTypeAny, {
69
+ page: number;
70
+ pageSize: number;
71
+ accountKey?: string | undefined;
72
+ }, {
73
+ accountKey?: string | undefined;
74
+ page?: number | undefined;
75
+ pageSize?: number | undefined;
76
+ }>;
77
+ executeZoqlQuery: z.ZodObject<{
78
+ zoqlQuery: z.ZodEffects<z.ZodString, string, string>;
79
+ }, "strip", z.ZodTypeAny, {
80
+ zoqlQuery: string;
81
+ }, {
82
+ zoqlQuery: string;
83
+ }>;
84
+ continueZoqlQuery: z.ZodObject<{
85
+ queryLocator: z.ZodString;
86
+ }, "strip", z.ZodTypeAny, {
87
+ queryLocator: string;
88
+ }, {
89
+ queryLocator: string;
90
+ }>;
91
+ listProducts: z.ZodObject<{
92
+ page: z.ZodDefault<z.ZodNumber>;
93
+ pageSize: z.ZodDefault<z.ZodNumber>;
94
+ }, "strip", z.ZodTypeAny, {
95
+ page: number;
96
+ pageSize: number;
97
+ }, {
98
+ page?: number | undefined;
99
+ pageSize?: number | undefined;
100
+ }>;
101
+ getInvoiceFiles: z.ZodObject<{
102
+ invoiceId: z.ZodString;
103
+ }, "strip", z.ZodTypeAny, {
104
+ invoiceId: string;
105
+ }, {
106
+ invoiceId: string;
107
+ }>;
108
+ getCreditMemo: z.ZodObject<{
109
+ creditMemoId: z.ZodString;
110
+ }, "strip", z.ZodTypeAny, {
111
+ creditMemoId: string;
112
+ }, {
113
+ creditMemoId: string;
114
+ }>;
115
+ listCreditMemos: z.ZodObject<{
116
+ accountId: z.ZodOptional<z.ZodString>;
117
+ page: z.ZodDefault<z.ZodNumber>;
118
+ pageSize: z.ZodDefault<z.ZodNumber>;
119
+ }, "strip", z.ZodTypeAny, {
120
+ page: number;
121
+ pageSize: number;
122
+ accountId?: string | undefined;
123
+ }, {
124
+ page?: number | undefined;
125
+ pageSize?: number | undefined;
126
+ accountId?: string | undefined;
127
+ }>;
128
+ searchAccounts: z.ZodObject<{
129
+ field: z.ZodEnum<["Name", "AccountNumber", "Status", "Currency", "Balance"]>;
130
+ value: z.ZodEffects<z.ZodString, string, string>;
131
+ operator: z.ZodDefault<z.ZodEnum<["=", "!=", "LIKE", ">", "<", ">=", "<="]>>;
132
+ }, "strip", z.ZodTypeAny, {
133
+ value: string;
134
+ field: "Name" | "AccountNumber" | "Status" | "Currency" | "Balance";
135
+ operator: "=" | "!=" | "LIKE" | ">" | "<" | ">=" | "<=";
136
+ }, {
137
+ value: string;
138
+ field: "Name" | "AccountNumber" | "Status" | "Currency" | "Balance";
139
+ operator?: "=" | "!=" | "LIKE" | ">" | "<" | ">=" | "<=" | undefined;
140
+ }>;
141
+ listUsage: z.ZodObject<{
142
+ accountKey: z.ZodString;
143
+ page: z.ZodDefault<z.ZodNumber>;
144
+ pageSize: z.ZodDefault<z.ZodNumber>;
145
+ }, "strip", z.ZodTypeAny, {
146
+ accountKey: string;
147
+ page: number;
148
+ pageSize: number;
149
+ }, {
150
+ accountKey: string;
151
+ page?: number | undefined;
152
+ pageSize?: number | undefined;
153
+ }>;
154
+ listUsers: z.ZodObject<{
155
+ startIndex: z.ZodDefault<z.ZodNumber>;
156
+ count: z.ZodDefault<z.ZodNumber>;
157
+ filter: z.ZodOptional<z.ZodString>;
158
+ }, "strip", z.ZodTypeAny, {
159
+ startIndex: number;
160
+ count: number;
161
+ filter?: string | undefined;
162
+ }, {
163
+ filter?: string | undefined;
164
+ startIndex?: number | undefined;
165
+ count?: number | undefined;
166
+ }>;
167
+ getUser: z.ZodObject<{
168
+ userId: z.ZodString;
169
+ }, "strip", z.ZodTypeAny, {
170
+ userId: string;
171
+ }, {
172
+ userId: string;
173
+ }>;
174
+ getBillRun: z.ZodObject<{
175
+ billRunId: z.ZodString;
176
+ }, "strip", z.ZodTypeAny, {
177
+ billRunId: string;
178
+ }, {
179
+ billRunId: string;
180
+ }>;
181
+ listBillRuns: z.ZodObject<{
182
+ page: z.ZodDefault<z.ZodNumber>;
183
+ pageSize: z.ZodDefault<z.ZodNumber>;
184
+ }, "strip", z.ZodTypeAny, {
185
+ page: number;
186
+ pageSize: number;
187
+ }, {
188
+ page?: number | undefined;
189
+ pageSize?: number | undefined;
190
+ }>;
191
+ getContact: z.ZodObject<{
192
+ contactId: z.ZodString;
193
+ }, "strip", z.ZodTypeAny, {
194
+ contactId: string;
195
+ }, {
196
+ contactId: string;
197
+ }>;
198
+ describeObject: z.ZodObject<{
199
+ objectType: z.ZodString;
200
+ }, "strip", z.ZodTypeAny, {
201
+ objectType: string;
202
+ }, {
203
+ objectType: string;
204
+ }>;
205
+ createPayment: z.ZodEffects<z.ZodObject<{
206
+ accountId: z.ZodString;
207
+ amount: z.ZodEffects<z.ZodNumber, number, number>;
208
+ effectiveDate: z.ZodEffects<z.ZodString, string, string>;
209
+ type: z.ZodEnum<["Electronic", "External"]>;
210
+ paymentMethodId: z.ZodOptional<z.ZodString>;
211
+ comment: z.ZodOptional<z.ZodString>;
212
+ idempotencyKey: z.ZodString;
213
+ }, "strip", z.ZodTypeAny, {
214
+ type: "Electronic" | "External";
215
+ accountId: string;
216
+ amount: number;
217
+ effectiveDate: string;
218
+ idempotencyKey: string;
219
+ paymentMethodId?: string | undefined;
220
+ comment?: string | undefined;
221
+ }, {
222
+ type: "Electronic" | "External";
223
+ accountId: string;
224
+ amount: number;
225
+ effectiveDate: string;
226
+ idempotencyKey: string;
227
+ paymentMethodId?: string | undefined;
228
+ comment?: string | undefined;
229
+ }>, {
230
+ type: "Electronic" | "External";
231
+ accountId: string;
232
+ amount: number;
233
+ effectiveDate: string;
234
+ idempotencyKey: string;
235
+ paymentMethodId?: string | undefined;
236
+ comment?: string | undefined;
237
+ }, {
238
+ type: "Electronic" | "External";
239
+ accountId: string;
240
+ amount: number;
241
+ effectiveDate: string;
242
+ idempotencyKey: string;
243
+ paymentMethodId?: string | undefined;
244
+ comment?: string | undefined;
245
+ }>;
246
+ applyPayment: z.ZodObject<{
247
+ paymentId: z.ZodString;
248
+ invoices: z.ZodArray<z.ZodObject<{
249
+ invoiceId: z.ZodString;
250
+ amount: z.ZodEffects<z.ZodNumber, number, number>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ invoiceId: string;
253
+ amount: number;
254
+ }, {
255
+ invoiceId: string;
256
+ amount: number;
257
+ }>, "many">;
258
+ effectiveDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
259
+ }, "strip", z.ZodTypeAny, {
260
+ paymentId: string;
261
+ invoices: {
262
+ invoiceId: string;
263
+ amount: number;
264
+ }[];
265
+ effectiveDate?: string | undefined;
266
+ }, {
267
+ paymentId: string;
268
+ invoices: {
269
+ invoiceId: string;
270
+ amount: number;
271
+ }[];
272
+ effectiveDate?: string | undefined;
273
+ }>;
274
+ createInvoice: z.ZodObject<{
275
+ accountId: z.ZodString;
276
+ invoiceDate: z.ZodEffects<z.ZodString, string, string>;
277
+ dueDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
278
+ idempotencyKey: z.ZodString;
279
+ }, "strip", z.ZodTypeAny, {
280
+ accountId: string;
281
+ idempotencyKey: string;
282
+ invoiceDate: string;
283
+ dueDate?: string | undefined;
284
+ }, {
285
+ accountId: string;
286
+ idempotencyKey: string;
287
+ invoiceDate: string;
288
+ dueDate?: string | undefined;
289
+ }>;
290
+ postInvoice: z.ZodObject<{
291
+ invoiceId: z.ZodString;
292
+ }, "strip", z.ZodTypeAny, {
293
+ invoiceId: string;
294
+ }, {
295
+ invoiceId: string;
296
+ }>;
297
+ cancelSubscription: z.ZodEffects<z.ZodObject<{
298
+ subscriptionKey: z.ZodString;
299
+ cancellationPolicy: z.ZodEnum<["EndOfCurrentTerm", "EndOfLastInvoicePeriod", "SpecificDate"]>;
300
+ cancellationEffectiveDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
301
+ invoiceCollect: z.ZodDefault<z.ZodBoolean>;
302
+ }, "strip", z.ZodTypeAny, {
303
+ subscriptionKey: string;
304
+ cancellationPolicy: "EndOfCurrentTerm" | "EndOfLastInvoicePeriod" | "SpecificDate";
305
+ invoiceCollect: boolean;
306
+ cancellationEffectiveDate?: string | undefined;
307
+ }, {
308
+ subscriptionKey: string;
309
+ cancellationPolicy: "EndOfCurrentTerm" | "EndOfLastInvoicePeriod" | "SpecificDate";
310
+ cancellationEffectiveDate?: string | undefined;
311
+ invoiceCollect?: boolean | undefined;
312
+ }>, {
313
+ subscriptionKey: string;
314
+ cancellationPolicy: "EndOfCurrentTerm" | "EndOfLastInvoicePeriod" | "SpecificDate";
315
+ invoiceCollect: boolean;
316
+ cancellationEffectiveDate?: string | undefined;
317
+ }, {
318
+ subscriptionKey: string;
319
+ cancellationPolicy: "EndOfCurrentTerm" | "EndOfLastInvoicePeriod" | "SpecificDate";
320
+ cancellationEffectiveDate?: string | undefined;
321
+ invoiceCollect?: boolean | undefined;
322
+ }>;
323
+ createSubscription: z.ZodEffects<z.ZodObject<{
324
+ accountKey: z.ZodString;
325
+ contractEffectiveDate: z.ZodEffects<z.ZodString, string, string>;
326
+ serviceActivationDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
327
+ customerAcceptanceDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
328
+ termType: z.ZodEnum<["TERMED", "EVERGREEN"]>;
329
+ initialTerm: z.ZodOptional<z.ZodNumber>;
330
+ initialTermPeriodType: z.ZodOptional<z.ZodEnum<["Month", "Year", "Day", "Week"]>>;
331
+ renewalTerm: z.ZodOptional<z.ZodNumber>;
332
+ renewalTermPeriodType: z.ZodOptional<z.ZodEnum<["Month", "Year", "Day", "Week"]>>;
333
+ autoRenew: z.ZodDefault<z.ZodBoolean>;
334
+ subscribeToRatePlans: z.ZodArray<z.ZodObject<{
335
+ productRatePlanId: z.ZodString;
336
+ }, "strip", z.ZodTypeAny, {
337
+ productRatePlanId: string;
338
+ }, {
339
+ productRatePlanId: string;
340
+ }>, "many">;
341
+ notes: z.ZodOptional<z.ZodString>;
342
+ idempotencyKey: z.ZodString;
343
+ }, "strip", z.ZodTypeAny, {
344
+ accountKey: string;
345
+ idempotencyKey: string;
346
+ contractEffectiveDate: string;
347
+ termType: "TERMED" | "EVERGREEN";
348
+ autoRenew: boolean;
349
+ subscribeToRatePlans: {
350
+ productRatePlanId: string;
351
+ }[];
352
+ serviceActivationDate?: string | undefined;
353
+ customerAcceptanceDate?: string | undefined;
354
+ initialTerm?: number | undefined;
355
+ initialTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
356
+ renewalTerm?: number | undefined;
357
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
358
+ notes?: string | undefined;
359
+ }, {
360
+ accountKey: string;
361
+ idempotencyKey: string;
362
+ contractEffectiveDate: string;
363
+ termType: "TERMED" | "EVERGREEN";
364
+ subscribeToRatePlans: {
365
+ productRatePlanId: string;
366
+ }[];
367
+ serviceActivationDate?: string | undefined;
368
+ customerAcceptanceDate?: string | undefined;
369
+ initialTerm?: number | undefined;
370
+ initialTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
371
+ renewalTerm?: number | undefined;
372
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
373
+ autoRenew?: boolean | undefined;
374
+ notes?: string | undefined;
375
+ }>, {
376
+ accountKey: string;
377
+ idempotencyKey: string;
378
+ contractEffectiveDate: string;
379
+ termType: "TERMED" | "EVERGREEN";
380
+ autoRenew: boolean;
381
+ subscribeToRatePlans: {
382
+ productRatePlanId: string;
383
+ }[];
384
+ serviceActivationDate?: string | undefined;
385
+ customerAcceptanceDate?: string | undefined;
386
+ initialTerm?: number | undefined;
387
+ initialTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
388
+ renewalTerm?: number | undefined;
389
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
390
+ notes?: string | undefined;
391
+ }, {
392
+ accountKey: string;
393
+ idempotencyKey: string;
394
+ contractEffectiveDate: string;
395
+ termType: "TERMED" | "EVERGREEN";
396
+ subscribeToRatePlans: {
397
+ productRatePlanId: string;
398
+ }[];
399
+ serviceActivationDate?: string | undefined;
400
+ customerAcceptanceDate?: string | undefined;
401
+ initialTerm?: number | undefined;
402
+ initialTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
403
+ renewalTerm?: number | undefined;
404
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
405
+ autoRenew?: boolean | undefined;
406
+ notes?: string | undefined;
407
+ }>;
408
+ updateSubscription: z.ZodEffects<z.ZodObject<{
409
+ subscriptionKey: z.ZodString;
410
+ autoRenew: z.ZodOptional<z.ZodBoolean>;
411
+ renewalTerm: z.ZodOptional<z.ZodNumber>;
412
+ renewalTermPeriodType: z.ZodOptional<z.ZodEnum<["Month", "Year", "Day", "Week"]>>;
413
+ notes: z.ZodOptional<z.ZodString>;
414
+ }, "strip", z.ZodTypeAny, {
415
+ subscriptionKey: string;
416
+ renewalTerm?: number | undefined;
417
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
418
+ autoRenew?: boolean | undefined;
419
+ notes?: string | undefined;
420
+ }, {
421
+ subscriptionKey: string;
422
+ renewalTerm?: number | undefined;
423
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
424
+ autoRenew?: boolean | undefined;
425
+ notes?: string | undefined;
426
+ }>, {
427
+ subscriptionKey: string;
428
+ renewalTerm?: number | undefined;
429
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
430
+ autoRenew?: boolean | undefined;
431
+ notes?: string | undefined;
432
+ }, {
433
+ subscriptionKey: string;
434
+ renewalTerm?: number | undefined;
435
+ renewalTermPeriodType?: "Month" | "Year" | "Day" | "Week" | undefined;
436
+ autoRenew?: boolean | undefined;
437
+ notes?: string | undefined;
438
+ }>;
439
+ createAccount: z.ZodObject<{
440
+ name: z.ZodString;
441
+ currency: z.ZodString;
442
+ billCycleDay: z.ZodNumber;
443
+ billToContact: z.ZodObject<{
444
+ firstName: z.ZodString;
445
+ lastName: z.ZodString;
446
+ workEmail: z.ZodString;
447
+ address1: z.ZodOptional<z.ZodString>;
448
+ city: z.ZodOptional<z.ZodString>;
449
+ state: z.ZodOptional<z.ZodString>;
450
+ postalCode: z.ZodOptional<z.ZodString>;
451
+ country: z.ZodOptional<z.ZodString>;
452
+ }, "strip", z.ZodTypeAny, {
453
+ firstName: string;
454
+ lastName: string;
455
+ workEmail: string;
456
+ address1?: string | undefined;
457
+ city?: string | undefined;
458
+ state?: string | undefined;
459
+ postalCode?: string | undefined;
460
+ country?: string | undefined;
461
+ }, {
462
+ firstName: string;
463
+ lastName: string;
464
+ workEmail: string;
465
+ address1?: string | undefined;
466
+ city?: string | undefined;
467
+ state?: string | undefined;
468
+ postalCode?: string | undefined;
469
+ country?: string | undefined;
470
+ }>;
471
+ soldToContact: z.ZodOptional<z.ZodObject<{
472
+ firstName: z.ZodString;
473
+ lastName: z.ZodString;
474
+ workEmail: z.ZodString;
475
+ address1: z.ZodOptional<z.ZodString>;
476
+ city: z.ZodOptional<z.ZodString>;
477
+ state: z.ZodOptional<z.ZodString>;
478
+ postalCode: z.ZodOptional<z.ZodString>;
479
+ country: z.ZodOptional<z.ZodString>;
480
+ }, "strip", z.ZodTypeAny, {
481
+ firstName: string;
482
+ lastName: string;
483
+ workEmail: string;
484
+ address1?: string | undefined;
485
+ city?: string | undefined;
486
+ state?: string | undefined;
487
+ postalCode?: string | undefined;
488
+ country?: string | undefined;
489
+ }, {
490
+ firstName: string;
491
+ lastName: string;
492
+ workEmail: string;
493
+ address1?: string | undefined;
494
+ city?: string | undefined;
495
+ state?: string | undefined;
496
+ postalCode?: string | undefined;
497
+ country?: string | undefined;
498
+ }>>;
499
+ paymentTerm: z.ZodOptional<z.ZodString>;
500
+ autoPay: z.ZodDefault<z.ZodBoolean>;
501
+ notes: z.ZodOptional<z.ZodString>;
502
+ idempotencyKey: z.ZodString;
503
+ }, "strip", z.ZodTypeAny, {
504
+ name: string;
505
+ idempotencyKey: string;
506
+ currency: string;
507
+ billCycleDay: number;
508
+ billToContact: {
509
+ firstName: string;
510
+ lastName: string;
511
+ workEmail: string;
512
+ address1?: string | undefined;
513
+ city?: string | undefined;
514
+ state?: string | undefined;
515
+ postalCode?: string | undefined;
516
+ country?: string | undefined;
517
+ };
518
+ autoPay: boolean;
519
+ notes?: string | undefined;
520
+ soldToContact?: {
521
+ firstName: string;
522
+ lastName: string;
523
+ workEmail: string;
524
+ address1?: string | undefined;
525
+ city?: string | undefined;
526
+ state?: string | undefined;
527
+ postalCode?: string | undefined;
528
+ country?: string | undefined;
529
+ } | undefined;
530
+ paymentTerm?: string | undefined;
531
+ }, {
532
+ name: string;
533
+ idempotencyKey: string;
534
+ currency: string;
535
+ billCycleDay: number;
536
+ billToContact: {
537
+ firstName: string;
538
+ lastName: string;
539
+ workEmail: string;
540
+ address1?: string | undefined;
541
+ city?: string | undefined;
542
+ state?: string | undefined;
543
+ postalCode?: string | undefined;
544
+ country?: string | undefined;
545
+ };
546
+ notes?: string | undefined;
547
+ soldToContact?: {
548
+ firstName: string;
549
+ lastName: string;
550
+ workEmail: string;
551
+ address1?: string | undefined;
552
+ city?: string | undefined;
553
+ state?: string | undefined;
554
+ postalCode?: string | undefined;
555
+ country?: string | undefined;
556
+ } | undefined;
557
+ paymentTerm?: string | undefined;
558
+ autoPay?: boolean | undefined;
559
+ }>;
560
+ updateAccount: z.ZodEffects<z.ZodObject<{
561
+ accountKey: z.ZodString;
562
+ name: z.ZodOptional<z.ZodString>;
563
+ notes: z.ZodOptional<z.ZodString>;
564
+ autoPay: z.ZodOptional<z.ZodBoolean>;
565
+ paymentTerm: z.ZodOptional<z.ZodString>;
566
+ billToContact: z.ZodOptional<z.ZodObject<{
567
+ firstName: z.ZodOptional<z.ZodString>;
568
+ lastName: z.ZodOptional<z.ZodString>;
569
+ workEmail: z.ZodOptional<z.ZodString>;
570
+ address1: z.ZodOptional<z.ZodOptional<z.ZodString>>;
571
+ city: z.ZodOptional<z.ZodOptional<z.ZodString>>;
572
+ state: z.ZodOptional<z.ZodOptional<z.ZodString>>;
573
+ postalCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
574
+ country: z.ZodOptional<z.ZodOptional<z.ZodString>>;
575
+ }, "strip", z.ZodTypeAny, {
576
+ address1?: string | undefined;
577
+ firstName?: string | undefined;
578
+ lastName?: string | undefined;
579
+ workEmail?: string | undefined;
580
+ city?: string | undefined;
581
+ state?: string | undefined;
582
+ postalCode?: string | undefined;
583
+ country?: string | undefined;
584
+ }, {
585
+ address1?: string | undefined;
586
+ firstName?: string | undefined;
587
+ lastName?: string | undefined;
588
+ workEmail?: string | undefined;
589
+ city?: string | undefined;
590
+ state?: string | undefined;
591
+ postalCode?: string | undefined;
592
+ country?: string | undefined;
593
+ }>>;
594
+ soldToContact: z.ZodOptional<z.ZodObject<{
595
+ firstName: z.ZodOptional<z.ZodString>;
596
+ lastName: z.ZodOptional<z.ZodString>;
597
+ workEmail: z.ZodOptional<z.ZodString>;
598
+ address1: z.ZodOptional<z.ZodOptional<z.ZodString>>;
599
+ city: z.ZodOptional<z.ZodOptional<z.ZodString>>;
600
+ state: z.ZodOptional<z.ZodOptional<z.ZodString>>;
601
+ postalCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
602
+ country: z.ZodOptional<z.ZodOptional<z.ZodString>>;
603
+ }, "strip", z.ZodTypeAny, {
604
+ address1?: string | undefined;
605
+ firstName?: string | undefined;
606
+ lastName?: string | undefined;
607
+ workEmail?: string | undefined;
608
+ city?: string | undefined;
609
+ state?: string | undefined;
610
+ postalCode?: string | undefined;
611
+ country?: string | undefined;
612
+ }, {
613
+ address1?: string | undefined;
614
+ firstName?: string | undefined;
615
+ lastName?: string | undefined;
616
+ workEmail?: string | undefined;
617
+ city?: string | undefined;
618
+ state?: string | undefined;
619
+ postalCode?: string | undefined;
620
+ country?: string | undefined;
621
+ }>>;
622
+ }, "strip", z.ZodTypeAny, {
623
+ accountKey: string;
624
+ name?: string | undefined;
625
+ notes?: string | undefined;
626
+ billToContact?: {
627
+ address1?: string | undefined;
628
+ firstName?: string | undefined;
629
+ lastName?: string | undefined;
630
+ workEmail?: string | undefined;
631
+ city?: string | undefined;
632
+ state?: string | undefined;
633
+ postalCode?: string | undefined;
634
+ country?: string | undefined;
635
+ } | undefined;
636
+ soldToContact?: {
637
+ address1?: string | undefined;
638
+ firstName?: string | undefined;
639
+ lastName?: string | undefined;
640
+ workEmail?: string | undefined;
641
+ city?: string | undefined;
642
+ state?: string | undefined;
643
+ postalCode?: string | undefined;
644
+ country?: string | undefined;
645
+ } | undefined;
646
+ paymentTerm?: string | undefined;
647
+ autoPay?: boolean | undefined;
648
+ }, {
649
+ accountKey: string;
650
+ name?: string | undefined;
651
+ notes?: string | undefined;
652
+ billToContact?: {
653
+ address1?: string | undefined;
654
+ firstName?: string | undefined;
655
+ lastName?: string | undefined;
656
+ workEmail?: string | undefined;
657
+ city?: string | undefined;
658
+ state?: string | undefined;
659
+ postalCode?: string | undefined;
660
+ country?: string | undefined;
661
+ } | undefined;
662
+ soldToContact?: {
663
+ address1?: string | undefined;
664
+ firstName?: string | undefined;
665
+ lastName?: string | undefined;
666
+ workEmail?: string | undefined;
667
+ city?: string | undefined;
668
+ state?: string | undefined;
669
+ postalCode?: string | undefined;
670
+ country?: string | undefined;
671
+ } | undefined;
672
+ paymentTerm?: string | undefined;
673
+ autoPay?: boolean | undefined;
674
+ }>, {
675
+ accountKey: string;
676
+ name?: string | undefined;
677
+ notes?: string | undefined;
678
+ billToContact?: {
679
+ address1?: string | undefined;
680
+ firstName?: string | undefined;
681
+ lastName?: string | undefined;
682
+ workEmail?: string | undefined;
683
+ city?: string | undefined;
684
+ state?: string | undefined;
685
+ postalCode?: string | undefined;
686
+ country?: string | undefined;
687
+ } | undefined;
688
+ soldToContact?: {
689
+ address1?: string | undefined;
690
+ firstName?: string | undefined;
691
+ lastName?: string | undefined;
692
+ workEmail?: string | undefined;
693
+ city?: string | undefined;
694
+ state?: string | undefined;
695
+ postalCode?: string | undefined;
696
+ country?: string | undefined;
697
+ } | undefined;
698
+ paymentTerm?: string | undefined;
699
+ autoPay?: boolean | undefined;
700
+ }, {
701
+ accountKey: string;
702
+ name?: string | undefined;
703
+ notes?: string | undefined;
704
+ billToContact?: {
705
+ address1?: string | undefined;
706
+ firstName?: string | undefined;
707
+ lastName?: string | undefined;
708
+ workEmail?: string | undefined;
709
+ city?: string | undefined;
710
+ state?: string | undefined;
711
+ postalCode?: string | undefined;
712
+ country?: string | undefined;
713
+ } | undefined;
714
+ soldToContact?: {
715
+ address1?: string | undefined;
716
+ firstName?: string | undefined;
717
+ lastName?: string | undefined;
718
+ workEmail?: string | undefined;
719
+ city?: string | undefined;
720
+ state?: string | undefined;
721
+ postalCode?: string | undefined;
722
+ country?: string | undefined;
723
+ } | undefined;
724
+ paymentTerm?: string | undefined;
725
+ autoPay?: boolean | undefined;
726
+ }>;
727
+ createRefund: z.ZodObject<{
728
+ paymentId: z.ZodString;
729
+ amount: z.ZodEffects<z.ZodNumber, number, number>;
730
+ type: z.ZodEnum<["Electronic", "External"]>;
731
+ comment: z.ZodOptional<z.ZodString>;
732
+ idempotencyKey: z.ZodString;
733
+ }, "strip", z.ZodTypeAny, {
734
+ type: "Electronic" | "External";
735
+ paymentId: string;
736
+ amount: number;
737
+ idempotencyKey: string;
738
+ comment?: string | undefined;
739
+ }, {
740
+ type: "Electronic" | "External";
741
+ paymentId: string;
742
+ amount: number;
743
+ idempotencyKey: string;
744
+ comment?: string | undefined;
745
+ }>;
746
+ createBillRun: z.ZodEffects<z.ZodObject<{
747
+ targetDate: z.ZodEffects<z.ZodString, string, string>;
748
+ invoiceDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
749
+ autoPost: z.ZodDefault<z.ZodBoolean>;
750
+ autoEmail: z.ZodDefault<z.ZodBoolean>;
751
+ name: z.ZodOptional<z.ZodString>;
752
+ idempotencyKey: z.ZodString;
753
+ }, "strip", z.ZodTypeAny, {
754
+ idempotencyKey: string;
755
+ targetDate: string;
756
+ autoPost: boolean;
757
+ autoEmail: boolean;
758
+ name?: string | undefined;
759
+ invoiceDate?: string | undefined;
760
+ }, {
761
+ idempotencyKey: string;
762
+ targetDate: string;
763
+ name?: string | undefined;
764
+ invoiceDate?: string | undefined;
765
+ autoPost?: boolean | undefined;
766
+ autoEmail?: boolean | undefined;
767
+ }>, {
768
+ idempotencyKey: string;
769
+ targetDate: string;
770
+ autoPost: boolean;
771
+ autoEmail: boolean;
772
+ name?: string | undefined;
773
+ invoiceDate?: string | undefined;
774
+ }, {
775
+ idempotencyKey: string;
776
+ targetDate: string;
777
+ name?: string | undefined;
778
+ invoiceDate?: string | undefined;
779
+ autoPost?: boolean | undefined;
780
+ autoEmail?: boolean | undefined;
781
+ }>;
782
+ createContact: z.ZodObject<{
783
+ accountId: z.ZodString;
784
+ firstName: z.ZodString;
785
+ lastName: z.ZodString;
786
+ workEmail: z.ZodOptional<z.ZodString>;
787
+ personalEmail: z.ZodOptional<z.ZodString>;
788
+ workPhone: z.ZodOptional<z.ZodString>;
789
+ homePhone: z.ZodOptional<z.ZodString>;
790
+ mobilePhone: z.ZodOptional<z.ZodString>;
791
+ fax: z.ZodOptional<z.ZodString>;
792
+ address1: z.ZodOptional<z.ZodString>;
793
+ address2: z.ZodOptional<z.ZodString>;
794
+ city: z.ZodOptional<z.ZodString>;
795
+ state: z.ZodOptional<z.ZodString>;
796
+ country: z.ZodOptional<z.ZodString>;
797
+ postalCode: z.ZodOptional<z.ZodString>;
798
+ county: z.ZodOptional<z.ZodString>;
799
+ taxRegion: z.ZodOptional<z.ZodString>;
800
+ description: z.ZodOptional<z.ZodString>;
801
+ nickname: z.ZodOptional<z.ZodString>;
802
+ idempotencyKey: z.ZodString;
803
+ }, "strip", z.ZodTypeAny, {
804
+ firstName: string;
805
+ lastName: string;
806
+ accountId: string;
807
+ idempotencyKey: string;
808
+ address1?: string | undefined;
809
+ fax?: string | undefined;
810
+ workEmail?: string | undefined;
811
+ city?: string | undefined;
812
+ state?: string | undefined;
813
+ postalCode?: string | undefined;
814
+ country?: string | undefined;
815
+ personalEmail?: string | undefined;
816
+ workPhone?: string | undefined;
817
+ homePhone?: string | undefined;
818
+ mobilePhone?: string | undefined;
819
+ address2?: string | undefined;
820
+ county?: string | undefined;
821
+ taxRegion?: string | undefined;
822
+ description?: string | undefined;
823
+ nickname?: string | undefined;
824
+ }, {
825
+ firstName: string;
826
+ lastName: string;
827
+ accountId: string;
828
+ idempotencyKey: string;
829
+ address1?: string | undefined;
830
+ fax?: string | undefined;
831
+ workEmail?: string | undefined;
832
+ city?: string | undefined;
833
+ state?: string | undefined;
834
+ postalCode?: string | undefined;
835
+ country?: string | undefined;
836
+ personalEmail?: string | undefined;
837
+ workPhone?: string | undefined;
838
+ homePhone?: string | undefined;
839
+ mobilePhone?: string | undefined;
840
+ address2?: string | undefined;
841
+ county?: string | undefined;
842
+ taxRegion?: string | undefined;
843
+ description?: string | undefined;
844
+ nickname?: string | undefined;
845
+ }>;
846
+ updateContact: z.ZodEffects<z.ZodObject<{
847
+ contactId: z.ZodString;
848
+ firstName: z.ZodOptional<z.ZodString>;
849
+ lastName: z.ZodOptional<z.ZodString>;
850
+ workEmail: z.ZodOptional<z.ZodString>;
851
+ personalEmail: z.ZodOptional<z.ZodString>;
852
+ workPhone: z.ZodOptional<z.ZodString>;
853
+ homePhone: z.ZodOptional<z.ZodString>;
854
+ mobilePhone: z.ZodOptional<z.ZodString>;
855
+ fax: z.ZodOptional<z.ZodString>;
856
+ address1: z.ZodOptional<z.ZodString>;
857
+ address2: z.ZodOptional<z.ZodString>;
858
+ city: z.ZodOptional<z.ZodString>;
859
+ state: z.ZodOptional<z.ZodString>;
860
+ country: z.ZodOptional<z.ZodString>;
861
+ postalCode: z.ZodOptional<z.ZodString>;
862
+ county: z.ZodOptional<z.ZodString>;
863
+ taxRegion: z.ZodOptional<z.ZodString>;
864
+ description: z.ZodOptional<z.ZodString>;
865
+ nickname: z.ZodOptional<z.ZodString>;
866
+ }, "strip", z.ZodTypeAny, {
867
+ contactId: string;
868
+ address1?: string | undefined;
869
+ fax?: string | undefined;
870
+ firstName?: string | undefined;
871
+ lastName?: string | undefined;
872
+ workEmail?: string | undefined;
873
+ city?: string | undefined;
874
+ state?: string | undefined;
875
+ postalCode?: string | undefined;
876
+ country?: string | undefined;
877
+ personalEmail?: string | undefined;
878
+ workPhone?: string | undefined;
879
+ homePhone?: string | undefined;
880
+ mobilePhone?: string | undefined;
881
+ address2?: string | undefined;
882
+ county?: string | undefined;
883
+ taxRegion?: string | undefined;
884
+ description?: string | undefined;
885
+ nickname?: string | undefined;
886
+ }, {
887
+ contactId: string;
888
+ address1?: string | undefined;
889
+ fax?: string | undefined;
890
+ firstName?: string | undefined;
891
+ lastName?: string | undefined;
892
+ workEmail?: string | undefined;
893
+ city?: string | undefined;
894
+ state?: string | undefined;
895
+ postalCode?: string | undefined;
896
+ country?: string | undefined;
897
+ personalEmail?: string | undefined;
898
+ workPhone?: string | undefined;
899
+ homePhone?: string | undefined;
900
+ mobilePhone?: string | undefined;
901
+ address2?: string | undefined;
902
+ county?: string | undefined;
903
+ taxRegion?: string | undefined;
904
+ description?: string | undefined;
905
+ nickname?: string | undefined;
906
+ }>, {
907
+ contactId: string;
908
+ address1?: string | undefined;
909
+ fax?: string | undefined;
910
+ firstName?: string | undefined;
911
+ lastName?: string | undefined;
912
+ workEmail?: string | undefined;
913
+ city?: string | undefined;
914
+ state?: string | undefined;
915
+ postalCode?: string | undefined;
916
+ country?: string | undefined;
917
+ personalEmail?: string | undefined;
918
+ workPhone?: string | undefined;
919
+ homePhone?: string | undefined;
920
+ mobilePhone?: string | undefined;
921
+ address2?: string | undefined;
922
+ county?: string | undefined;
923
+ taxRegion?: string | undefined;
924
+ description?: string | undefined;
925
+ nickname?: string | undefined;
926
+ }, {
927
+ contactId: string;
928
+ address1?: string | undefined;
929
+ fax?: string | undefined;
930
+ firstName?: string | undefined;
931
+ lastName?: string | undefined;
932
+ workEmail?: string | undefined;
933
+ city?: string | undefined;
934
+ state?: string | undefined;
935
+ postalCode?: string | undefined;
936
+ country?: string | undefined;
937
+ personalEmail?: string | undefined;
938
+ workPhone?: string | undefined;
939
+ homePhone?: string | undefined;
940
+ mobilePhone?: string | undefined;
941
+ address2?: string | undefined;
942
+ county?: string | undefined;
943
+ taxRegion?: string | undefined;
944
+ description?: string | undefined;
945
+ nickname?: string | undefined;
946
+ }>;
947
+ findAccountsByProduct: z.ZodObject<{
948
+ productName: z.ZodString;
949
+ limit: z.ZodDefault<z.ZodNumber>;
950
+ }, "strip", z.ZodTypeAny, {
951
+ productName: string;
952
+ limit: number;
953
+ }, {
954
+ productName: string;
955
+ limit?: number | undefined;
956
+ }>;
957
+ getOverdueInvoices: z.ZodObject<{
958
+ minBalance: z.ZodDefault<z.ZodNumber>;
959
+ limit: z.ZodDefault<z.ZodNumber>;
960
+ }, "strip", z.ZodTypeAny, {
961
+ limit: number;
962
+ minBalance: number;
963
+ }, {
964
+ limit?: number | undefined;
965
+ minBalance?: number | undefined;
966
+ }>;
967
+ getExpiringSubscriptions: z.ZodObject<{
968
+ daysAhead: z.ZodDefault<z.ZodNumber>;
969
+ limit: z.ZodDefault<z.ZodNumber>;
970
+ }, "strip", z.ZodTypeAny, {
971
+ limit: number;
972
+ daysAhead: number;
973
+ }, {
974
+ limit?: number | undefined;
975
+ daysAhead?: number | undefined;
976
+ }>;
977
+ getAccountBillingOverview: z.ZodObject<{
978
+ accountKey: z.ZodString;
979
+ }, "strip", z.ZodTypeAny, {
980
+ accountKey: string;
981
+ }, {
982
+ accountKey: string;
983
+ }>;
984
+ getRevenueByProduct: z.ZodObject<{
985
+ limit: z.ZodDefault<z.ZodNumber>;
986
+ }, "strip", z.ZodTypeAny, {
987
+ limit: number;
988
+ }, {
989
+ limit?: number | undefined;
990
+ }>;
991
+ getPaymentReconciliation: z.ZodObject<{
992
+ startDate: z.ZodEffects<z.ZodString, string, string>;
993
+ endDate: z.ZodEffects<z.ZodString, string, string>;
994
+ limit: z.ZodDefault<z.ZodNumber>;
995
+ }, "strip", z.ZodTypeAny, {
996
+ limit: number;
997
+ startDate: string;
998
+ endDate: string;
999
+ }, {
1000
+ startDate: string;
1001
+ endDate: string;
1002
+ limit?: number | undefined;
1003
+ }>;
1004
+ getRecentlyCancelledSubscriptions: z.ZodObject<{
1005
+ daysBack: z.ZodDefault<z.ZodNumber>;
1006
+ limit: z.ZodDefault<z.ZodNumber>;
1007
+ }, "strip", z.ZodTypeAny, {
1008
+ limit: number;
1009
+ daysBack: number;
1010
+ }, {
1011
+ limit?: number | undefined;
1012
+ daysBack?: number | undefined;
1013
+ }>;
1014
+ getInvoiceAgingReport: z.ZodObject<{
1015
+ limit: z.ZodDefault<z.ZodNumber>;
1016
+ }, "strip", z.ZodTypeAny, {
1017
+ limit: number;
1018
+ }, {
1019
+ limit?: number | undefined;
1020
+ }>;
1021
+ getAccountHealthScorecard: z.ZodObject<{
1022
+ limit: z.ZodDefault<z.ZodNumber>;
1023
+ }, "strip", z.ZodTypeAny, {
1024
+ limit: number;
1025
+ }, {
1026
+ limit?: number | undefined;
1027
+ }>;
1028
+ findInvoicesByProduct: z.ZodObject<{
1029
+ productName: z.ZodString;
1030
+ limit: z.ZodDefault<z.ZodNumber>;
1031
+ }, "strip", z.ZodTypeAny, {
1032
+ productName: string;
1033
+ limit: number;
1034
+ }, {
1035
+ productName: string;
1036
+ limit?: number | undefined;
1037
+ }>;
1038
+ };
1039
+ export declare class ToolHandlers {
1040
+ private readonly client;
1041
+ constructor(client: ZuoraClient);
1042
+ getAccount(input: unknown): Promise<ToolResult>;
1043
+ getAccountSummary(input: unknown): Promise<ToolResult>;
1044
+ getInvoice(input: unknown): Promise<ToolResult>;
1045
+ listInvoices(input: unknown): Promise<ToolResult>;
1046
+ getSubscription(input: unknown): Promise<ToolResult>;
1047
+ listSubscriptions(input: unknown): Promise<ToolResult>;
1048
+ getPayment(input: unknown): Promise<ToolResult>;
1049
+ listPayments(input: unknown): Promise<ToolResult>;
1050
+ executeZoqlQuery(input: unknown): Promise<ToolResult>;
1051
+ continueZoqlQuery(input: unknown): Promise<ToolResult>;
1052
+ listProducts(input: unknown): Promise<ToolResult>;
1053
+ getInvoiceFiles(input: unknown): Promise<ToolResult>;
1054
+ getCreditMemo(input: unknown): Promise<ToolResult>;
1055
+ listCreditMemos(input: unknown): Promise<ToolResult>;
1056
+ searchAccounts(input: unknown): Promise<ToolResult>;
1057
+ listUsage(input: unknown): Promise<ToolResult>;
1058
+ listUsers(input: unknown): Promise<ToolResult>;
1059
+ getUser(input: unknown): Promise<ToolResult>;
1060
+ getBillRun(input: unknown): Promise<ToolResult>;
1061
+ listBillRuns(input: unknown): Promise<ToolResult>;
1062
+ getContact(input: unknown): Promise<ToolResult>;
1063
+ describeObject(input: unknown): Promise<ToolResult>;
1064
+ createPayment(input: unknown): Promise<ToolResult>;
1065
+ applyPayment(input: unknown): Promise<ToolResult>;
1066
+ createInvoice(input: unknown): Promise<ToolResult>;
1067
+ postInvoice(input: unknown): Promise<ToolResult>;
1068
+ cancelSubscription(input: unknown): Promise<ToolResult>;
1069
+ createSubscription(input: unknown): Promise<ToolResult>;
1070
+ updateSubscription(input: unknown): Promise<ToolResult>;
1071
+ createAccount(input: unknown): Promise<ToolResult>;
1072
+ updateAccount(input: unknown): Promise<ToolResult>;
1073
+ createRefund(input: unknown): Promise<ToolResult>;
1074
+ createBillRun(input: unknown): Promise<ToolResult>;
1075
+ createContact(input: unknown): Promise<ToolResult>;
1076
+ updateContact(input: unknown): Promise<ToolResult>;
1077
+ findAccountsByProduct(input: unknown): Promise<ToolResult>;
1078
+ getOverdueInvoices(input: unknown): Promise<ToolResult>;
1079
+ getExpiringSubscriptions(input: unknown): Promise<ToolResult>;
1080
+ getAccountBillingOverview(input: unknown): Promise<ToolResult>;
1081
+ getRevenueByProduct(input: unknown): Promise<ToolResult>;
1082
+ getPaymentReconciliation(input: unknown): Promise<ToolResult>;
1083
+ getRecentlyCancelledSubscriptions(input: unknown): Promise<ToolResult>;
1084
+ getInvoiceAgingReport(input: unknown): Promise<ToolResult>;
1085
+ getAccountHealthScorecard(input: unknown): Promise<ToolResult>;
1086
+ findInvoicesByProduct(input: unknown): Promise<ToolResult>;
1087
+ }
1088
+ type ToolRegistration = {
1089
+ name: string;
1090
+ description: string;
1091
+ inputSchema: z.ZodType;
1092
+ invoke: (handlers: ToolHandlers, args: unknown) => Promise<ToolResult>;
1093
+ };
1094
+ export declare const toolRegistrations: ToolRegistration[];
1095
+ export {};
1096
+ //# sourceMappingURL=tools.d.ts.map