@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.
Files changed (179) hide show
  1. package/lib/api/auth-api.d.ts +135 -0
  2. package/lib/api/auth-api.js +386 -0
  3. package/lib/api/class2553-irs-form-editor-api.d.ts +70 -0
  4. package/lib/api/class2553-irs-form-editor-api.js +211 -0
  5. package/lib/api/company-api.d.ts +262 -0
  6. package/lib/api/company-api.js +753 -0
  7. package/lib/api/depreciation-api.d.ts +196 -0
  8. package/lib/api/depreciation-api.js +564 -0
  9. package/lib/api/family-api.d.ts +247 -0
  10. package/lib/api/family-api.js +713 -0
  11. package/lib/api/people-api.d.ts +430 -0
  12. package/lib/api/people-api.js +1184 -0
  13. package/lib/api/personal-tax-report-adjustments-to-income-api.d.ts +290 -0
  14. package/lib/api/personal-tax-report-adjustments-to-income-api.js +824 -0
  15. package/lib/api/personal-tax-report-api.d.ts +298 -0
  16. package/lib/api/personal-tax-report-api.js +834 -0
  17. package/lib/api/personal-tax-report-capital-gain-api.d.ts +290 -0
  18. package/lib/api/personal-tax-report-capital-gain-api.js +824 -0
  19. package/lib/api/personal-tax-report-federal-tax-section-api.d.ts +228 -0
  20. package/lib/api/personal-tax-report-federal-tax-section-api.js +650 -0
  21. package/lib/api/personal-tax-report-minimum-amount-api.d.ts +104 -0
  22. package/lib/api/personal-tax-report-minimum-amount-api.js +302 -0
  23. package/lib/api/personal-tax-report-other-income-api.d.ts +290 -0
  24. package/lib/api/personal-tax-report-other-income-api.js +824 -0
  25. package/lib/api/personal-tax-report-personal-itemized-deductions-api.d.ts +290 -0
  26. package/lib/api/personal-tax-report-personal-itemized-deductions-api.js +824 -0
  27. package/lib/api/personal-tax-report-w2-wages-api.d.ts +204 -0
  28. package/lib/api/personal-tax-report-w2-wages-api.js +574 -0
  29. package/lib/api/quick-books-auth-api.d.ts +106 -0
  30. package/lib/api/quick-books-auth-api.js +310 -0
  31. package/lib/api/stripe-api.d.ts +70 -0
  32. package/lib/api/stripe-api.js +211 -0
  33. package/lib/api/tax-category-api.d.ts +66 -0
  34. package/lib/api/tax-category-api.js +205 -0
  35. package/lib/api/tax-category-map-api.d.ts +171 -0
  36. package/lib/api/tax-category-map-api.js +484 -0
  37. package/lib/api/tax-line-items-api.d.ts +133 -0
  38. package/lib/api/tax-line-items-api.js +386 -0
  39. package/lib/api.d.ts +30 -0
  40. package/lib/api.js +48 -0
  41. package/lib/base.d.ts +66 -0
  42. package/lib/base.js +86 -0
  43. package/lib/common.d.ts +65 -0
  44. package/lib/common.js +253 -0
  45. package/lib/configuration.d.ts +91 -0
  46. package/lib/configuration.js +57 -0
  47. package/lib/index.d.ts +14 -0
  48. package/lib/index.js +32 -0
  49. package/lib/models/accept-invitation-request.d.ts +31 -0
  50. package/lib/models/accept-invitation-request.js +15 -0
  51. package/lib/models/account-name-response.d.ts +42 -0
  52. package/lib/models/account-name-response.js +15 -0
  53. package/lib/models/account-type.d.ts +25 -0
  54. package/lib/models/account-type.js +29 -0
  55. package/lib/models/add-existing-member-request.d.ts +24 -0
  56. package/lib/models/add-existing-member-request.js +15 -0
  57. package/lib/models/add-family-member-request.d.ts +31 -0
  58. package/lib/models/add-family-member-request.js +15 -0
  59. package/lib/models/add-person-request.d.ts +91 -0
  60. package/lib/models/add-person-request.js +15 -0
  61. package/lib/models/authenticated-user-in-ui.d.ts +42 -0
  62. package/lib/models/authenticated-user-in-ui.js +15 -0
  63. package/lib/models/company-ownership-transfer-request.d.ts +24 -0
  64. package/lib/models/company-ownership-transfer-request.js +15 -0
  65. package/lib/models/company-response.d.ts +115 -0
  66. package/lib/models/company-response.js +15 -0
  67. package/lib/models/company-update-request.d.ts +66 -0
  68. package/lib/models/company-update-request.js +15 -0
  69. package/lib/models/company-user-response.d.ts +96 -0
  70. package/lib/models/company-user-response.js +15 -0
  71. package/lib/models/create-depreciation-request.d.ts +54 -0
  72. package/lib/models/create-depreciation-request.js +15 -0
  73. package/lib/models/create-payment-intent-request.d.ts +30 -0
  74. package/lib/models/create-payment-intent-request.js +15 -0
  75. package/lib/models/create-tax-line-item-request.d.ts +48 -0
  76. package/lib/models/create-tax-line-item-request.js +15 -0
  77. package/lib/models/create-w2-wages-request.d.ts +48 -0
  78. package/lib/models/create-w2-wages-request.js +15 -0
  79. package/lib/models/depreciation-response.d.ts +74 -0
  80. package/lib/models/depreciation-response.js +15 -0
  81. package/lib/models/family-member-info.d.ts +42 -0
  82. package/lib/models/family-member-info.js +15 -0
  83. package/lib/models/family-member-permission-request.d.ts +31 -0
  84. package/lib/models/family-member-permission-request.js +15 -0
  85. package/lib/models/family-member-response.d.ts +42 -0
  86. package/lib/models/family-member-response.js +15 -0
  87. package/lib/models/federal-tax-estimate-response.d.ts +30 -0
  88. package/lib/models/federal-tax-estimate-response.js +15 -0
  89. package/lib/models/filing-status-enum.d.ts +24 -0
  90. package/lib/models/filing-status-enum.js +28 -0
  91. package/lib/models/fill2553-irs-form-request.d.ts +54 -0
  92. package/lib/models/fill2553-irs-form-request.js +15 -0
  93. package/lib/models/head-personal-tax-report-summary-response.d.ts +39 -0
  94. package/lib/models/head-personal-tax-report-summary-response.js +15 -0
  95. package/lib/models/http-status-code.d.ts +80 -0
  96. package/lib/models/http-status-code.js +84 -0
  97. package/lib/models/index.d.ts +64 -0
  98. package/lib/models/index.js +80 -0
  99. package/lib/models/invitation-metadata-response.d.ts +67 -0
  100. package/lib/models/invitation-metadata-response.js +15 -0
  101. package/lib/models/join-family-by-company-request.d.ts +31 -0
  102. package/lib/models/join-family-by-company-request.js +15 -0
  103. package/lib/models/long-term-capital-gains-tax-response.d.ts +30 -0
  104. package/lib/models/long-term-capital-gains-tax-response.js +15 -0
  105. package/lib/models/monthly-data.d.ts +30 -0
  106. package/lib/models/monthly-data.js +15 -0
  107. package/lib/models/open-id-claim-response.d.ts +31 -0
  108. package/lib/models/open-id-claim-response.js +15 -0
  109. package/lib/models/open-id-options-result.d.ts +24 -0
  110. package/lib/models/open-id-options-result.js +15 -0
  111. package/lib/models/people-response.d.ts +108 -0
  112. package/lib/models/people-response.js +15 -0
  113. package/lib/models/permissions-enum.d.ts +24 -0
  114. package/lib/models/permissions-enum.js +28 -0
  115. package/lib/models/personal-tax-report-response.d.ts +55 -0
  116. package/lib/models/personal-tax-report-response.js +15 -0
  117. package/lib/models/problem-details.d.ts +49 -0
  118. package/lib/models/problem-details.js +15 -0
  119. package/lib/models/qbaccount-name-info.d.ts +30 -0
  120. package/lib/models/qbaccount-name-info.js +15 -0
  121. package/lib/models/qbaccounts.d.ts +54 -0
  122. package/lib/models/qbaccounts.js +15 -0
  123. package/lib/models/quick-books-account-mapping.d.ts +36 -0
  124. package/lib/models/quick-books-account-mapping.js +15 -0
  125. package/lib/models/resend-invitation-request.d.ts +30 -0
  126. package/lib/models/resend-invitation-request.js +15 -0
  127. package/lib/models/send-invitation-request.d.ts +42 -0
  128. package/lib/models/send-invitation-request.js +15 -0
  129. package/lib/models/shared-family-info-response.d.ts +44 -0
  130. package/lib/models/shared-family-info-response.js +15 -0
  131. package/lib/models/sign-in-with-open-id-req.d.ts +30 -0
  132. package/lib/models/sign-in-with-open-id-req.js +15 -0
  133. package/lib/models/tax-calculation-step.d.ts +45 -0
  134. package/lib/models/tax-calculation-step.js +15 -0
  135. package/lib/models/tax-categories.d.ts +43 -0
  136. package/lib/models/tax-categories.js +15 -0
  137. package/lib/models/tax-category-balance.d.ts +49 -0
  138. package/lib/models/tax-category-balance.js +15 -0
  139. package/lib/models/tax-category-balances.d.ts +79 -0
  140. package/lib/models/tax-category-balances.js +15 -0
  141. package/lib/models/tax-category-enum.d.ts +35 -0
  142. package/lib/models/tax-category-enum.js +39 -0
  143. package/lib/models/tax-category-info.d.ts +31 -0
  144. package/lib/models/tax-category-info.js +15 -0
  145. package/lib/models/tax-category-response.d.ts +37 -0
  146. package/lib/models/tax-category-response.js +15 -0
  147. package/lib/models/tax-category-to-qbaccount-mappings.d.ts +87 -0
  148. package/lib/models/tax-category-to-qbaccount-mappings.js +15 -0
  149. package/lib/models/tax-dashboard-calculations.d.ts +67 -0
  150. package/lib/models/tax-dashboard-calculations.js +15 -0
  151. package/lib/models/tax-dashboard-value.d.ts +31 -0
  152. package/lib/models/tax-dashboard-value.js +15 -0
  153. package/lib/models/tax-item-definition-response.d.ts +31 -0
  154. package/lib/models/tax-item-definition-response.js +15 -0
  155. package/lib/models/tax-item-type-enum.d.ts +40 -0
  156. package/lib/models/tax-item-type-enum.js +44 -0
  157. package/lib/models/tax-line-item-response.d.ts +85 -0
  158. package/lib/models/tax-line-item-response.js +15 -0
  159. package/lib/models/tax-report-response.d.ts +57 -0
  160. package/lib/models/tax-report-response.js +15 -0
  161. package/lib/models/test-email-request.d.ts +24 -0
  162. package/lib/models/test-email-request.js +15 -0
  163. package/lib/models/unmapped-qbaccount.d.ts +36 -0
  164. package/lib/models/unmapped-qbaccount.js +15 -0
  165. package/lib/models/update-depreciation-request.d.ts +48 -0
  166. package/lib/models/update-depreciation-request.js +15 -0
  167. package/lib/models/update-person-request.d.ts +97 -0
  168. package/lib/models/update-person-request.js +15 -0
  169. package/lib/models/update-personal-tax-report-request.d.ts +25 -0
  170. package/lib/models/update-personal-tax-report-request.js +15 -0
  171. package/lib/models/update-tax-line-item-request.d.ts +48 -0
  172. package/lib/models/update-tax-line-item-request.js +15 -0
  173. package/lib/models/update-w2-wages-request.d.ts +48 -0
  174. package/lib/models/update-w2-wages-request.js +15 -0
  175. package/lib/models/user-summary-response.d.ts +36 -0
  176. package/lib/models/user-summary-response.js +15 -0
  177. package/lib/models/w2-wages-response.d.ts +78 -0
  178. package/lib/models/w2-wages-response.js +15 -0
  179. package/package.json +118 -0
@@ -0,0 +1,824 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * biz-entity-api
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v2
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ var __extends = (this && this.__extends) || (function () {
16
+ var extendStatics = function (d, b) {
17
+ extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
20
+ return extendStatics(d, b);
21
+ };
22
+ return function (d, b) {
23
+ if (typeof b !== "function" && b !== null)
24
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
25
+ extendStatics(d, b);
26
+ function __() { this.constructor = d; }
27
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28
+ };
29
+ })();
30
+ var __assign = (this && this.__assign) || function () {
31
+ __assign = Object.assign || function(t) {
32
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
33
+ s = arguments[i];
34
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
35
+ t[p] = s[p];
36
+ }
37
+ return t;
38
+ };
39
+ return __assign.apply(this, arguments);
40
+ };
41
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
42
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
43
+ return new (P || (P = Promise))(function (resolve, reject) {
44
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
45
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
46
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
47
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
48
+ });
49
+ };
50
+ var __generator = (this && this.__generator) || function (thisArg, body) {
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
52
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
+ function verb(n) { return function (v) { return step([n, v]); }; }
54
+ function step(op) {
55
+ if (f) throw new TypeError("Generator is already executing.");
56
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
57
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
58
+ if (y = 0, t) op = [op[0] & 2, t.value];
59
+ switch (op[0]) {
60
+ case 0: case 1: t = op; break;
61
+ case 4: _.label++; return { value: op[1], done: false };
62
+ case 5: _.label++; y = op[1]; op = [0]; continue;
63
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
64
+ default:
65
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
66
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
67
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
68
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
69
+ if (t[2]) _.ops.pop();
70
+ _.trys.pop(); continue;
71
+ }
72
+ op = body.call(thisArg, _);
73
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
74
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
+ }
76
+ };
77
+ Object.defineProperty(exports, "__esModule", { value: true });
78
+ exports.PersonalTaxReportAdjustmentsToIncomeApi = exports.PersonalTaxReportAdjustmentsToIncomeApiFactory = exports.PersonalTaxReportAdjustmentsToIncomeApiFp = exports.PersonalTaxReportAdjustmentsToIncomeApiAxiosParamCreator = void 0;
79
+ var axios_1 = require("axios");
80
+ // Some imports not used depending on template conditions
81
+ // @ts-ignore
82
+ var common_1 = require("../common");
83
+ // @ts-ignore
84
+ var base_1 = require("../base");
85
+ /**
86
+ * PersonalTaxReportAdjustmentsToIncomeApi - axios parameter creator
87
+ * @export
88
+ */
89
+ var PersonalTaxReportAdjustmentsToIncomeApiAxiosParamCreator = function (configuration) {
90
+ var _this = this;
91
+ return {
92
+ /**
93
+ *
94
+ * @param {string} reportId
95
+ * @param {*} [options] Override http request option.
96
+ * @throws {RequiredError}
97
+ */
98
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet: function (reportId, options) {
99
+ if (options === void 0) { options = {}; }
100
+ return __awaiter(_this, void 0, void 0, function () {
101
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
102
+ return __generator(this, function (_a) {
103
+ switch (_a.label) {
104
+ case 0:
105
+ // verify required parameter 'reportId' is not null or undefined
106
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet', 'reportId', reportId);
107
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/hsa"
108
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
109
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
110
+ if (configuration) {
111
+ baseOptions = configuration.baseOptions;
112
+ }
113
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
114
+ localVarHeaderParameter = {};
115
+ localVarQueryParameter = {};
116
+ // authentication Bearer required
117
+ // http bearer authentication required
118
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
119
+ case 1:
120
+ // authentication Bearer required
121
+ // http bearer authentication required
122
+ _a.sent();
123
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
124
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
125
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
126
+ return [2 /*return*/, {
127
+ url: (0, common_1.toPathString)(localVarUrlObj),
128
+ options: localVarRequestOptions,
129
+ }];
130
+ }
131
+ });
132
+ });
133
+ },
134
+ /**
135
+ *
136
+ * @param {string} reportId
137
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
138
+ * @param {*} [options] Override http request option.
139
+ * @throws {RequiredError}
140
+ */
141
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost: function (reportId, createTaxLineItemRequest, options) {
142
+ if (options === void 0) { options = {}; }
143
+ return __awaiter(_this, void 0, void 0, function () {
144
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
145
+ return __generator(this, function (_a) {
146
+ switch (_a.label) {
147
+ case 0:
148
+ // verify required parameter 'reportId' is not null or undefined
149
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost', 'reportId', reportId);
150
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/hsa"
151
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
152
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
153
+ if (configuration) {
154
+ baseOptions = configuration.baseOptions;
155
+ }
156
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
157
+ localVarHeaderParameter = {};
158
+ localVarQueryParameter = {};
159
+ // authentication Bearer required
160
+ // http bearer authentication required
161
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
162
+ case 1:
163
+ // authentication Bearer required
164
+ // http bearer authentication required
165
+ _a.sent();
166
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
167
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
168
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
169
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
170
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createTaxLineItemRequest, localVarRequestOptions, configuration);
171
+ return [2 /*return*/, {
172
+ url: (0, common_1.toPathString)(localVarUrlObj),
173
+ options: localVarRequestOptions,
174
+ }];
175
+ }
176
+ });
177
+ });
178
+ },
179
+ /**
180
+ *
181
+ * @param {string} reportId
182
+ * @param {*} [options] Override http request option.
183
+ * @throws {RequiredError}
184
+ */
185
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet: function (reportId, options) {
186
+ if (options === void 0) { options = {}; }
187
+ return __awaiter(_this, void 0, void 0, function () {
188
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
189
+ return __generator(this, function (_a) {
190
+ switch (_a.label) {
191
+ case 0:
192
+ // verify required parameter 'reportId' is not null or undefined
193
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet', 'reportId', reportId);
194
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/pre-tax-retirement"
195
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
196
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
197
+ if (configuration) {
198
+ baseOptions = configuration.baseOptions;
199
+ }
200
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
201
+ localVarHeaderParameter = {};
202
+ localVarQueryParameter = {};
203
+ // authentication Bearer required
204
+ // http bearer authentication required
205
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
206
+ case 1:
207
+ // authentication Bearer required
208
+ // http bearer authentication required
209
+ _a.sent();
210
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
211
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
212
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
213
+ return [2 /*return*/, {
214
+ url: (0, common_1.toPathString)(localVarUrlObj),
215
+ options: localVarRequestOptions,
216
+ }];
217
+ }
218
+ });
219
+ });
220
+ },
221
+ /**
222
+ *
223
+ * @param {string} reportId
224
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
225
+ * @param {*} [options] Override http request option.
226
+ * @throws {RequiredError}
227
+ */
228
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost: function (reportId, createTaxLineItemRequest, options) {
229
+ if (options === void 0) { options = {}; }
230
+ return __awaiter(_this, void 0, void 0, function () {
231
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
232
+ return __generator(this, function (_a) {
233
+ switch (_a.label) {
234
+ case 0:
235
+ // verify required parameter 'reportId' is not null or undefined
236
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost', 'reportId', reportId);
237
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/pre-tax-retirement"
238
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
239
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
240
+ if (configuration) {
241
+ baseOptions = configuration.baseOptions;
242
+ }
243
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
244
+ localVarHeaderParameter = {};
245
+ localVarQueryParameter = {};
246
+ // authentication Bearer required
247
+ // http bearer authentication required
248
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
249
+ case 1:
250
+ // authentication Bearer required
251
+ // http bearer authentication required
252
+ _a.sent();
253
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
254
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
255
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
256
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
257
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createTaxLineItemRequest, localVarRequestOptions, configuration);
258
+ return [2 /*return*/, {
259
+ url: (0, common_1.toPathString)(localVarUrlObj),
260
+ options: localVarRequestOptions,
261
+ }];
262
+ }
263
+ });
264
+ });
265
+ },
266
+ /**
267
+ *
268
+ * @param {string} reportId
269
+ * @param {*} [options] Override http request option.
270
+ * @throws {RequiredError}
271
+ */
272
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet: function (reportId, options) {
273
+ if (options === void 0) { options = {}; }
274
+ return __awaiter(_this, void 0, void 0, function () {
275
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
276
+ return __generator(this, function (_a) {
277
+ switch (_a.label) {
278
+ case 0:
279
+ // verify required parameter 'reportId' is not null or undefined
280
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet', 'reportId', reportId);
281
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/self-employed-health"
282
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
283
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
284
+ if (configuration) {
285
+ baseOptions = configuration.baseOptions;
286
+ }
287
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
288
+ localVarHeaderParameter = {};
289
+ localVarQueryParameter = {};
290
+ // authentication Bearer required
291
+ // http bearer authentication required
292
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
293
+ case 1:
294
+ // authentication Bearer required
295
+ // http bearer authentication required
296
+ _a.sent();
297
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
298
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
299
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
300
+ return [2 /*return*/, {
301
+ url: (0, common_1.toPathString)(localVarUrlObj),
302
+ options: localVarRequestOptions,
303
+ }];
304
+ }
305
+ });
306
+ });
307
+ },
308
+ /**
309
+ *
310
+ * @param {string} reportId
311
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
312
+ * @param {*} [options] Override http request option.
313
+ * @throws {RequiredError}
314
+ */
315
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost: function (reportId, createTaxLineItemRequest, options) {
316
+ if (options === void 0) { options = {}; }
317
+ return __awaiter(_this, void 0, void 0, function () {
318
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
319
+ return __generator(this, function (_a) {
320
+ switch (_a.label) {
321
+ case 0:
322
+ // verify required parameter 'reportId' is not null or undefined
323
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost', 'reportId', reportId);
324
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/self-employed-health"
325
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
326
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
327
+ if (configuration) {
328
+ baseOptions = configuration.baseOptions;
329
+ }
330
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
331
+ localVarHeaderParameter = {};
332
+ localVarQueryParameter = {};
333
+ // authentication Bearer required
334
+ // http bearer authentication required
335
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
336
+ case 1:
337
+ // authentication Bearer required
338
+ // http bearer authentication required
339
+ _a.sent();
340
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
341
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
342
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
343
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
344
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createTaxLineItemRequest, localVarRequestOptions, configuration);
345
+ return [2 /*return*/, {
346
+ url: (0, common_1.toPathString)(localVarUrlObj),
347
+ options: localVarRequestOptions,
348
+ }];
349
+ }
350
+ });
351
+ });
352
+ },
353
+ /**
354
+ *
355
+ * @param {string} reportId
356
+ * @param {*} [options] Override http request option.
357
+ * @throws {RequiredError}
358
+ */
359
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet: function (reportId, options) {
360
+ if (options === void 0) { options = {}; }
361
+ return __awaiter(_this, void 0, void 0, function () {
362
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
363
+ return __generator(this, function (_a) {
364
+ switch (_a.label) {
365
+ case 0:
366
+ // verify required parameter 'reportId' is not null or undefined
367
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet', 'reportId', reportId);
368
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/us-manufactured-auto-loan-interest"
369
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
370
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
371
+ if (configuration) {
372
+ baseOptions = configuration.baseOptions;
373
+ }
374
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
375
+ localVarHeaderParameter = {};
376
+ localVarQueryParameter = {};
377
+ // authentication Bearer required
378
+ // http bearer authentication required
379
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
380
+ case 1:
381
+ // authentication Bearer required
382
+ // http bearer authentication required
383
+ _a.sent();
384
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
385
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
386
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
387
+ return [2 /*return*/, {
388
+ url: (0, common_1.toPathString)(localVarUrlObj),
389
+ options: localVarRequestOptions,
390
+ }];
391
+ }
392
+ });
393
+ });
394
+ },
395
+ /**
396
+ *
397
+ * @param {string} reportId
398
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
399
+ * @param {*} [options] Override http request option.
400
+ * @throws {RequiredError}
401
+ */
402
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost: function (reportId, createTaxLineItemRequest, options) {
403
+ if (options === void 0) { options = {}; }
404
+ return __awaiter(_this, void 0, void 0, function () {
405
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
406
+ return __generator(this, function (_a) {
407
+ switch (_a.label) {
408
+ case 0:
409
+ // verify required parameter 'reportId' is not null or undefined
410
+ (0, common_1.assertParamExists)('apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost', 'reportId', reportId);
411
+ localVarPath = "/api/personal-tax-report/report/{reportId}/adjustments-to-income/us-manufactured-auto-loan-interest"
412
+ .replace("{".concat("reportId", "}"), encodeURIComponent(String(reportId)));
413
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
414
+ if (configuration) {
415
+ baseOptions = configuration.baseOptions;
416
+ }
417
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
418
+ localVarHeaderParameter = {};
419
+ localVarQueryParameter = {};
420
+ // authentication Bearer required
421
+ // http bearer authentication required
422
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
423
+ case 1:
424
+ // authentication Bearer required
425
+ // http bearer authentication required
426
+ _a.sent();
427
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
428
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
429
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
430
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
431
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createTaxLineItemRequest, localVarRequestOptions, configuration);
432
+ return [2 /*return*/, {
433
+ url: (0, common_1.toPathString)(localVarUrlObj),
434
+ options: localVarRequestOptions,
435
+ }];
436
+ }
437
+ });
438
+ });
439
+ },
440
+ };
441
+ };
442
+ exports.PersonalTaxReportAdjustmentsToIncomeApiAxiosParamCreator = PersonalTaxReportAdjustmentsToIncomeApiAxiosParamCreator;
443
+ /**
444
+ * PersonalTaxReportAdjustmentsToIncomeApi - functional programming interface
445
+ * @export
446
+ */
447
+ var PersonalTaxReportAdjustmentsToIncomeApiFp = function (configuration) {
448
+ var localVarAxiosParamCreator = (0, exports.PersonalTaxReportAdjustmentsToIncomeApiAxiosParamCreator)(configuration);
449
+ return {
450
+ /**
451
+ *
452
+ * @param {string} reportId
453
+ * @param {*} [options] Override http request option.
454
+ * @throws {RequiredError}
455
+ */
456
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet: function (reportId, options) {
457
+ var _a, _b, _c;
458
+ return __awaiter(this, void 0, void 0, function () {
459
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
460
+ return __generator(this, function (_d) {
461
+ switch (_d.label) {
462
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet(reportId, options)];
463
+ case 1:
464
+ localVarAxiosArgs = _d.sent();
465
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
466
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
467
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
468
+ }
469
+ });
470
+ });
471
+ },
472
+ /**
473
+ *
474
+ * @param {string} reportId
475
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
476
+ * @param {*} [options] Override http request option.
477
+ * @throws {RequiredError}
478
+ */
479
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost: function (reportId, createTaxLineItemRequest, options) {
480
+ var _a, _b, _c;
481
+ return __awaiter(this, void 0, void 0, function () {
482
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
483
+ return __generator(this, function (_d) {
484
+ switch (_d.label) {
485
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost(reportId, createTaxLineItemRequest, options)];
486
+ case 1:
487
+ localVarAxiosArgs = _d.sent();
488
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
489
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
490
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
491
+ }
492
+ });
493
+ });
494
+ },
495
+ /**
496
+ *
497
+ * @param {string} reportId
498
+ * @param {*} [options] Override http request option.
499
+ * @throws {RequiredError}
500
+ */
501
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet: function (reportId, options) {
502
+ var _a, _b, _c;
503
+ return __awaiter(this, void 0, void 0, function () {
504
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
505
+ return __generator(this, function (_d) {
506
+ switch (_d.label) {
507
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet(reportId, options)];
508
+ case 1:
509
+ localVarAxiosArgs = _d.sent();
510
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
511
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
512
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
513
+ }
514
+ });
515
+ });
516
+ },
517
+ /**
518
+ *
519
+ * @param {string} reportId
520
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
521
+ * @param {*} [options] Override http request option.
522
+ * @throws {RequiredError}
523
+ */
524
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost: function (reportId, createTaxLineItemRequest, options) {
525
+ var _a, _b, _c;
526
+ return __awaiter(this, void 0, void 0, function () {
527
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
528
+ return __generator(this, function (_d) {
529
+ switch (_d.label) {
530
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost(reportId, createTaxLineItemRequest, options)];
531
+ case 1:
532
+ localVarAxiosArgs = _d.sent();
533
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
534
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
535
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
536
+ }
537
+ });
538
+ });
539
+ },
540
+ /**
541
+ *
542
+ * @param {string} reportId
543
+ * @param {*} [options] Override http request option.
544
+ * @throws {RequiredError}
545
+ */
546
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet: function (reportId, options) {
547
+ var _a, _b, _c;
548
+ return __awaiter(this, void 0, void 0, function () {
549
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
550
+ return __generator(this, function (_d) {
551
+ switch (_d.label) {
552
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet(reportId, options)];
553
+ case 1:
554
+ localVarAxiosArgs = _d.sent();
555
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
556
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
557
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
558
+ }
559
+ });
560
+ });
561
+ },
562
+ /**
563
+ *
564
+ * @param {string} reportId
565
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
566
+ * @param {*} [options] Override http request option.
567
+ * @throws {RequiredError}
568
+ */
569
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost: function (reportId, createTaxLineItemRequest, options) {
570
+ var _a, _b, _c;
571
+ return __awaiter(this, void 0, void 0, function () {
572
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
573
+ return __generator(this, function (_d) {
574
+ switch (_d.label) {
575
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost(reportId, createTaxLineItemRequest, options)];
576
+ case 1:
577
+ localVarAxiosArgs = _d.sent();
578
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
579
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
580
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
581
+ }
582
+ });
583
+ });
584
+ },
585
+ /**
586
+ *
587
+ * @param {string} reportId
588
+ * @param {*} [options] Override http request option.
589
+ * @throws {RequiredError}
590
+ */
591
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet: function (reportId, options) {
592
+ var _a, _b, _c;
593
+ return __awaiter(this, void 0, void 0, function () {
594
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
595
+ return __generator(this, function (_d) {
596
+ switch (_d.label) {
597
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet(reportId, options)];
598
+ case 1:
599
+ localVarAxiosArgs = _d.sent();
600
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
601
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
602
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
603
+ }
604
+ });
605
+ });
606
+ },
607
+ /**
608
+ *
609
+ * @param {string} reportId
610
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
611
+ * @param {*} [options] Override http request option.
612
+ * @throws {RequiredError}
613
+ */
614
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost: function (reportId, createTaxLineItemRequest, options) {
615
+ var _a, _b, _c;
616
+ return __awaiter(this, void 0, void 0, function () {
617
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
618
+ return __generator(this, function (_d) {
619
+ switch (_d.label) {
620
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost(reportId, createTaxLineItemRequest, options)];
621
+ case 1:
622
+ localVarAxiosArgs = _d.sent();
623
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
624
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PersonalTaxReportAdjustmentsToIncomeApi.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
625
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
626
+ }
627
+ });
628
+ });
629
+ },
630
+ };
631
+ };
632
+ exports.PersonalTaxReportAdjustmentsToIncomeApiFp = PersonalTaxReportAdjustmentsToIncomeApiFp;
633
+ /**
634
+ * PersonalTaxReportAdjustmentsToIncomeApi - factory interface
635
+ * @export
636
+ */
637
+ var PersonalTaxReportAdjustmentsToIncomeApiFactory = function (configuration, basePath, axios) {
638
+ var localVarFp = (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(configuration);
639
+ return {
640
+ /**
641
+ *
642
+ * @param {string} reportId
643
+ * @param {*} [options] Override http request option.
644
+ * @throws {RequiredError}
645
+ */
646
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet: function (reportId, options) {
647
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet(reportId, options).then(function (request) { return request(axios, basePath); });
648
+ },
649
+ /**
650
+ *
651
+ * @param {string} reportId
652
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
653
+ * @param {*} [options] Override http request option.
654
+ * @throws {RequiredError}
655
+ */
656
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost: function (reportId, createTaxLineItemRequest, options) {
657
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(axios, basePath); });
658
+ },
659
+ /**
660
+ *
661
+ * @param {string} reportId
662
+ * @param {*} [options] Override http request option.
663
+ * @throws {RequiredError}
664
+ */
665
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet: function (reportId, options) {
666
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet(reportId, options).then(function (request) { return request(axios, basePath); });
667
+ },
668
+ /**
669
+ *
670
+ * @param {string} reportId
671
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
672
+ * @param {*} [options] Override http request option.
673
+ * @throws {RequiredError}
674
+ */
675
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost: function (reportId, createTaxLineItemRequest, options) {
676
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(axios, basePath); });
677
+ },
678
+ /**
679
+ *
680
+ * @param {string} reportId
681
+ * @param {*} [options] Override http request option.
682
+ * @throws {RequiredError}
683
+ */
684
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet: function (reportId, options) {
685
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet(reportId, options).then(function (request) { return request(axios, basePath); });
686
+ },
687
+ /**
688
+ *
689
+ * @param {string} reportId
690
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
691
+ * @param {*} [options] Override http request option.
692
+ * @throws {RequiredError}
693
+ */
694
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost: function (reportId, createTaxLineItemRequest, options) {
695
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(axios, basePath); });
696
+ },
697
+ /**
698
+ *
699
+ * @param {string} reportId
700
+ * @param {*} [options] Override http request option.
701
+ * @throws {RequiredError}
702
+ */
703
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet: function (reportId, options) {
704
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet(reportId, options).then(function (request) { return request(axios, basePath); });
705
+ },
706
+ /**
707
+ *
708
+ * @param {string} reportId
709
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
710
+ * @param {*} [options] Override http request option.
711
+ * @throws {RequiredError}
712
+ */
713
+ apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost: function (reportId, createTaxLineItemRequest, options) {
714
+ return localVarFp.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(axios, basePath); });
715
+ },
716
+ };
717
+ };
718
+ exports.PersonalTaxReportAdjustmentsToIncomeApiFactory = PersonalTaxReportAdjustmentsToIncomeApiFactory;
719
+ /**
720
+ * PersonalTaxReportAdjustmentsToIncomeApi - object-oriented interface
721
+ * @export
722
+ * @class PersonalTaxReportAdjustmentsToIncomeApi
723
+ * @extends {BaseAPI}
724
+ */
725
+ var PersonalTaxReportAdjustmentsToIncomeApi = /** @class */ (function (_super) {
726
+ __extends(PersonalTaxReportAdjustmentsToIncomeApi, _super);
727
+ function PersonalTaxReportAdjustmentsToIncomeApi() {
728
+ return _super !== null && _super.apply(this, arguments) || this;
729
+ }
730
+ /**
731
+ *
732
+ * @param {string} reportId
733
+ * @param {*} [options] Override http request option.
734
+ * @throws {RequiredError}
735
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
736
+ */
737
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet = function (reportId, options) {
738
+ var _this = this;
739
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaGet(reportId, options).then(function (request) { return request(_this.axios, _this.basePath); });
740
+ };
741
+ /**
742
+ *
743
+ * @param {string} reportId
744
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
745
+ * @param {*} [options] Override http request option.
746
+ * @throws {RequiredError}
747
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
748
+ */
749
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost = function (reportId, createTaxLineItemRequest, options) {
750
+ var _this = this;
751
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomeHsaPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
752
+ };
753
+ /**
754
+ *
755
+ * @param {string} reportId
756
+ * @param {*} [options] Override http request option.
757
+ * @throws {RequiredError}
758
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
759
+ */
760
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet = function (reportId, options) {
761
+ var _this = this;
762
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementGet(reportId, options).then(function (request) { return request(_this.axios, _this.basePath); });
763
+ };
764
+ /**
765
+ *
766
+ * @param {string} reportId
767
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
768
+ * @param {*} [options] Override http request option.
769
+ * @throws {RequiredError}
770
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
771
+ */
772
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost = function (reportId, createTaxLineItemRequest, options) {
773
+ var _this = this;
774
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomePreTaxRetirementPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
775
+ };
776
+ /**
777
+ *
778
+ * @param {string} reportId
779
+ * @param {*} [options] Override http request option.
780
+ * @throws {RequiredError}
781
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
782
+ */
783
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet = function (reportId, options) {
784
+ var _this = this;
785
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthGet(reportId, options).then(function (request) { return request(_this.axios, _this.basePath); });
786
+ };
787
+ /**
788
+ *
789
+ * @param {string} reportId
790
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
791
+ * @param {*} [options] Override http request option.
792
+ * @throws {RequiredError}
793
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
794
+ */
795
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost = function (reportId, createTaxLineItemRequest, options) {
796
+ var _this = this;
797
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomeSelfEmployedHealthPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
798
+ };
799
+ /**
800
+ *
801
+ * @param {string} reportId
802
+ * @param {*} [options] Override http request option.
803
+ * @throws {RequiredError}
804
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
805
+ */
806
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet = function (reportId, options) {
807
+ var _this = this;
808
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestGet(reportId, options).then(function (request) { return request(_this.axios, _this.basePath); });
809
+ };
810
+ /**
811
+ *
812
+ * @param {string} reportId
813
+ * @param {CreateTaxLineItemRequest} [createTaxLineItemRequest]
814
+ * @param {*} [options] Override http request option.
815
+ * @throws {RequiredError}
816
+ * @memberof PersonalTaxReportAdjustmentsToIncomeApi
817
+ */
818
+ PersonalTaxReportAdjustmentsToIncomeApi.prototype.apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost = function (reportId, createTaxLineItemRequest, options) {
819
+ var _this = this;
820
+ return (0, exports.PersonalTaxReportAdjustmentsToIncomeApiFp)(this.configuration).apiPersonalTaxReportReportReportIdAdjustmentsToIncomeUsManufacturedAutoLoanInterestPost(reportId, createTaxLineItemRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
821
+ };
822
+ return PersonalTaxReportAdjustmentsToIncomeApi;
823
+ }(base_1.BaseAPI));
824
+ exports.PersonalTaxReportAdjustmentsToIncomeApi = PersonalTaxReportAdjustmentsToIncomeApi;