@s-corp-biz/biz-entity-api 1.6.0-development.3
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/lib/api/auth-api.d.ts +135 -0
- package/lib/api/auth-api.js +386 -0
- package/lib/api/class2553-irs-form-editor-api.d.ts +70 -0
- package/lib/api/class2553-irs-form-editor-api.js +211 -0
- package/lib/api/company-api.d.ts +262 -0
- package/lib/api/company-api.js +753 -0
- package/lib/api/depreciation-api.d.ts +196 -0
- package/lib/api/depreciation-api.js +564 -0
- package/lib/api/family-api.d.ts +247 -0
- package/lib/api/family-api.js +713 -0
- package/lib/api/people-api.d.ts +430 -0
- package/lib/api/people-api.js +1184 -0
- package/lib/api/personal-tax-report-adjustments-to-income-api.d.ts +290 -0
- package/lib/api/personal-tax-report-adjustments-to-income-api.js +824 -0
- package/lib/api/personal-tax-report-api.d.ts +298 -0
- package/lib/api/personal-tax-report-api.js +834 -0
- package/lib/api/personal-tax-report-capital-gain-api.d.ts +290 -0
- package/lib/api/personal-tax-report-capital-gain-api.js +824 -0
- package/lib/api/personal-tax-report-federal-tax-section-api.d.ts +228 -0
- package/lib/api/personal-tax-report-federal-tax-section-api.js +650 -0
- package/lib/api/personal-tax-report-minimum-amount-api.d.ts +104 -0
- package/lib/api/personal-tax-report-minimum-amount-api.js +302 -0
- package/lib/api/personal-tax-report-other-income-api.d.ts +290 -0
- package/lib/api/personal-tax-report-other-income-api.js +824 -0
- package/lib/api/personal-tax-report-personal-itemized-deductions-api.d.ts +290 -0
- package/lib/api/personal-tax-report-personal-itemized-deductions-api.js +824 -0
- package/lib/api/personal-tax-report-w2-wages-api.d.ts +204 -0
- package/lib/api/personal-tax-report-w2-wages-api.js +574 -0
- package/lib/api/quick-books-auth-api.d.ts +106 -0
- package/lib/api/quick-books-auth-api.js +310 -0
- package/lib/api/stripe-api.d.ts +70 -0
- package/lib/api/stripe-api.js +211 -0
- package/lib/api/tax-category-api.d.ts +66 -0
- package/lib/api/tax-category-api.js +205 -0
- package/lib/api/tax-category-map-api.d.ts +171 -0
- package/lib/api/tax-category-map-api.js +484 -0
- package/lib/api/tax-line-items-api.d.ts +133 -0
- package/lib/api/tax-line-items-api.js +386 -0
- package/lib/api.d.ts +30 -0
- package/lib/api.js +48 -0
- package/lib/base.d.ts +66 -0
- package/lib/base.js +86 -0
- package/lib/common.d.ts +65 -0
- package/lib/common.js +253 -0
- package/lib/configuration.d.ts +91 -0
- package/lib/configuration.js +57 -0
- package/lib/index.d.ts +14 -0
- package/lib/index.js +32 -0
- package/lib/models/accept-invitation-request.d.ts +31 -0
- package/lib/models/accept-invitation-request.js +15 -0
- package/lib/models/account-name-response.d.ts +42 -0
- package/lib/models/account-name-response.js +15 -0
- package/lib/models/account-type.d.ts +25 -0
- package/lib/models/account-type.js +29 -0
- package/lib/models/add-existing-member-request.d.ts +24 -0
- package/lib/models/add-existing-member-request.js +15 -0
- package/lib/models/add-family-member-request.d.ts +31 -0
- package/lib/models/add-family-member-request.js +15 -0
- package/lib/models/add-person-request.d.ts +91 -0
- package/lib/models/add-person-request.js +15 -0
- package/lib/models/authenticated-user-in-ui.d.ts +42 -0
- package/lib/models/authenticated-user-in-ui.js +15 -0
- package/lib/models/company-ownership-transfer-request.d.ts +24 -0
- package/lib/models/company-ownership-transfer-request.js +15 -0
- package/lib/models/company-response.d.ts +115 -0
- package/lib/models/company-response.js +15 -0
- package/lib/models/company-update-request.d.ts +66 -0
- package/lib/models/company-update-request.js +15 -0
- package/lib/models/company-user-response.d.ts +96 -0
- package/lib/models/company-user-response.js +15 -0
- package/lib/models/create-depreciation-request.d.ts +54 -0
- package/lib/models/create-depreciation-request.js +15 -0
- package/lib/models/create-payment-intent-request.d.ts +30 -0
- package/lib/models/create-payment-intent-request.js +15 -0
- package/lib/models/create-tax-line-item-request.d.ts +48 -0
- package/lib/models/create-tax-line-item-request.js +15 -0
- package/lib/models/create-w2-wages-request.d.ts +48 -0
- package/lib/models/create-w2-wages-request.js +15 -0
- package/lib/models/depreciation-response.d.ts +74 -0
- package/lib/models/depreciation-response.js +15 -0
- package/lib/models/family-member-info.d.ts +42 -0
- package/lib/models/family-member-info.js +15 -0
- package/lib/models/family-member-permission-request.d.ts +31 -0
- package/lib/models/family-member-permission-request.js +15 -0
- package/lib/models/family-member-response.d.ts +42 -0
- package/lib/models/family-member-response.js +15 -0
- package/lib/models/federal-tax-estimate-response.d.ts +30 -0
- package/lib/models/federal-tax-estimate-response.js +15 -0
- package/lib/models/filing-status-enum.d.ts +24 -0
- package/lib/models/filing-status-enum.js +28 -0
- package/lib/models/fill2553-irs-form-request.d.ts +54 -0
- package/lib/models/fill2553-irs-form-request.js +15 -0
- package/lib/models/head-personal-tax-report-summary-response.d.ts +39 -0
- package/lib/models/head-personal-tax-report-summary-response.js +15 -0
- package/lib/models/http-status-code.d.ts +80 -0
- package/lib/models/http-status-code.js +84 -0
- package/lib/models/index.d.ts +64 -0
- package/lib/models/index.js +80 -0
- package/lib/models/invitation-metadata-response.d.ts +67 -0
- package/lib/models/invitation-metadata-response.js +15 -0
- package/lib/models/join-family-by-company-request.d.ts +31 -0
- package/lib/models/join-family-by-company-request.js +15 -0
- package/lib/models/long-term-capital-gains-tax-response.d.ts +30 -0
- package/lib/models/long-term-capital-gains-tax-response.js +15 -0
- package/lib/models/monthly-data.d.ts +30 -0
- package/lib/models/monthly-data.js +15 -0
- package/lib/models/open-id-claim-response.d.ts +31 -0
- package/lib/models/open-id-claim-response.js +15 -0
- package/lib/models/open-id-options-result.d.ts +24 -0
- package/lib/models/open-id-options-result.js +15 -0
- package/lib/models/people-response.d.ts +108 -0
- package/lib/models/people-response.js +15 -0
- package/lib/models/permissions-enum.d.ts +24 -0
- package/lib/models/permissions-enum.js +28 -0
- package/lib/models/personal-tax-report-response.d.ts +55 -0
- package/lib/models/personal-tax-report-response.js +15 -0
- package/lib/models/problem-details.d.ts +49 -0
- package/lib/models/problem-details.js +15 -0
- package/lib/models/qbaccount-name-info.d.ts +30 -0
- package/lib/models/qbaccount-name-info.js +15 -0
- package/lib/models/qbaccounts.d.ts +54 -0
- package/lib/models/qbaccounts.js +15 -0
- package/lib/models/quick-books-account-mapping.d.ts +36 -0
- package/lib/models/quick-books-account-mapping.js +15 -0
- package/lib/models/resend-invitation-request.d.ts +30 -0
- package/lib/models/resend-invitation-request.js +15 -0
- package/lib/models/send-invitation-request.d.ts +42 -0
- package/lib/models/send-invitation-request.js +15 -0
- package/lib/models/shared-family-info-response.d.ts +44 -0
- package/lib/models/shared-family-info-response.js +15 -0
- package/lib/models/sign-in-with-open-id-req.d.ts +30 -0
- package/lib/models/sign-in-with-open-id-req.js +15 -0
- package/lib/models/tax-calculation-step.d.ts +45 -0
- package/lib/models/tax-calculation-step.js +15 -0
- package/lib/models/tax-categories.d.ts +43 -0
- package/lib/models/tax-categories.js +15 -0
- package/lib/models/tax-category-balance.d.ts +49 -0
- package/lib/models/tax-category-balance.js +15 -0
- package/lib/models/tax-category-balances.d.ts +79 -0
- package/lib/models/tax-category-balances.js +15 -0
- package/lib/models/tax-category-enum.d.ts +35 -0
- package/lib/models/tax-category-enum.js +39 -0
- package/lib/models/tax-category-info.d.ts +31 -0
- package/lib/models/tax-category-info.js +15 -0
- package/lib/models/tax-category-response.d.ts +37 -0
- package/lib/models/tax-category-response.js +15 -0
- package/lib/models/tax-category-to-qbaccount-mappings.d.ts +87 -0
- package/lib/models/tax-category-to-qbaccount-mappings.js +15 -0
- package/lib/models/tax-dashboard-calculations.d.ts +67 -0
- package/lib/models/tax-dashboard-calculations.js +15 -0
- package/lib/models/tax-dashboard-value.d.ts +31 -0
- package/lib/models/tax-dashboard-value.js +15 -0
- package/lib/models/tax-item-definition-response.d.ts +31 -0
- package/lib/models/tax-item-definition-response.js +15 -0
- package/lib/models/tax-item-type-enum.d.ts +40 -0
- package/lib/models/tax-item-type-enum.js +44 -0
- package/lib/models/tax-line-item-response.d.ts +85 -0
- package/lib/models/tax-line-item-response.js +15 -0
- package/lib/models/tax-report-response.d.ts +57 -0
- package/lib/models/tax-report-response.js +15 -0
- package/lib/models/test-email-request.d.ts +24 -0
- package/lib/models/test-email-request.js +15 -0
- package/lib/models/unmapped-qbaccount.d.ts +36 -0
- package/lib/models/unmapped-qbaccount.js +15 -0
- package/lib/models/update-depreciation-request.d.ts +48 -0
- package/lib/models/update-depreciation-request.js +15 -0
- package/lib/models/update-person-request.d.ts +97 -0
- package/lib/models/update-person-request.js +15 -0
- package/lib/models/update-personal-tax-report-request.d.ts +25 -0
- package/lib/models/update-personal-tax-report-request.js +15 -0
- package/lib/models/update-tax-line-item-request.d.ts +48 -0
- package/lib/models/update-tax-line-item-request.js +15 -0
- package/lib/models/update-w2-wages-request.d.ts +48 -0
- package/lib/models/update-w2-wages-request.js +15 -0
- package/lib/models/user-summary-response.d.ts +36 -0
- package/lib/models/user-summary-response.js +15 -0
- package/lib/models/w2-wages-response.d.ts +78 -0
- package/lib/models/w2-wages-response.js +15 -0
- package/package.json +118 -0
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* biz-entity-api
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v2
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { CreateTaxLineItemRequest } from '../models';
|
|
16
|
+
import type { TaxLineItemResponse } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* PersonalTaxReportAdjustmentsToIncomeApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const PersonalTaxReportAdjustmentsToIncomeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @param {string} reportId
|
|
25
|
+
* @param {*} [options] Override http request option.
|
|
26
|
+
* @throws {RequiredError}
|
|
27
|
+
*/
|
|
28
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @param {string} reportId
|
|
32
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost: (reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @param {string} reportId
|
|
40
|
+
* @param {*} [options] Override http request option.
|
|
41
|
+
* @throws {RequiredError}
|
|
42
|
+
*/
|
|
43
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @param {string} reportId
|
|
47
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost: (reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @param {string} reportId
|
|
55
|
+
* @param {*} [options] Override http request option.
|
|
56
|
+
* @throws {RequiredError}
|
|
57
|
+
*/
|
|
58
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @param {string} reportId
|
|
62
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
63
|
+
* @param {*} [options] Override http request option.
|
|
64
|
+
* @throws {RequiredError}
|
|
65
|
+
*/
|
|
66
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost: (reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @param {string} reportId
|
|
70
|
+
* @param {*} [options] Override http request option.
|
|
71
|
+
* @throws {RequiredError}
|
|
72
|
+
*/
|
|
73
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @param {string} reportId
|
|
77
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
78
|
+
* @param {*} [options] Override http request option.
|
|
79
|
+
* @throws {RequiredError}
|
|
80
|
+
*/
|
|
81
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost: (reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* PersonalTaxReportAdjustmentsToIncomeApi - functional programming interface
|
|
85
|
+
* @export
|
|
86
|
+
*/
|
|
87
|
+
export declare const PersonalTaxReportAdjustmentsToIncomeApiFp: (configuration?: Configuration) => {
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @param {string} reportId
|
|
91
|
+
* @param {*} [options] Override http request option.
|
|
92
|
+
* @throws {RequiredError}
|
|
93
|
+
*/
|
|
94
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaxLineItemResponse>>>;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @param {string} reportId
|
|
98
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
99
|
+
* @param {*} [options] Override http request option.
|
|
100
|
+
* @throws {RequiredError}
|
|
101
|
+
*/
|
|
102
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaxLineItemResponse>>;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @param {string} reportId
|
|
106
|
+
* @param {*} [options] Override http request option.
|
|
107
|
+
* @throws {RequiredError}
|
|
108
|
+
*/
|
|
109
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaxLineItemResponse>>>;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @param {string} reportId
|
|
113
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
*/
|
|
117
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaxLineItemResponse>>;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @param {string} reportId
|
|
121
|
+
* @param {*} [options] Override http request option.
|
|
122
|
+
* @throws {RequiredError}
|
|
123
|
+
*/
|
|
124
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaxLineItemResponse>>>;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @param {string} reportId
|
|
128
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
129
|
+
* @param {*} [options] Override http request option.
|
|
130
|
+
* @throws {RequiredError}
|
|
131
|
+
*/
|
|
132
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaxLineItemResponse>>;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @param {string} reportId
|
|
136
|
+
* @param {*} [options] Override http request option.
|
|
137
|
+
* @throws {RequiredError}
|
|
138
|
+
*/
|
|
139
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaxLineItemResponse>>>;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @param {string} reportId
|
|
143
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
144
|
+
* @param {*} [options] Override http request option.
|
|
145
|
+
* @throws {RequiredError}
|
|
146
|
+
*/
|
|
147
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaxLineItemResponse>>;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* PersonalTaxReportAdjustmentsToIncomeApi - factory interface
|
|
151
|
+
* @export
|
|
152
|
+
*/
|
|
153
|
+
export declare const PersonalTaxReportAdjustmentsToIncomeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @param {string} reportId
|
|
157
|
+
* @param {*} [options] Override http request option.
|
|
158
|
+
* @throws {RequiredError}
|
|
159
|
+
*/
|
|
160
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet(reportId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<TaxLineItemResponse>>;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @param {string} reportId
|
|
164
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
165
|
+
* @param {*} [options] Override http request option.
|
|
166
|
+
* @throws {RequiredError}
|
|
167
|
+
*/
|
|
168
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<TaxLineItemResponse>;
|
|
169
|
+
/**
|
|
170
|
+
*
|
|
171
|
+
* @param {string} reportId
|
|
172
|
+
* @param {*} [options] Override http request option.
|
|
173
|
+
* @throws {RequiredError}
|
|
174
|
+
*/
|
|
175
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet(reportId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<TaxLineItemResponse>>;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @param {string} reportId
|
|
179
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
180
|
+
* @param {*} [options] Override http request option.
|
|
181
|
+
* @throws {RequiredError}
|
|
182
|
+
*/
|
|
183
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<TaxLineItemResponse>;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @param {string} reportId
|
|
187
|
+
* @param {*} [options] Override http request option.
|
|
188
|
+
* @throws {RequiredError}
|
|
189
|
+
*/
|
|
190
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet(reportId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<TaxLineItemResponse>>;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @param {string} reportId
|
|
194
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @throws {RequiredError}
|
|
197
|
+
*/
|
|
198
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<TaxLineItemResponse>;
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @param {string} reportId
|
|
202
|
+
* @param {*} [options] Override http request option.
|
|
203
|
+
* @throws {RequiredError}
|
|
204
|
+
*/
|
|
205
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet(reportId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<TaxLineItemResponse>>;
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @param {string} reportId
|
|
209
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
210
|
+
* @param {*} [options] Override http request option.
|
|
211
|
+
* @throws {RequiredError}
|
|
212
|
+
*/
|
|
213
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<TaxLineItemResponse>;
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* PersonalTaxReportAdjustmentsToIncomeApi - object-oriented interface
|
|
217
|
+
* @export
|
|
218
|
+
* @class PersonalTaxReportAdjustmentsToIncomeApi
|
|
219
|
+
* @extends {BaseAPI}
|
|
220
|
+
*/
|
|
221
|
+
export declare class PersonalTaxReportAdjustmentsToIncomeApi extends BaseAPI {
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @param {string} reportId
|
|
225
|
+
* @param {*} [options] Override http request option.
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
228
|
+
*/
|
|
229
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse[], any, {}>>;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @param {string} reportId
|
|
233
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
234
|
+
* @param {*} [options] Override http request option.
|
|
235
|
+
* @throws {RequiredError}
|
|
236
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
237
|
+
*/
|
|
238
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse, any, {}>>;
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* @param {string} reportId
|
|
242
|
+
* @param {*} [options] Override http request option.
|
|
243
|
+
* @throws {RequiredError}
|
|
244
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
245
|
+
*/
|
|
246
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse[], any, {}>>;
|
|
247
|
+
/**
|
|
248
|
+
*
|
|
249
|
+
* @param {string} reportId
|
|
250
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
251
|
+
* @param {*} [options] Override http request option.
|
|
252
|
+
* @throws {RequiredError}
|
|
253
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
254
|
+
*/
|
|
255
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse, any, {}>>;
|
|
256
|
+
/**
|
|
257
|
+
*
|
|
258
|
+
* @param {string} reportId
|
|
259
|
+
* @param {*} [options] Override http request option.
|
|
260
|
+
* @throws {RequiredError}
|
|
261
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
262
|
+
*/
|
|
263
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse[], any, {}>>;
|
|
264
|
+
/**
|
|
265
|
+
*
|
|
266
|
+
* @param {string} reportId
|
|
267
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
268
|
+
* @param {*} [options] Override http request option.
|
|
269
|
+
* @throws {RequiredError}
|
|
270
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
271
|
+
*/
|
|
272
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse, any, {}>>;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @param {string} reportId
|
|
276
|
+
* @param {*} [options] Override http request option.
|
|
277
|
+
* @throws {RequiredError}
|
|
278
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
279
|
+
*/
|
|
280
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse[], any, {}>>;
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @param {string} reportId
|
|
284
|
+
* @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
|
|
285
|
+
* @param {*} [options] Override http request option.
|
|
286
|
+
* @throws {RequiredError}
|
|
287
|
+
* @memberof PersonalTaxReportAdjustmentsToIncomeApi
|
|
288
|
+
*/
|
|
289
|
+
apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost(reportId: string, createTaxLineItemRequest?: CreateTaxLineItemRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxLineItemResponse, any, {}>>;
|
|
290
|
+
}
|