@servicetitan/moneyout-api-client 0.0.0-BuildCorrectly.6915a25d
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/ap-bill-approval-settings-v2.api.d.ts +96 -0
- package/dist/ap-bill-approval-settings-v2.api.d.ts.map +1 -0
- package/dist/ap-bill-approval-settings-v2.api.js +157 -0
- package/dist/ap-bill-approval-settings-v2.api.js.map +1 -0
- package/dist/ap-bill-approval-settings.api.d.ts +116 -0
- package/dist/ap-bill-approval-settings.api.d.ts.map +1 -0
- package/dist/ap-bill-approval-settings.api.js +164 -0
- package/dist/ap-bill-approval-settings.api.js.map +1 -0
- package/dist/ap-bill-approval-v2.api.d.ts +261 -0
- package/dist/ap-bill-approval-v2.api.d.ts.map +1 -0
- package/dist/ap-bill-approval-v2.api.js +314 -0
- package/dist/ap-bill-approval-v2.api.js.map +1 -0
- package/dist/ap-bill-approval.api.d.ts +163 -0
- package/dist/ap-bill-approval.api.d.ts.map +1 -0
- package/dist/ap-bill-approval.api.js +218 -0
- package/dist/ap-bill-approval.api.js.map +1 -0
- package/dist/bill-payments.api.d.ts +68 -0
- package/dist/bill-payments.api.d.ts.map +1 -0
- package/dist/bill-payments.api.js +124 -0
- package/dist/bill-payments.api.js.map +1 -0
- package/dist/expense-management.api.d.ts +384 -0
- package/dist/expense-management.api.d.ts.map +1 -0
- package/dist/expense-management.api.js +323 -0
- package/dist/expense-management.api.js.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -0
- package/dist/utils.d.ts +12 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +37 -0
- package/dist/utils.js.map +1 -0
- package/dist/vendor-sync.api.d.ts +229 -0
- package/dist/vendor-sync.api.d.ts.map +1 -0
- package/dist/vendor-sync.api.js +301 -0
- package/dist/vendor-sync.api.js.map +1 -0
- package/package.json +29 -0
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
import { AxiosPromise, CancelToken } from 'axios';
|
|
2
|
+
export interface IExpenseManagement {
|
|
3
|
+
/**
|
|
4
|
+
* List expense transactions with optional filters.
|
|
5
|
+
* @ids (optional) Filter by specific expense IDs.
|
|
6
|
+
* @vendorIds (optional) Filter by vendor IDs.
|
|
7
|
+
* @jobIds (optional) Filter by job IDs.
|
|
8
|
+
* @projectIds (optional) Filter by project IDs.
|
|
9
|
+
* @syncStatuses (optional) Filter by sync statuses (e.g. "Pending", "Posted", "Exported").
|
|
10
|
+
* @transactionStatuses (optional) Filter by transaction statuses (e.g. "Pending", "Complete", "Declined").
|
|
11
|
+
* @dateFrom (optional) Filter by transaction date (inclusive start).
|
|
12
|
+
* @dateTo (optional) Filter by transaction date (inclusive end).
|
|
13
|
+
* @creditCardAccountIds (optional) Filter by credit card GL account IDs.
|
|
14
|
+
* @businessUnitIds (optional) Filter by business unit IDs.
|
|
15
|
+
* @batchId (optional) Filter by batch ID.
|
|
16
|
+
* @totalMin (optional) Filter by minimum total cost.
|
|
17
|
+
* @totalMax (optional) Filter by maximum total cost.
|
|
18
|
+
* @page (optional) Page number (1-based). Defaults to 1.
|
|
19
|
+
* @pageSize (optional) Number of items per page. Defaults to 50.
|
|
20
|
+
* @sortBy (optional) Property name to sort by (e.g. "transactionDate", "total", "syncStatus"). Defaults to "transactionDate".
|
|
21
|
+
* @sortDirection (optional) Sort direction: "asc" or "desc". Defaults to "desc".
|
|
22
|
+
*/
|
|
23
|
+
list(tenantId: number, ids: string[] | null | undefined, vendorIds: number[] | null | undefined, jobIds: number[] | null | undefined, projectIds: number[] | null | undefined, syncStatuses: string[] | null | undefined, transactionStatuses: string[] | null | undefined, dateFrom: Date | null | undefined, dateTo: Date | null | undefined, creditCardAccountIds: number[] | null | undefined, businessUnitIds: number[] | null | undefined, batchId: number | null | undefined, totalMin: number | null | undefined, totalMax: number | null | undefined, page: number | undefined, pageSize: number | undefined, sortBy: string | null | undefined, sortDirection: string | null | undefined, cancelToken?: CancelToken): AxiosPromise<PagedResponseOfExpenseTransactionResponse>;
|
|
24
|
+
/**
|
|
25
|
+
* Create a new expense transaction
|
|
26
|
+
*/
|
|
27
|
+
create(tenantId: number, request: CreateExpenseTransactionRequest, cancelToken?: CancelToken): AxiosPromise<ExpenseTransactionResponse>;
|
|
28
|
+
/**
|
|
29
|
+
* Get a single expense transaction by ID
|
|
30
|
+
*/
|
|
31
|
+
get(tenantId: number, id: string, cancelToken?: CancelToken): AxiosPromise<ExpenseTransactionResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* Update an existing expense transaction
|
|
34
|
+
*/
|
|
35
|
+
update(tenantId: number, id: string, request: UpdateExpenseTransactionRequest, cancelToken?: CancelToken): AxiosPromise<ExpenseTransactionResponse>;
|
|
36
|
+
/**
|
|
37
|
+
* Delete an expense transaction (only if Pending)
|
|
38
|
+
*/
|
|
39
|
+
delete(tenantId: number, id: string, cancelToken?: CancelToken): AxiosPromise<void>;
|
|
40
|
+
/**
|
|
41
|
+
* Update sync status for one or more expense transactions (used by monolith batch posting)
|
|
42
|
+
*/
|
|
43
|
+
updateSyncStatus(tenantId: number, request: UpdateExpenseSyncStatusRequest, cancelToken?: CancelToken): AxiosPromise<UpdateExpenseSyncStatusResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* Upload a file attachment to an expense transaction
|
|
46
|
+
* @file (optional)
|
|
47
|
+
*/
|
|
48
|
+
uploadAttachment(tenantId: number, expenseId: string, file: FileParameter | undefined, cancelToken?: CancelToken): AxiosPromise<ExpenseAttachmentResponse>;
|
|
49
|
+
/**
|
|
50
|
+
* List attachments for an expense transaction
|
|
51
|
+
*/
|
|
52
|
+
listAttachments(tenantId: number, expenseId: string, cancelToken?: CancelToken): AxiosPromise<ExpenseAttachmentResponse[]>;
|
|
53
|
+
/**
|
|
54
|
+
* Download an attachment file
|
|
55
|
+
*/
|
|
56
|
+
downloadAttachment(tenantId: number, expenseId: string, attachmentId: string, cancelToken?: CancelToken): AxiosPromise<void>;
|
|
57
|
+
/**
|
|
58
|
+
* Delete an attachment from an expense transaction
|
|
59
|
+
*/
|
|
60
|
+
deleteAttachment(tenantId: number, expenseId: string, attachmentId: string, cancelToken?: CancelToken): AxiosPromise<void>;
|
|
61
|
+
}
|
|
62
|
+
export declare const BASE_URL_TOKEN_ExpenseManagement: import("@servicetitan/react-ioc").SymbolToken<string>;
|
|
63
|
+
export declare class ExpenseManagement implements IExpenseManagement {
|
|
64
|
+
private readonly baseUrl;
|
|
65
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
66
|
+
constructor(baseUrl?: string);
|
|
67
|
+
/**
|
|
68
|
+
* List expense transactions with optional filters.
|
|
69
|
+
* @ids (optional) Filter by specific expense IDs.
|
|
70
|
+
* @vendorIds (optional) Filter by vendor IDs.
|
|
71
|
+
* @jobIds (optional) Filter by job IDs.
|
|
72
|
+
* @projectIds (optional) Filter by project IDs.
|
|
73
|
+
* @syncStatuses (optional) Filter by sync statuses (e.g. "Pending", "Posted", "Exported").
|
|
74
|
+
* @transactionStatuses (optional) Filter by transaction statuses (e.g. "Pending", "Complete", "Declined").
|
|
75
|
+
* @dateFrom (optional) Filter by transaction date (inclusive start).
|
|
76
|
+
* @dateTo (optional) Filter by transaction date (inclusive end).
|
|
77
|
+
* @creditCardAccountIds (optional) Filter by credit card GL account IDs.
|
|
78
|
+
* @businessUnitIds (optional) Filter by business unit IDs.
|
|
79
|
+
* @batchId (optional) Filter by batch ID.
|
|
80
|
+
* @totalMin (optional) Filter by minimum total cost.
|
|
81
|
+
* @totalMax (optional) Filter by maximum total cost.
|
|
82
|
+
* @page (optional) Page number (1-based). Defaults to 1.
|
|
83
|
+
* @pageSize (optional) Number of items per page. Defaults to 50.
|
|
84
|
+
* @sortBy (optional) Property name to sort by (e.g. "transactionDate", "total", "syncStatus"). Defaults to "transactionDate".
|
|
85
|
+
* @sortDirection (optional) Sort direction: "asc" or "desc". Defaults to "desc".
|
|
86
|
+
*/
|
|
87
|
+
list(tenantId: number, ids: string[] | null | undefined, vendorIds: number[] | null | undefined, jobIds: number[] | null | undefined, projectIds: number[] | null | undefined, syncStatuses: string[] | null | undefined, transactionStatuses: string[] | null | undefined, dateFrom: Date | null | undefined, dateTo: Date | null | undefined, creditCardAccountIds: number[] | null | undefined, businessUnitIds: number[] | null | undefined, batchId: number | null | undefined, totalMin: number | null | undefined, totalMax: number | null | undefined, page: number | undefined, pageSize: number | undefined, sortBy: string | null | undefined, sortDirection: string | null | undefined, cancelToken?: CancelToken): AxiosPromise<PagedResponseOfExpenseTransactionResponse>;
|
|
88
|
+
/**
|
|
89
|
+
* Create a new expense transaction
|
|
90
|
+
*/
|
|
91
|
+
create(tenantId: number, request: CreateExpenseTransactionRequest, cancelToken?: CancelToken): AxiosPromise<ExpenseTransactionResponse>;
|
|
92
|
+
/**
|
|
93
|
+
* Get a single expense transaction by ID
|
|
94
|
+
*/
|
|
95
|
+
get(tenantId: number, id: string, cancelToken?: CancelToken): AxiosPromise<ExpenseTransactionResponse>;
|
|
96
|
+
/**
|
|
97
|
+
* Update an existing expense transaction
|
|
98
|
+
*/
|
|
99
|
+
update(tenantId: number, id: string, request: UpdateExpenseTransactionRequest, cancelToken?: CancelToken): AxiosPromise<ExpenseTransactionResponse>;
|
|
100
|
+
/**
|
|
101
|
+
* Delete an expense transaction (only if Pending)
|
|
102
|
+
*/
|
|
103
|
+
delete(tenantId: number, id: string, cancelToken?: CancelToken): AxiosPromise<void>;
|
|
104
|
+
/**
|
|
105
|
+
* Update sync status for one or more expense transactions (used by monolith batch posting)
|
|
106
|
+
*/
|
|
107
|
+
updateSyncStatus(tenantId: number, request: UpdateExpenseSyncStatusRequest, cancelToken?: CancelToken): AxiosPromise<UpdateExpenseSyncStatusResponse>;
|
|
108
|
+
/**
|
|
109
|
+
* Upload a file attachment to an expense transaction
|
|
110
|
+
* @file (optional)
|
|
111
|
+
*/
|
|
112
|
+
uploadAttachment(tenantId: number, expenseId: string, file: FileParameter | undefined, cancelToken?: CancelToken): AxiosPromise<ExpenseAttachmentResponse>;
|
|
113
|
+
/**
|
|
114
|
+
* List attachments for an expense transaction
|
|
115
|
+
*/
|
|
116
|
+
listAttachments(tenantId: number, expenseId: string, cancelToken?: CancelToken): AxiosPromise<ExpenseAttachmentResponse[]>;
|
|
117
|
+
/**
|
|
118
|
+
* Download an attachment file
|
|
119
|
+
*/
|
|
120
|
+
downloadAttachment(tenantId: number, expenseId: string, attachmentId: string, cancelToken?: CancelToken): AxiosPromise<void>;
|
|
121
|
+
/**
|
|
122
|
+
* Delete an attachment from an expense transaction
|
|
123
|
+
*/
|
|
124
|
+
deleteAttachment(tenantId: number, expenseId: string, attachmentId: string, cancelToken?: CancelToken): AxiosPromise<void>;
|
|
125
|
+
}
|
|
126
|
+
/** Generic paged response wrapper with total count for pagination support. */
|
|
127
|
+
export interface PagedResponseOfExpenseTransactionResponse {
|
|
128
|
+
/** Data collection */
|
|
129
|
+
data: ExpenseTransactionResponse[];
|
|
130
|
+
/** Current page number */
|
|
131
|
+
page: number;
|
|
132
|
+
/** Page size */
|
|
133
|
+
pageSize: number;
|
|
134
|
+
/** Total count of items (null if pagination not required) */
|
|
135
|
+
totalCount?: number | undefined;
|
|
136
|
+
/** Whether there are more pages */
|
|
137
|
+
hasMore: boolean;
|
|
138
|
+
}
|
|
139
|
+
export interface BaseEntityApiModel {
|
|
140
|
+
id: string;
|
|
141
|
+
createdOn: Date;
|
|
142
|
+
modifiedOn: Date;
|
|
143
|
+
}
|
|
144
|
+
export interface ExpenseTransactionResponse extends BaseEntityApiModel {
|
|
145
|
+
/** Tenant that owns this expense. */
|
|
146
|
+
tenantId: number;
|
|
147
|
+
/** Tenant-scoped expense transaction display number. */
|
|
148
|
+
number: string;
|
|
149
|
+
/** Free-text summary or notes for the expense. */
|
|
150
|
+
summary?: string | undefined;
|
|
151
|
+
/** The date the transaction occurred (from card statement). */
|
|
152
|
+
transactionDate?: Date | undefined;
|
|
153
|
+
/** Computed total: sum of line item amounts + tax + shipping. */
|
|
154
|
+
total: number;
|
|
155
|
+
/** Tax portion of the total. */
|
|
156
|
+
tax: number;
|
|
157
|
+
/** Shipping portion of the total. */
|
|
158
|
+
shipping: number;
|
|
159
|
+
/** Vendor where the expense was incurred. */
|
|
160
|
+
vendorId: number;
|
|
161
|
+
/** Business unit this expense is charged to. */
|
|
162
|
+
businessUnitId?: number | undefined;
|
|
163
|
+
/** Job this expense is associated with, if any. */
|
|
164
|
+
jobId?: number | undefined;
|
|
165
|
+
/** Project this expense is associated with, if any. */
|
|
166
|
+
projectId?: number | undefined;
|
|
167
|
+
/** Purchase order linked to this expense for two-way matching. */
|
|
168
|
+
purchaseOrderId?: number | undefined;
|
|
169
|
+
/** Employee (cardholder) who made the purchase. */
|
|
170
|
+
employeeId?: number | undefined;
|
|
171
|
+
/** Credit card GL account (Liability:Credit Card) this expense was charged to. */
|
|
172
|
+
creditCardAccountId?: number | undefined;
|
|
173
|
+
/** Merchant processing status (e.g. Pending, Complete, Error, Declined). */
|
|
174
|
+
transactionStatus: string;
|
|
175
|
+
/** Provider-supplied context for the transaction status — e.g. decline reason, error message, or status-specific note. */
|
|
176
|
+
transactionStatusDetails?: string | undefined;
|
|
177
|
+
/** Status of receipt documentation (e.g. Pending, Received). */
|
|
178
|
+
receiptStatus: string;
|
|
179
|
+
/** Last 4 digits of the card number. */
|
|
180
|
+
cardNumberLast4?: string | undefined;
|
|
181
|
+
/** Accounting sync/export status (e.g. Pending, Posted, Exported). */
|
|
182
|
+
syncStatus: string;
|
|
183
|
+
/** Batch this expense was posted in, if any. */
|
|
184
|
+
batchId?: number | undefined;
|
|
185
|
+
/** Identifier from the external expense provider (e.g. Ramp transaction ID). */
|
|
186
|
+
externalId?: string | undefined;
|
|
187
|
+
/** Name of the external provider (e.g. "Ramp"). */
|
|
188
|
+
externalSource?: string | undefined;
|
|
189
|
+
/** Card identifier from the external provider (e.g. Ramp card_id). */
|
|
190
|
+
externalCardId?: string | undefined;
|
|
191
|
+
/** Merchant Category Code (MCC) — a payment-brand classification of the merchant
|
|
192
|
+
by the type of goods or services provided (e.g., "5411" for grocery stores).
|
|
193
|
+
Populated from the card network via the expense source (e.g., Ramp). */
|
|
194
|
+
merchantCategory?: string | undefined;
|
|
195
|
+
/** Default debit GL account for the expense. Line items may override with their own GeneralLedgerAccountId. */
|
|
196
|
+
debitAccountId?: number | undefined;
|
|
197
|
+
/** Default budget code for the expense. Line items may override with their own BudgetCodeId. */
|
|
198
|
+
budgetCodeId?: number | undefined;
|
|
199
|
+
/** Denormalized project label(s) for display/export. */
|
|
200
|
+
projectLabels?: string | undefined;
|
|
201
|
+
/** Line items with expense GL accounts. */
|
|
202
|
+
lineItems: ExpenseTransactionLineItemResponse[];
|
|
203
|
+
/** Receipt attachments. File content is in Azure Blob Storage; these are metadata records. */
|
|
204
|
+
attachments: ExpenseAttachmentResponse[];
|
|
205
|
+
}
|
|
206
|
+
export interface ExpenseTransactionLineItemResponse extends BaseEntityApiModel {
|
|
207
|
+
/** Description of the line item. */
|
|
208
|
+
description: string;
|
|
209
|
+
/** Total dollar amount for this line item (Quantity × UnitPrice). */
|
|
210
|
+
amount: number;
|
|
211
|
+
/** Number of units purchased. */
|
|
212
|
+
quantity: number;
|
|
213
|
+
/** Dollar amount per unit. */
|
|
214
|
+
unitPrice: number;
|
|
215
|
+
/** Optional debit GL account override at the line level (defaults to header DebitAccountId if null). */
|
|
216
|
+
generalLedgerAccountId?: number | undefined;
|
|
217
|
+
/** Optional job override at the line level (defaults to header job if null). */
|
|
218
|
+
jobId?: number | undefined;
|
|
219
|
+
/** Optional project override at the line level (defaults to header project if null). */
|
|
220
|
+
projectId?: number | undefined;
|
|
221
|
+
/** Optional business unit override at the line level (defaults to header BU if null). */
|
|
222
|
+
businessUnitId?: number | undefined;
|
|
223
|
+
/** Optional budget code override at the line level (defaults to header BudgetCodeId if null). */
|
|
224
|
+
budgetCodeId?: number | undefined;
|
|
225
|
+
/** Denormalized project label for this line item. */
|
|
226
|
+
projectLabels?: string | undefined;
|
|
227
|
+
}
|
|
228
|
+
export interface ExpenseAttachmentResponse extends BaseEntityApiModel {
|
|
229
|
+
/** Sanitized file name for display and download. */
|
|
230
|
+
filename: string;
|
|
231
|
+
/** Original file name as uploaded by the user. */
|
|
232
|
+
originalFilename: string;
|
|
233
|
+
/** MIME content type. */
|
|
234
|
+
contentType: string;
|
|
235
|
+
/** File size in bytes. */
|
|
236
|
+
fileSize: number;
|
|
237
|
+
}
|
|
238
|
+
export interface CreateExpenseTransactionRequest {
|
|
239
|
+
/** Tenant-scoped expense transaction display number. */
|
|
240
|
+
number: string;
|
|
241
|
+
/** The date the transaction occurred (from card statement). */
|
|
242
|
+
transactionDate?: Date | undefined;
|
|
243
|
+
/** Tax portion of the total. */
|
|
244
|
+
tax: number;
|
|
245
|
+
/** Shipping portion of the total. */
|
|
246
|
+
shipping: number;
|
|
247
|
+
/** Vendor where the expense was incurred. */
|
|
248
|
+
vendorId: number;
|
|
249
|
+
/** Business unit this expense is charged to. */
|
|
250
|
+
businessUnitId?: number | undefined;
|
|
251
|
+
/** Job this expense is associated with, if any. */
|
|
252
|
+
jobId?: number | undefined;
|
|
253
|
+
/** Project this expense is associated with, if any. */
|
|
254
|
+
projectId?: number | undefined;
|
|
255
|
+
/** Purchase order linked to this expense for two-way matching. */
|
|
256
|
+
purchaseOrderId?: number | undefined;
|
|
257
|
+
/** Employee (cardholder) who made the purchase. */
|
|
258
|
+
employeeId?: number | undefined;
|
|
259
|
+
/** Credit card GL account (Liability:Credit Card) this expense was charged to. */
|
|
260
|
+
creditCardAccountId?: number | undefined;
|
|
261
|
+
/** Last 4 digits of the card number. */
|
|
262
|
+
cardNumberLast4?: string | undefined;
|
|
263
|
+
/** Merchant Category Code (MCC) — a payment-brand classification of the merchant
|
|
264
|
+
by the type of goods or services provided (e.g., "5411" for grocery stores). */
|
|
265
|
+
merchantCategory?: string | undefined;
|
|
266
|
+
/** Merchant processing status (e.g. "Pending", "Complete", "Error", "Declined"). Defaults to "Complete" for manual input. */
|
|
267
|
+
transactionStatus?: string | undefined;
|
|
268
|
+
/** Provider-supplied context for the transaction status — e.g. decline reason, error message, or status-specific note. */
|
|
269
|
+
transactionStatusDetails?: string | undefined;
|
|
270
|
+
/** Free-text summary or notes for the expense. */
|
|
271
|
+
summary?: string | undefined;
|
|
272
|
+
/** Default debit GL account for the expense. Line items may override with their own GeneralLedgerAccountId. */
|
|
273
|
+
debitAccountId?: number | undefined;
|
|
274
|
+
/** Default budget code for the expense. Line items may override with their own BudgetCodeId. */
|
|
275
|
+
budgetCodeId?: number | undefined;
|
|
276
|
+
/** Denormalized project label(s) for display/export. */
|
|
277
|
+
projectLabels?: string | undefined;
|
|
278
|
+
/** Line items with expense GL accounts. */
|
|
279
|
+
lineItems: ExpenseTransactionLineItemRequest[];
|
|
280
|
+
}
|
|
281
|
+
export interface ExpenseTransactionLineItemRequest {
|
|
282
|
+
/** Description of the line item. */
|
|
283
|
+
description: string;
|
|
284
|
+
/** Number of units purchased. */
|
|
285
|
+
quantity: number;
|
|
286
|
+
/** Dollar amount per unit. */
|
|
287
|
+
unitPrice: number;
|
|
288
|
+
/** Optional debit GL account override at the line level (defaults to header DebitAccountId if null). */
|
|
289
|
+
generalLedgerAccountId?: number | undefined;
|
|
290
|
+
/** Optional job override at the line level (defaults to header job if null). */
|
|
291
|
+
jobId?: number | undefined;
|
|
292
|
+
/** Optional project override at the line level (defaults to header project if null). */
|
|
293
|
+
projectId?: number | undefined;
|
|
294
|
+
/** Optional business unit override at the line level (defaults to header BU if null). */
|
|
295
|
+
businessUnitId?: number | undefined;
|
|
296
|
+
/** Optional budget code override at the line level (defaults to header BudgetCodeId if null). */
|
|
297
|
+
budgetCodeId?: number | undefined;
|
|
298
|
+
/** Denormalized project label for this line item. */
|
|
299
|
+
projectLabels?: string | undefined;
|
|
300
|
+
}
|
|
301
|
+
export interface UpdateExpenseTransactionRequest {
|
|
302
|
+
/** Tenant-scoped expense transaction display number. */
|
|
303
|
+
number: string;
|
|
304
|
+
/** The date the transaction occurred (from card statement). */
|
|
305
|
+
transactionDate?: Date | undefined;
|
|
306
|
+
/** Tax portion of the total. */
|
|
307
|
+
tax: number;
|
|
308
|
+
/** Shipping portion of the total. */
|
|
309
|
+
shipping: number;
|
|
310
|
+
/** Vendor where the expense was incurred. */
|
|
311
|
+
vendorId: number;
|
|
312
|
+
/** Business unit this expense is charged to. */
|
|
313
|
+
businessUnitId?: number | undefined;
|
|
314
|
+
/** Job this expense is associated with, if any. */
|
|
315
|
+
jobId?: number | undefined;
|
|
316
|
+
/** Project this expense is associated with, if any. */
|
|
317
|
+
projectId?: number | undefined;
|
|
318
|
+
/** Purchase order linked to this expense for two-way matching. */
|
|
319
|
+
purchaseOrderId?: number | undefined;
|
|
320
|
+
/** Employee (cardholder) who made the purchase. */
|
|
321
|
+
employeeId?: number | undefined;
|
|
322
|
+
/** Credit card GL account (Liability:Credit Card) this expense was charged to. */
|
|
323
|
+
creditCardAccountId?: number | undefined;
|
|
324
|
+
/** Last 4 digits of the card number. */
|
|
325
|
+
cardNumberLast4?: string | undefined;
|
|
326
|
+
/** Merchant Category Code (MCC) — a payment-brand classification of the merchant
|
|
327
|
+
by the type of goods or services provided (e.g., "5411" for grocery stores). */
|
|
328
|
+
merchantCategory?: string | undefined;
|
|
329
|
+
/** Merchant processing status (e.g. "Pending", "Complete", "Error", "Declined"). */
|
|
330
|
+
transactionStatus?: string | undefined;
|
|
331
|
+
/** Provider-supplied context for the transaction status — e.g. decline reason, error message, or status-specific note. */
|
|
332
|
+
transactionStatusDetails?: string | undefined;
|
|
333
|
+
/** Free-text summary or notes for the expense. */
|
|
334
|
+
summary?: string | undefined;
|
|
335
|
+
/** Default debit GL account for the expense. Line items may override with their own GeneralLedgerAccountId. */
|
|
336
|
+
debitAccountId?: number | undefined;
|
|
337
|
+
/** Default budget code for the expense. Line items may override with their own BudgetCodeId. */
|
|
338
|
+
budgetCodeId?: number | undefined;
|
|
339
|
+
/** Denormalized project label(s) for display/export. */
|
|
340
|
+
projectLabels?: string | undefined;
|
|
341
|
+
/** Line items with expense GL accounts. Include Id for existing items, omit for new. */
|
|
342
|
+
lineItems: UpdateExpenseTransactionLineItemRequest[];
|
|
343
|
+
}
|
|
344
|
+
export interface UpdateExpenseTransactionLineItemRequest {
|
|
345
|
+
/** ID of an existing line item to update. Null for new line items. */
|
|
346
|
+
id?: string | undefined;
|
|
347
|
+
/** Description of the line item. */
|
|
348
|
+
description: string;
|
|
349
|
+
/** Number of units purchased. */
|
|
350
|
+
quantity: number;
|
|
351
|
+
/** Dollar amount per unit. */
|
|
352
|
+
unitPrice: number;
|
|
353
|
+
/** Optional debit GL account override at the line level (defaults to header DebitAccountId if null). */
|
|
354
|
+
generalLedgerAccountId?: number | undefined;
|
|
355
|
+
/** Optional job override at the line level (defaults to header job if null). */
|
|
356
|
+
jobId?: number | undefined;
|
|
357
|
+
/** Optional project override at the line level (defaults to header project if null). */
|
|
358
|
+
projectId?: number | undefined;
|
|
359
|
+
/** Optional business unit override at the line level (defaults to header BU if null). */
|
|
360
|
+
businessUnitId?: number | undefined;
|
|
361
|
+
/** Optional budget code override at the line level (defaults to header BudgetCodeId if null). */
|
|
362
|
+
budgetCodeId?: number | undefined;
|
|
363
|
+
/** Denormalized project label for this line item. */
|
|
364
|
+
projectLabels?: string | undefined;
|
|
365
|
+
}
|
|
366
|
+
export interface UpdateExpenseSyncStatusResponse {
|
|
367
|
+
/** Whether any expenses were updated. */
|
|
368
|
+
updated: boolean;
|
|
369
|
+
/** Number of expense transactions that were updated. */
|
|
370
|
+
updatedCount: number;
|
|
371
|
+
}
|
|
372
|
+
export interface UpdateExpenseSyncStatusRequest {
|
|
373
|
+
/** IDs of the expense transactions to update. Maximum 500. */
|
|
374
|
+
expenseIds: string[];
|
|
375
|
+
/** Target sync status (e.g. "Pending", "Posted", "Exported"). */
|
|
376
|
+
targetStatus: string;
|
|
377
|
+
/** Batch ID. Required when transitioning to Posted. */
|
|
378
|
+
batchId?: number | undefined;
|
|
379
|
+
}
|
|
380
|
+
export interface FileParameter {
|
|
381
|
+
data: any;
|
|
382
|
+
fileName: string;
|
|
383
|
+
}
|
|
384
|
+
//# sourceMappingURL=expense-management.api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"expense-management.api.d.ts","sourceRoot":"","sources":["../src/expense-management.api.ts"],"names":[],"mappings":"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"}
|