@pulses/quickbooks-mcp 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/dist/client.d.ts +33 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +327 -0
- package/dist/client.js.map +1 -0
- package/dist/constants.d.ts +12 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +12 -0
- package/dist/constants.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +436 -0
- package/dist/index.js.map +1 -0
- package/dist/tools/accounts.d.ts +140 -0
- package/dist/tools/accounts.d.ts.map +1 -0
- package/dist/tools/accounts.js +115 -0
- package/dist/tools/accounts.js.map +1 -0
- package/dist/tools/bills.d.ts +386 -0
- package/dist/tools/bills.d.ts.map +1 -0
- package/dist/tools/bills.js +180 -0
- package/dist/tools/bills.js.map +1 -0
- package/dist/tools/company.d.ts +20 -0
- package/dist/tools/company.d.ts.map +1 -0
- package/dist/tools/company.js +37 -0
- package/dist/tools/company.js.map +1 -0
- package/dist/tools/customers.d.ts +218 -0
- package/dist/tools/customers.d.ts.map +1 -0
- package/dist/tools/customers.js +154 -0
- package/dist/tools/customers.js.map +1 -0
- package/dist/tools/employees.d.ts +182 -0
- package/dist/tools/employees.d.ts.map +1 -0
- package/dist/tools/employees.js +138 -0
- package/dist/tools/employees.js.map +1 -0
- package/dist/tools/estimates.d.ts +200 -0
- package/dist/tools/estimates.d.ts.map +1 -0
- package/dist/tools/estimates.js +131 -0
- package/dist/tools/estimates.js.map +1 -0
- package/dist/tools/invoices.d.ts +402 -0
- package/dist/tools/invoices.d.ts.map +1 -0
- package/dist/tools/invoices.js +203 -0
- package/dist/tools/invoices.js.map +1 -0
- package/dist/tools/items.d.ts +212 -0
- package/dist/tools/items.d.ts.map +1 -0
- package/dist/tools/items.js +153 -0
- package/dist/tools/items.js.map +1 -0
- package/dist/tools/journal-entries.d.ts +198 -0
- package/dist/tools/journal-entries.d.ts.map +1 -0
- package/dist/tools/journal-entries.js +135 -0
- package/dist/tools/journal-entries.js.map +1 -0
- package/dist/tools/payments.d.ts +174 -0
- package/dist/tools/payments.d.ts.map +1 -0
- package/dist/tools/payments.js +120 -0
- package/dist/tools/payments.js.map +1 -0
- package/dist/tools/purchases.d.ts +240 -0
- package/dist/tools/purchases.d.ts.map +1 -0
- package/dist/tools/purchases.js +149 -0
- package/dist/tools/purchases.js.map +1 -0
- package/dist/tools/query.d.ts +26 -0
- package/dist/tools/query.d.ts.map +1 -0
- package/dist/tools/query.js +27 -0
- package/dist/tools/query.js.map +1 -0
- package/dist/tools/reports.d.ts +178 -0
- package/dist/tools/reports.d.ts.map +1 -0
- package/dist/tools/reports.js +117 -0
- package/dist/tools/reports.js.map +1 -0
- package/dist/tools/tax.d.ts +116 -0
- package/dist/tools/tax.d.ts.map +1 -0
- package/dist/tools/tax.js +112 -0
- package/dist/tools/tax.js.map +1 -0
- package/dist/tools/time-activities.d.ts +228 -0
- package/dist/tools/time-activities.d.ts.map +1 -0
- package/dist/tools/time-activities.js +164 -0
- package/dist/tools/time-activities.js.map +1 -0
- package/dist/tools/vendors.d.ts +212 -0
- package/dist/tools/vendors.d.ts.map +1 -0
- package/dist/tools/vendors.js +152 -0
- package/dist/tools/vendors.js.map +1 -0
- package/dist/types.d.ts +295 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +11 -0
- package/dist/types.js.map +1 -0
- package/package.json +46 -0
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
const ListAccountsInputSchema = z.object({
|
|
3
|
+
where: z.string().optional().describe("WHERE clause, e.g. \"AccountType = 'Expense'\" or \"Classification = 'Revenue'\""),
|
|
4
|
+
order_by: z.string().optional(),
|
|
5
|
+
start_position: z.number().optional(),
|
|
6
|
+
max_results: z.number().optional(),
|
|
7
|
+
response_format: z.enum(["json", "markdown"]).default("markdown"),
|
|
8
|
+
}).strict();
|
|
9
|
+
const GetAccountInputSchema = z.object({
|
|
10
|
+
account_id: z.string().describe("The account ID"),
|
|
11
|
+
response_format: z.enum(["json", "markdown"]).default("markdown"),
|
|
12
|
+
}).strict();
|
|
13
|
+
const CreateAccountInputSchema = z.object({
|
|
14
|
+
name: z.string().describe("Account name"),
|
|
15
|
+
account_type: z.string().describe("Account type (e.g. 'Bank', 'Expense', 'Income', 'Other Current Asset', 'Fixed Asset', 'Other Current Liability', 'Equity', 'Cost of Goods Sold', 'Accounts Receivable', 'Accounts Payable')"),
|
|
16
|
+
account_sub_type: z.string().optional().describe("Account sub type (e.g. 'Checking', 'Savings', 'AdvertisingPromotional')"),
|
|
17
|
+
response_format: z.enum(["json", "markdown"]).default("markdown"),
|
|
18
|
+
}).strict();
|
|
19
|
+
const UpdateAccountInputSchema = z.object({
|
|
20
|
+
account_id: z.string(),
|
|
21
|
+
sync_token: z.string(),
|
|
22
|
+
name: z.string().optional(),
|
|
23
|
+
active: z.boolean().optional(),
|
|
24
|
+
response_format: z.enum(["json", "markdown"]).default("markdown"),
|
|
25
|
+
}).strict();
|
|
26
|
+
function formatAccount(a) {
|
|
27
|
+
let result = `## ${a.Name || "Unknown"}\n`;
|
|
28
|
+
if (a.Id)
|
|
29
|
+
result += `- **ID:** ${a.Id}\n`;
|
|
30
|
+
if (a.SyncToken)
|
|
31
|
+
result += `- **SyncToken:** ${a.SyncToken}\n`;
|
|
32
|
+
if (a.AccountType)
|
|
33
|
+
result += `- **Type:** ${a.AccountType}\n`;
|
|
34
|
+
if (a.AccountSubType)
|
|
35
|
+
result += `- **Sub Type:** ${a.AccountSubType}\n`;
|
|
36
|
+
if (a.Classification)
|
|
37
|
+
result += `- **Classification:** ${a.Classification}\n`;
|
|
38
|
+
if (a.CurrentBalance !== undefined)
|
|
39
|
+
result += `- **Balance:** $${a.CurrentBalance}\n`;
|
|
40
|
+
if (a.Active !== undefined)
|
|
41
|
+
result += `- **Active:** ${a.Active}\n`;
|
|
42
|
+
if (a.CurrencyRef)
|
|
43
|
+
result += `- **Currency:** ${a.CurrencyRef.value}\n`;
|
|
44
|
+
if (a.MetaData?.CreateTime)
|
|
45
|
+
result += `- **Created:** ${a.MetaData.CreateTime}\n`;
|
|
46
|
+
return result;
|
|
47
|
+
}
|
|
48
|
+
export async function qbo_list_accounts(client, input) {
|
|
49
|
+
let query = "SELECT * FROM Account";
|
|
50
|
+
if (input.where)
|
|
51
|
+
query += ` WHERE ${input.where}`;
|
|
52
|
+
if (input.order_by)
|
|
53
|
+
query += ` ORDER BY ${input.order_by}`;
|
|
54
|
+
query += ` STARTPOSITION ${input.start_position || 1}`;
|
|
55
|
+
query += ` MAXRESULTS ${input.max_results || 100}`;
|
|
56
|
+
const response = await client.query(query);
|
|
57
|
+
const accounts = response.QueryResponse.Account || [];
|
|
58
|
+
if (input.response_format === "json") {
|
|
59
|
+
return JSON.stringify({ accounts, total: response.QueryResponse.totalCount }, null, 2);
|
|
60
|
+
}
|
|
61
|
+
let result = `# Chart of Accounts (${accounts.length} results)\n\n`;
|
|
62
|
+
if (accounts.length === 0) {
|
|
63
|
+
result += "No accounts found.";
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
for (const a of accounts) {
|
|
67
|
+
result += formatAccount(a) + "\n";
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return result;
|
|
71
|
+
}
|
|
72
|
+
export async function qbo_get_account(client, input) {
|
|
73
|
+
const response = await client.get(`/account/${input.account_id}`);
|
|
74
|
+
const a = response.Account;
|
|
75
|
+
if (input.response_format === "json") {
|
|
76
|
+
return JSON.stringify(a, null, 2);
|
|
77
|
+
}
|
|
78
|
+
return `# Account\n\n` + formatAccount(a);
|
|
79
|
+
}
|
|
80
|
+
export async function qbo_create_account(client, input) {
|
|
81
|
+
const body = {
|
|
82
|
+
Name: input.name,
|
|
83
|
+
AccountType: input.account_type,
|
|
84
|
+
};
|
|
85
|
+
if (input.account_sub_type)
|
|
86
|
+
body.AccountSubType = input.account_sub_type;
|
|
87
|
+
const response = await client.post("/account", body);
|
|
88
|
+
const a = response.Account;
|
|
89
|
+
if (input.response_format === "json") {
|
|
90
|
+
return JSON.stringify(a, null, 2);
|
|
91
|
+
}
|
|
92
|
+
return `# Account Created\n\n` + formatAccount(a);
|
|
93
|
+
}
|
|
94
|
+
export async function qbo_update_account(client, input) {
|
|
95
|
+
const body = {
|
|
96
|
+
Id: input.account_id,
|
|
97
|
+
SyncToken: input.sync_token,
|
|
98
|
+
sparse: true,
|
|
99
|
+
};
|
|
100
|
+
if (input.name)
|
|
101
|
+
body.Name = input.name;
|
|
102
|
+
if (input.active !== undefined)
|
|
103
|
+
body.Active = input.active;
|
|
104
|
+
const response = await client.post("/account", body);
|
|
105
|
+
const a = response.Account;
|
|
106
|
+
if (input.response_format === "json") {
|
|
107
|
+
return JSON.stringify(a, null, 2);
|
|
108
|
+
}
|
|
109
|
+
return `# Account Updated\n\n` + formatAccount(a);
|
|
110
|
+
}
|
|
111
|
+
export const ListAccountsInputSchemaExport = ListAccountsInputSchema;
|
|
112
|
+
export const GetAccountInputSchemaExport = GetAccountInputSchema;
|
|
113
|
+
export const CreateAccountInputSchemaExport = CreateAccountInputSchema;
|
|
114
|
+
export const UpdateAccountInputSchemaExport = UpdateAccountInputSchema;
|
|
115
|
+
//# sourceMappingURL=accounts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accounts.js","sourceRoot":"","sources":["../../src/tools/accounts.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { QBOClient } from "../client.js";
|
|
3
|
+
declare const ListBillsInputSchema: z.ZodObject<{
|
|
4
|
+
where: z.ZodOptional<z.ZodString>;
|
|
5
|
+
order_by: z.ZodOptional<z.ZodString>;
|
|
6
|
+
start_position: z.ZodOptional<z.ZodNumber>;
|
|
7
|
+
max_results: z.ZodOptional<z.ZodNumber>;
|
|
8
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
9
|
+
}, "strict", z.ZodTypeAny, {
|
|
10
|
+
response_format: "json" | "markdown";
|
|
11
|
+
where?: string | undefined;
|
|
12
|
+
order_by?: string | undefined;
|
|
13
|
+
start_position?: number | undefined;
|
|
14
|
+
max_results?: number | undefined;
|
|
15
|
+
}, {
|
|
16
|
+
response_format?: "json" | "markdown" | undefined;
|
|
17
|
+
where?: string | undefined;
|
|
18
|
+
order_by?: string | undefined;
|
|
19
|
+
start_position?: number | undefined;
|
|
20
|
+
max_results?: number | undefined;
|
|
21
|
+
}>;
|
|
22
|
+
declare const GetBillInputSchema: z.ZodObject<{
|
|
23
|
+
bill_id: z.ZodString;
|
|
24
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
25
|
+
}, "strict", z.ZodTypeAny, {
|
|
26
|
+
response_format: "json" | "markdown";
|
|
27
|
+
bill_id: string;
|
|
28
|
+
}, {
|
|
29
|
+
bill_id: string;
|
|
30
|
+
response_format?: "json" | "markdown" | undefined;
|
|
31
|
+
}>;
|
|
32
|
+
declare const CreateBillInputSchema: z.ZodObject<{
|
|
33
|
+
vendor_id: z.ZodString;
|
|
34
|
+
line_items: z.ZodArray<z.ZodObject<{
|
|
35
|
+
description: z.ZodOptional<z.ZodString>;
|
|
36
|
+
amount: z.ZodNumber;
|
|
37
|
+
detail_type: z.ZodDefault<z.ZodEnum<["AccountBasedExpenseLineDetail", "ItemBasedExpenseLineDetail"]>>;
|
|
38
|
+
account_id: z.ZodOptional<z.ZodString>;
|
|
39
|
+
item_id: z.ZodOptional<z.ZodString>;
|
|
40
|
+
qty: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
unit_price: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
43
|
+
billable_status: z.ZodOptional<z.ZodEnum<["Billable", "NotBillable", "HasBeenBilled"]>>;
|
|
44
|
+
}, "strip", z.ZodTypeAny, {
|
|
45
|
+
amount: number;
|
|
46
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
47
|
+
customer_id?: string | undefined;
|
|
48
|
+
description?: string | undefined;
|
|
49
|
+
item_id?: string | undefined;
|
|
50
|
+
qty?: number | undefined;
|
|
51
|
+
unit_price?: number | undefined;
|
|
52
|
+
account_id?: string | undefined;
|
|
53
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
54
|
+
}, {
|
|
55
|
+
amount: number;
|
|
56
|
+
customer_id?: string | undefined;
|
|
57
|
+
description?: string | undefined;
|
|
58
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
59
|
+
item_id?: string | undefined;
|
|
60
|
+
qty?: number | undefined;
|
|
61
|
+
unit_price?: number | undefined;
|
|
62
|
+
account_id?: string | undefined;
|
|
63
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
64
|
+
}>, "many">;
|
|
65
|
+
txn_date: z.ZodOptional<z.ZodString>;
|
|
66
|
+
due_date: z.ZodOptional<z.ZodString>;
|
|
67
|
+
doc_number: z.ZodOptional<z.ZodString>;
|
|
68
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
69
|
+
}, "strict", z.ZodTypeAny, {
|
|
70
|
+
response_format: "json" | "markdown";
|
|
71
|
+
line_items: {
|
|
72
|
+
amount: number;
|
|
73
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
74
|
+
customer_id?: string | undefined;
|
|
75
|
+
description?: string | undefined;
|
|
76
|
+
item_id?: string | undefined;
|
|
77
|
+
qty?: number | undefined;
|
|
78
|
+
unit_price?: number | undefined;
|
|
79
|
+
account_id?: string | undefined;
|
|
80
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
81
|
+
}[];
|
|
82
|
+
vendor_id: string;
|
|
83
|
+
txn_date?: string | undefined;
|
|
84
|
+
due_date?: string | undefined;
|
|
85
|
+
doc_number?: string | undefined;
|
|
86
|
+
}, {
|
|
87
|
+
line_items: {
|
|
88
|
+
amount: number;
|
|
89
|
+
customer_id?: string | undefined;
|
|
90
|
+
description?: string | undefined;
|
|
91
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
92
|
+
item_id?: string | undefined;
|
|
93
|
+
qty?: number | undefined;
|
|
94
|
+
unit_price?: number | undefined;
|
|
95
|
+
account_id?: string | undefined;
|
|
96
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
97
|
+
}[];
|
|
98
|
+
vendor_id: string;
|
|
99
|
+
response_format?: "json" | "markdown" | undefined;
|
|
100
|
+
txn_date?: string | undefined;
|
|
101
|
+
due_date?: string | undefined;
|
|
102
|
+
doc_number?: string | undefined;
|
|
103
|
+
}>;
|
|
104
|
+
declare const UpdateBillInputSchema: z.ZodObject<{
|
|
105
|
+
bill_id: z.ZodString;
|
|
106
|
+
sync_token: z.ZodString;
|
|
107
|
+
vendor_id: z.ZodOptional<z.ZodString>;
|
|
108
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
109
|
+
description: z.ZodOptional<z.ZodString>;
|
|
110
|
+
amount: z.ZodNumber;
|
|
111
|
+
detail_type: z.ZodDefault<z.ZodEnum<["AccountBasedExpenseLineDetail", "ItemBasedExpenseLineDetail"]>>;
|
|
112
|
+
account_id: z.ZodOptional<z.ZodString>;
|
|
113
|
+
item_id: z.ZodOptional<z.ZodString>;
|
|
114
|
+
qty: z.ZodOptional<z.ZodNumber>;
|
|
115
|
+
unit_price: z.ZodOptional<z.ZodNumber>;
|
|
116
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
117
|
+
billable_status: z.ZodOptional<z.ZodEnum<["Billable", "NotBillable", "HasBeenBilled"]>>;
|
|
118
|
+
}, "strip", z.ZodTypeAny, {
|
|
119
|
+
amount: number;
|
|
120
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
121
|
+
customer_id?: string | undefined;
|
|
122
|
+
description?: string | undefined;
|
|
123
|
+
item_id?: string | undefined;
|
|
124
|
+
qty?: number | undefined;
|
|
125
|
+
unit_price?: number | undefined;
|
|
126
|
+
account_id?: string | undefined;
|
|
127
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
128
|
+
}, {
|
|
129
|
+
amount: number;
|
|
130
|
+
customer_id?: string | undefined;
|
|
131
|
+
description?: string | undefined;
|
|
132
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
133
|
+
item_id?: string | undefined;
|
|
134
|
+
qty?: number | undefined;
|
|
135
|
+
unit_price?: number | undefined;
|
|
136
|
+
account_id?: string | undefined;
|
|
137
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
138
|
+
}>, "many">>;
|
|
139
|
+
txn_date: z.ZodOptional<z.ZodString>;
|
|
140
|
+
due_date: z.ZodOptional<z.ZodString>;
|
|
141
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
142
|
+
}, "strict", z.ZodTypeAny, {
|
|
143
|
+
response_format: "json" | "markdown";
|
|
144
|
+
sync_token: string;
|
|
145
|
+
bill_id: string;
|
|
146
|
+
line_items?: {
|
|
147
|
+
amount: number;
|
|
148
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
149
|
+
customer_id?: string | undefined;
|
|
150
|
+
description?: string | undefined;
|
|
151
|
+
item_id?: string | undefined;
|
|
152
|
+
qty?: number | undefined;
|
|
153
|
+
unit_price?: number | undefined;
|
|
154
|
+
account_id?: string | undefined;
|
|
155
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
156
|
+
}[] | undefined;
|
|
157
|
+
txn_date?: string | undefined;
|
|
158
|
+
due_date?: string | undefined;
|
|
159
|
+
vendor_id?: string | undefined;
|
|
160
|
+
}, {
|
|
161
|
+
sync_token: string;
|
|
162
|
+
bill_id: string;
|
|
163
|
+
response_format?: "json" | "markdown" | undefined;
|
|
164
|
+
line_items?: {
|
|
165
|
+
amount: number;
|
|
166
|
+
customer_id?: string | undefined;
|
|
167
|
+
description?: string | undefined;
|
|
168
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
169
|
+
item_id?: string | undefined;
|
|
170
|
+
qty?: number | undefined;
|
|
171
|
+
unit_price?: number | undefined;
|
|
172
|
+
account_id?: string | undefined;
|
|
173
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
174
|
+
}[] | undefined;
|
|
175
|
+
txn_date?: string | undefined;
|
|
176
|
+
due_date?: string | undefined;
|
|
177
|
+
vendor_id?: string | undefined;
|
|
178
|
+
}>;
|
|
179
|
+
declare const DeleteBillInputSchema: z.ZodObject<{
|
|
180
|
+
bill_id: z.ZodString;
|
|
181
|
+
sync_token: z.ZodString;
|
|
182
|
+
}, "strict", z.ZodTypeAny, {
|
|
183
|
+
sync_token: string;
|
|
184
|
+
bill_id: string;
|
|
185
|
+
}, {
|
|
186
|
+
sync_token: string;
|
|
187
|
+
bill_id: string;
|
|
188
|
+
}>;
|
|
189
|
+
export type ListBillsInput = z.infer<typeof ListBillsInputSchema>;
|
|
190
|
+
export type GetBillInput = z.infer<typeof GetBillInputSchema>;
|
|
191
|
+
export type CreateBillInput = z.infer<typeof CreateBillInputSchema>;
|
|
192
|
+
export type UpdateBillInput = z.infer<typeof UpdateBillInputSchema>;
|
|
193
|
+
export type DeleteBillInput = z.infer<typeof DeleteBillInputSchema>;
|
|
194
|
+
export declare function qbo_list_bills(client: QBOClient, input: ListBillsInput): Promise<string>;
|
|
195
|
+
export declare function qbo_get_bill(client: QBOClient, input: GetBillInput): Promise<string>;
|
|
196
|
+
export declare function qbo_create_bill(client: QBOClient, input: CreateBillInput): Promise<string>;
|
|
197
|
+
export declare function qbo_update_bill(client: QBOClient, input: UpdateBillInput): Promise<string>;
|
|
198
|
+
export declare function qbo_delete_bill(client: QBOClient, input: DeleteBillInput): Promise<string>;
|
|
199
|
+
export declare const ListBillsInputSchemaExport: z.ZodObject<{
|
|
200
|
+
where: z.ZodOptional<z.ZodString>;
|
|
201
|
+
order_by: z.ZodOptional<z.ZodString>;
|
|
202
|
+
start_position: z.ZodOptional<z.ZodNumber>;
|
|
203
|
+
max_results: z.ZodOptional<z.ZodNumber>;
|
|
204
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
205
|
+
}, "strict", z.ZodTypeAny, {
|
|
206
|
+
response_format: "json" | "markdown";
|
|
207
|
+
where?: string | undefined;
|
|
208
|
+
order_by?: string | undefined;
|
|
209
|
+
start_position?: number | undefined;
|
|
210
|
+
max_results?: number | undefined;
|
|
211
|
+
}, {
|
|
212
|
+
response_format?: "json" | "markdown" | undefined;
|
|
213
|
+
where?: string | undefined;
|
|
214
|
+
order_by?: string | undefined;
|
|
215
|
+
start_position?: number | undefined;
|
|
216
|
+
max_results?: number | undefined;
|
|
217
|
+
}>;
|
|
218
|
+
export declare const GetBillInputSchemaExport: z.ZodObject<{
|
|
219
|
+
bill_id: z.ZodString;
|
|
220
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
221
|
+
}, "strict", z.ZodTypeAny, {
|
|
222
|
+
response_format: "json" | "markdown";
|
|
223
|
+
bill_id: string;
|
|
224
|
+
}, {
|
|
225
|
+
bill_id: string;
|
|
226
|
+
response_format?: "json" | "markdown" | undefined;
|
|
227
|
+
}>;
|
|
228
|
+
export declare const CreateBillInputSchemaExport: z.ZodObject<{
|
|
229
|
+
vendor_id: z.ZodString;
|
|
230
|
+
line_items: z.ZodArray<z.ZodObject<{
|
|
231
|
+
description: z.ZodOptional<z.ZodString>;
|
|
232
|
+
amount: z.ZodNumber;
|
|
233
|
+
detail_type: z.ZodDefault<z.ZodEnum<["AccountBasedExpenseLineDetail", "ItemBasedExpenseLineDetail"]>>;
|
|
234
|
+
account_id: z.ZodOptional<z.ZodString>;
|
|
235
|
+
item_id: z.ZodOptional<z.ZodString>;
|
|
236
|
+
qty: z.ZodOptional<z.ZodNumber>;
|
|
237
|
+
unit_price: z.ZodOptional<z.ZodNumber>;
|
|
238
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
239
|
+
billable_status: z.ZodOptional<z.ZodEnum<["Billable", "NotBillable", "HasBeenBilled"]>>;
|
|
240
|
+
}, "strip", z.ZodTypeAny, {
|
|
241
|
+
amount: number;
|
|
242
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
243
|
+
customer_id?: string | undefined;
|
|
244
|
+
description?: string | undefined;
|
|
245
|
+
item_id?: string | undefined;
|
|
246
|
+
qty?: number | undefined;
|
|
247
|
+
unit_price?: number | undefined;
|
|
248
|
+
account_id?: string | undefined;
|
|
249
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
250
|
+
}, {
|
|
251
|
+
amount: number;
|
|
252
|
+
customer_id?: string | undefined;
|
|
253
|
+
description?: string | undefined;
|
|
254
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
255
|
+
item_id?: string | undefined;
|
|
256
|
+
qty?: number | undefined;
|
|
257
|
+
unit_price?: number | undefined;
|
|
258
|
+
account_id?: string | undefined;
|
|
259
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
260
|
+
}>, "many">;
|
|
261
|
+
txn_date: z.ZodOptional<z.ZodString>;
|
|
262
|
+
due_date: z.ZodOptional<z.ZodString>;
|
|
263
|
+
doc_number: z.ZodOptional<z.ZodString>;
|
|
264
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
265
|
+
}, "strict", z.ZodTypeAny, {
|
|
266
|
+
response_format: "json" | "markdown";
|
|
267
|
+
line_items: {
|
|
268
|
+
amount: number;
|
|
269
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
270
|
+
customer_id?: string | undefined;
|
|
271
|
+
description?: string | undefined;
|
|
272
|
+
item_id?: string | undefined;
|
|
273
|
+
qty?: number | undefined;
|
|
274
|
+
unit_price?: number | undefined;
|
|
275
|
+
account_id?: string | undefined;
|
|
276
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
277
|
+
}[];
|
|
278
|
+
vendor_id: string;
|
|
279
|
+
txn_date?: string | undefined;
|
|
280
|
+
due_date?: string | undefined;
|
|
281
|
+
doc_number?: string | undefined;
|
|
282
|
+
}, {
|
|
283
|
+
line_items: {
|
|
284
|
+
amount: number;
|
|
285
|
+
customer_id?: string | undefined;
|
|
286
|
+
description?: string | undefined;
|
|
287
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
288
|
+
item_id?: string | undefined;
|
|
289
|
+
qty?: number | undefined;
|
|
290
|
+
unit_price?: number | undefined;
|
|
291
|
+
account_id?: string | undefined;
|
|
292
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
293
|
+
}[];
|
|
294
|
+
vendor_id: string;
|
|
295
|
+
response_format?: "json" | "markdown" | undefined;
|
|
296
|
+
txn_date?: string | undefined;
|
|
297
|
+
due_date?: string | undefined;
|
|
298
|
+
doc_number?: string | undefined;
|
|
299
|
+
}>;
|
|
300
|
+
export declare const UpdateBillInputSchemaExport: z.ZodObject<{
|
|
301
|
+
bill_id: z.ZodString;
|
|
302
|
+
sync_token: z.ZodString;
|
|
303
|
+
vendor_id: z.ZodOptional<z.ZodString>;
|
|
304
|
+
line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
305
|
+
description: z.ZodOptional<z.ZodString>;
|
|
306
|
+
amount: z.ZodNumber;
|
|
307
|
+
detail_type: z.ZodDefault<z.ZodEnum<["AccountBasedExpenseLineDetail", "ItemBasedExpenseLineDetail"]>>;
|
|
308
|
+
account_id: z.ZodOptional<z.ZodString>;
|
|
309
|
+
item_id: z.ZodOptional<z.ZodString>;
|
|
310
|
+
qty: z.ZodOptional<z.ZodNumber>;
|
|
311
|
+
unit_price: z.ZodOptional<z.ZodNumber>;
|
|
312
|
+
customer_id: z.ZodOptional<z.ZodString>;
|
|
313
|
+
billable_status: z.ZodOptional<z.ZodEnum<["Billable", "NotBillable", "HasBeenBilled"]>>;
|
|
314
|
+
}, "strip", z.ZodTypeAny, {
|
|
315
|
+
amount: number;
|
|
316
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
317
|
+
customer_id?: string | undefined;
|
|
318
|
+
description?: string | undefined;
|
|
319
|
+
item_id?: string | undefined;
|
|
320
|
+
qty?: number | undefined;
|
|
321
|
+
unit_price?: number | undefined;
|
|
322
|
+
account_id?: string | undefined;
|
|
323
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
324
|
+
}, {
|
|
325
|
+
amount: number;
|
|
326
|
+
customer_id?: string | undefined;
|
|
327
|
+
description?: string | undefined;
|
|
328
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
329
|
+
item_id?: string | undefined;
|
|
330
|
+
qty?: number | undefined;
|
|
331
|
+
unit_price?: number | undefined;
|
|
332
|
+
account_id?: string | undefined;
|
|
333
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
334
|
+
}>, "many">>;
|
|
335
|
+
txn_date: z.ZodOptional<z.ZodString>;
|
|
336
|
+
due_date: z.ZodOptional<z.ZodString>;
|
|
337
|
+
response_format: z.ZodDefault<z.ZodEnum<["json", "markdown"]>>;
|
|
338
|
+
}, "strict", z.ZodTypeAny, {
|
|
339
|
+
response_format: "json" | "markdown";
|
|
340
|
+
sync_token: string;
|
|
341
|
+
bill_id: string;
|
|
342
|
+
line_items?: {
|
|
343
|
+
amount: number;
|
|
344
|
+
detail_type: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail";
|
|
345
|
+
customer_id?: string | undefined;
|
|
346
|
+
description?: string | undefined;
|
|
347
|
+
item_id?: string | undefined;
|
|
348
|
+
qty?: number | undefined;
|
|
349
|
+
unit_price?: number | undefined;
|
|
350
|
+
account_id?: string | undefined;
|
|
351
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
352
|
+
}[] | undefined;
|
|
353
|
+
txn_date?: string | undefined;
|
|
354
|
+
due_date?: string | undefined;
|
|
355
|
+
vendor_id?: string | undefined;
|
|
356
|
+
}, {
|
|
357
|
+
sync_token: string;
|
|
358
|
+
bill_id: string;
|
|
359
|
+
response_format?: "json" | "markdown" | undefined;
|
|
360
|
+
line_items?: {
|
|
361
|
+
amount: number;
|
|
362
|
+
customer_id?: string | undefined;
|
|
363
|
+
description?: string | undefined;
|
|
364
|
+
detail_type?: "AccountBasedExpenseLineDetail" | "ItemBasedExpenseLineDetail" | undefined;
|
|
365
|
+
item_id?: string | undefined;
|
|
366
|
+
qty?: number | undefined;
|
|
367
|
+
unit_price?: number | undefined;
|
|
368
|
+
account_id?: string | undefined;
|
|
369
|
+
billable_status?: "Billable" | "NotBillable" | "HasBeenBilled" | undefined;
|
|
370
|
+
}[] | undefined;
|
|
371
|
+
txn_date?: string | undefined;
|
|
372
|
+
due_date?: string | undefined;
|
|
373
|
+
vendor_id?: string | undefined;
|
|
374
|
+
}>;
|
|
375
|
+
export declare const DeleteBillInputSchemaExport: z.ZodObject<{
|
|
376
|
+
bill_id: z.ZodString;
|
|
377
|
+
sync_token: z.ZodString;
|
|
378
|
+
}, "strict", z.ZodTypeAny, {
|
|
379
|
+
sync_token: string;
|
|
380
|
+
bill_id: string;
|
|
381
|
+
}, {
|
|
382
|
+
sync_token: string;
|
|
383
|
+
bill_id: string;
|
|
384
|
+
}>;
|
|
385
|
+
export {};
|
|
386
|
+
//# sourceMappingURL=bills.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bills.d.ts","sourceRoot":"","sources":["../../src/tools/bills.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAezC,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAMf,CAAC;AAEZ,QAAA,MAAM,kBAAkB;;;;;;;;;EAGb,CAAC;AAEZ,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOhB,CAAC;AAEZ,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhB,CAAC;AAEZ,QAAA,MAAM,qBAAqB;;;;;;;;;EAGhB,CAAC;AAEZ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AA0CpE,wBAAsB,cAAc,CAClC,MAAM,EAAE,SAAS,EACjB,KAAK,EAAE,cAAc,GACpB,OAAO,CAAC,MAAM,CAAC,CAuBjB;AAED,wBAAsB,YAAY,CAChC,MAAM,EAAE,SAAS,EACjB,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC,MAAM,CAAC,CASjB;AAED,wBAAsB,eAAe,CACnC,MAAM,EAAE,SAAS,EACjB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,MAAM,CAAC,CAiBjB;AAED,wBAAsB,eAAe,CACnC,MAAM,EAAE,SAAS,EACjB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,MAAM,CAAC,CAmBjB;AAED,wBAAsB,eAAe,CACnC,MAAM,EAAE,SAAS,EACjB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;EAAuB,CAAC;AAC/D,eAAO,MAAM,wBAAwB;;;;;;;;;EAAqB,CAAC;AAC3D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwB,CAAC;AACjE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwB,CAAC;AACjE,eAAO,MAAM,2BAA2B;;;;;;;;;EAAwB,CAAC"}
|