@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,31 @@
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 { TaxCalculationStep } from './tax-calculation-step';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxDashboardValue
17
+ */
18
+ export interface TaxDashboardValue {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof TaxDashboardValue
23
+ */
24
+ 'value'?: number;
25
+ /**
26
+ *
27
+ * @type {TaxCalculationStep}
28
+ * @memberof TaxDashboardValue
29
+ */
30
+ 'showYourWork'?: TaxCalculationStep;
31
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,31 @@
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 { TaxItemTypeEnum } from './tax-item-type-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxItemDefinitionResponse
17
+ */
18
+ export interface TaxItemDefinitionResponse {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof TaxItemDefinitionResponse
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {TaxItemTypeEnum}
28
+ * @memberof TaxItemDefinitionResponse
29
+ */
30
+ 'name'?: TaxItemTypeEnum;
31
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,40 @@
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
+ /**
13
+ *
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const TaxItemTypeEnum: {
18
+ readonly OtherIncomeSpouseW2: "OtherIncomeSpouseW2";
19
+ readonly OtherIncomeOtherJobW2: "OtherIncomeOtherJobW2";
20
+ readonly OtherIncomePassive: "OtherIncomePassive";
21
+ readonly OtherIncomeOrdinary: "OtherIncomeOrdinary";
22
+ readonly AdjustmentSelfEmployedHealth: "AdjustmentSelfEmployedHealth";
23
+ readonly AdjustmentHsa: "AdjustmentHsa";
24
+ readonly AdjustmentPreTaxRetirement: "AdjustmentPreTaxRetirement";
25
+ readonly DeductionStateLocalTax: "DeductionStateLocalTax";
26
+ readonly DeductionMortgageInterest: "DeductionMortgageInterest";
27
+ readonly DeductionCharity: "DeductionCharity";
28
+ readonly DeductionMedical: "DeductionMedical";
29
+ readonly FederalTaxCredits: "FederalTaxCredits";
30
+ readonly FederalTaxW2Withheld: "FederalTaxW2Withheld";
31
+ readonly FederalTaxEstimatedPayments: "FederalTaxEstimatedPayments";
32
+ readonly MinimumLastYearTax: "MinimumLastYearTax";
33
+ readonly CompanyW2Wage: "CompanyW2Wage";
34
+ readonly CapitalGainShortTermGain: "CapitalGainShortTermGain";
35
+ readonly CapitalGainShortTermLoss: "CapitalGainShortTermLoss";
36
+ readonly CapitalGainLongTermGain: "CapitalGainLongTermGain";
37
+ readonly CapitalGainLongTermLoss: "CapitalGainLongTermLoss";
38
+ readonly AdjustmentUsManufacturedAutoLoanInterest: "AdjustmentUSManufacturedAutoLoanInterest";
39
+ };
40
+ export type TaxItemTypeEnum = typeof TaxItemTypeEnum[keyof typeof TaxItemTypeEnum];
@@ -0,0 +1,44 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.TaxItemTypeEnum = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.TaxItemTypeEnum = {
23
+ OtherIncomeSpouseW2: 'OtherIncomeSpouseW2',
24
+ OtherIncomeOtherJobW2: 'OtherIncomeOtherJobW2',
25
+ OtherIncomePassive: 'OtherIncomePassive',
26
+ OtherIncomeOrdinary: 'OtherIncomeOrdinary',
27
+ AdjustmentSelfEmployedHealth: 'AdjustmentSelfEmployedHealth',
28
+ AdjustmentHsa: 'AdjustmentHsa',
29
+ AdjustmentPreTaxRetirement: 'AdjustmentPreTaxRetirement',
30
+ DeductionStateLocalTax: 'DeductionStateLocalTax',
31
+ DeductionMortgageInterest: 'DeductionMortgageInterest',
32
+ DeductionCharity: 'DeductionCharity',
33
+ DeductionMedical: 'DeductionMedical',
34
+ FederalTaxCredits: 'FederalTaxCredits',
35
+ FederalTaxW2Withheld: 'FederalTaxW2Withheld',
36
+ FederalTaxEstimatedPayments: 'FederalTaxEstimatedPayments',
37
+ MinimumLastYearTax: 'MinimumLastYearTax',
38
+ CompanyW2Wage: 'CompanyW2Wage',
39
+ CapitalGainShortTermGain: 'CapitalGainShortTermGain',
40
+ CapitalGainShortTermLoss: 'CapitalGainShortTermLoss',
41
+ CapitalGainLongTermGain: 'CapitalGainLongTermGain',
42
+ CapitalGainLongTermLoss: 'CapitalGainLongTermLoss',
43
+ AdjustmentUsManufacturedAutoLoanInterest: 'AdjustmentUSManufacturedAutoLoanInterest'
44
+ };
@@ -0,0 +1,85 @@
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 { TaxItemTypeEnum } from './tax-item-type-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxLineItemResponse
17
+ */
18
+ export interface TaxLineItemResponse {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof TaxLineItemResponse
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof TaxLineItemResponse
29
+ */
30
+ 'personalTaxReportId'?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof TaxLineItemResponse
35
+ */
36
+ 'taxItemTypeId'?: string;
37
+ /**
38
+ *
39
+ * @type {TaxItemTypeEnum}
40
+ * @memberof TaxLineItemResponse
41
+ */
42
+ 'taxItemTypeName'?: TaxItemTypeEnum;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof TaxLineItemResponse
47
+ */
48
+ 'itemName'?: string | null;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof TaxLineItemResponse
53
+ */
54
+ 'amount'?: number;
55
+ /**
56
+ *
57
+ * @type {number}
58
+ * @memberof TaxLineItemResponse
59
+ */
60
+ 'amountWithheld'?: number | null;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof TaxLineItemResponse
65
+ */
66
+ 'startDate'?: string | null;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof TaxLineItemResponse
71
+ */
72
+ 'endDate'?: string | null;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof TaxLineItemResponse
77
+ */
78
+ 'createdAt'?: string | null;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof TaxLineItemResponse
83
+ */
84
+ 'updatedAt'?: string | null;
85
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,57 @@
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 { TaxCategoryBalances } from './tax-category-balances';
13
+ import type { TaxDashboardCalculations } from './tax-dashboard-calculations';
14
+ import type { UnmappedQBAccount } from './unmapped-qbaccount';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface TaxReportResponse
19
+ */
20
+ export interface TaxReportResponse {
21
+ /**
22
+ *
23
+ * @type {boolean}
24
+ * @memberof TaxReportResponse
25
+ */
26
+ 'shouldAnnualize'?: boolean;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof TaxReportResponse
31
+ */
32
+ 'selectedDate'?: string;
33
+ /**
34
+ *
35
+ * @type {boolean}
36
+ * @memberof TaxReportResponse
37
+ */
38
+ 'hasUnmappedAccounts'?: boolean;
39
+ /**
40
+ *
41
+ * @type {Array<UnmappedQBAccount>}
42
+ * @memberof TaxReportResponse
43
+ */
44
+ 'unmappedQBAccounts'?: Array<UnmappedQBAccount> | null;
45
+ /**
46
+ *
47
+ * @type {TaxCategoryBalances}
48
+ * @memberof TaxReportResponse
49
+ */
50
+ 'taxCategories'?: TaxCategoryBalances;
51
+ /**
52
+ *
53
+ * @type {TaxDashboardCalculations}
54
+ * @memberof TaxReportResponse
55
+ */
56
+ 'taxDashboard'?: TaxDashboardCalculations;
57
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface TestEmailRequest
16
+ */
17
+ export interface TestEmailRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof TestEmailRequest
22
+ */
23
+ 'email': string;
24
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface UnmappedQBAccount
16
+ */
17
+ export interface UnmappedQBAccount {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UnmappedQBAccount
22
+ */
23
+ 'qbAccountName'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof UnmappedQBAccount
28
+ */
29
+ 'debits'?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof UnmappedQBAccount
34
+ */
35
+ 'credits'?: number;
36
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,48 @@
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateDepreciationRequest
16
+ */
17
+ export interface UpdateDepreciationRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdateDepreciationRequest
22
+ */
23
+ 'qbAccountId': string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UpdateDepreciationRequest
28
+ */
29
+ 'taxCategoryId'?: string | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof UpdateDepreciationRequest
34
+ */
35
+ 'amount': number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UpdateDepreciationRequest
40
+ */
41
+ 'inServiceDate'?: string | null;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof UpdateDepreciationRequest
46
+ */
47
+ 'taxYear': number;
48
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,97 @@
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 { PermissionsEnum } from './permissions-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdatePersonRequest
17
+ */
18
+ export interface UpdatePersonRequest {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof UpdatePersonRequest
23
+ */
24
+ 'email'?: string | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof UpdatePersonRequest
29
+ */
30
+ 'name'?: string | null;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof UpdatePersonRequest
35
+ */
36
+ 'phone'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof UpdatePersonRequest
41
+ */
42
+ 'ssn'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof UpdatePersonRequest
47
+ */
48
+ 'addressLine1'?: string | null;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof UpdatePersonRequest
53
+ */
54
+ 'addressLine2'?: string | null;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof UpdatePersonRequest
59
+ */
60
+ 'city'?: string | null;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof UpdatePersonRequest
65
+ */
66
+ 'state'?: string | null;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof UpdatePersonRequest
71
+ */
72
+ 'zip'?: string | null;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof UpdatePersonRequest
77
+ */
78
+ 'invitationStatus'?: string | null;
79
+ /**
80
+ *
81
+ * @type {boolean}
82
+ * @memberof UpdatePersonRequest
83
+ */
84
+ 'isUserShareholder'?: boolean | null;
85
+ /**
86
+ *
87
+ * @type {number}
88
+ * @memberof UpdatePersonRequest
89
+ */
90
+ 'ownershipPercent'?: number | null;
91
+ /**
92
+ *
93
+ * @type {PermissionsEnum}
94
+ * @memberof UpdatePersonRequest
95
+ */
96
+ 'role'?: PermissionsEnum;
97
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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 { FilingStatusEnum } from './filing-status-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdatePersonalTaxReportRequest
17
+ */
18
+ export interface UpdatePersonalTaxReportRequest {
19
+ /**
20
+ *
21
+ * @type {FilingStatusEnum}
22
+ * @memberof UpdatePersonalTaxReportRequest
23
+ */
24
+ 'filingStatus': FilingStatusEnum;
25
+ }
@@ -0,0 +1,15 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });