@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,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,45 @@
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 { MonthlyData } from './monthly-data';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxCalculationStep
17
+ */
18
+ export interface TaxCalculationStep {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof TaxCalculationStep
23
+ */
24
+ 'description'?: string | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof TaxCalculationStep
29
+ */
30
+ 'formula'?: string | null;
31
+ /**
32
+ *
33
+ * @type {{ [key: string]: number | undefined; }}
34
+ * @memberof TaxCalculationStep
35
+ */
36
+ 'components'?: {
37
+ [key: string]: number | undefined;
38
+ } | null;
39
+ /**
40
+ *
41
+ * @type {Array<MonthlyData>}
42
+ * @memberof TaxCalculationStep
43
+ */
44
+ 'monthlyBreakdown'?: Array<MonthlyData> | null;
45
+ }
@@ -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,43 @@
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 { TaxCategoryEnum } from './tax-category-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxCategories
17
+ */
18
+ export interface TaxCategories {
19
+ /**
20
+ *
21
+ * @type {TaxCategoryEnum}
22
+ * @memberof TaxCategories
23
+ */
24
+ 'name': TaxCategoryEnum;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof TaxCategories
29
+ */
30
+ 'id'?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof TaxCategories
35
+ */
36
+ 'createdAt'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof TaxCategories
41
+ */
42
+ 'updatedAt'?: string | null;
43
+ }
@@ -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,49 @@
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 { QuickBooksAccountMapping } from './quick-books-account-mapping';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxCategoryBalance
17
+ */
18
+ export interface TaxCategoryBalance {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof TaxCategoryBalance
23
+ */
24
+ 'credits'?: number;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof TaxCategoryBalance
29
+ */
30
+ 'debits'?: number;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof TaxCategoryBalance
35
+ */
36
+ 'balance'?: number;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof TaxCategoryBalance
41
+ */
42
+ 'balanceType'?: string | null;
43
+ /**
44
+ *
45
+ * @type {Array<QuickBooksAccountMapping>}
46
+ * @memberof TaxCategoryBalance
47
+ */
48
+ 'contributingAccounts'?: Array<QuickBooksAccountMapping> | null;
49
+ }
@@ -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,79 @@
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 { TaxCategoryBalance } from './tax-category-balance';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxCategoryBalances
17
+ */
18
+ export interface TaxCategoryBalances {
19
+ /**
20
+ *
21
+ * @type {TaxCategoryBalance}
22
+ * @memberof TaxCategoryBalances
23
+ */
24
+ 'income'?: TaxCategoryBalance;
25
+ /**
26
+ *
27
+ * @type {TaxCategoryBalance}
28
+ * @memberof TaxCategoryBalances
29
+ */
30
+ 'fullyDeductible'?: TaxCategoryBalance;
31
+ /**
32
+ *
33
+ * @type {TaxCategoryBalance}
34
+ * @memberof TaxCategoryBalances
35
+ */
36
+ 'businessMeals'?: TaxCategoryBalance;
37
+ /**
38
+ *
39
+ * @type {TaxCategoryBalance}
40
+ * @memberof TaxCategoryBalances
41
+ */
42
+ 'nonDeductible'?: TaxCategoryBalance;
43
+ /**
44
+ *
45
+ * @type {TaxCategoryBalance}
46
+ * @memberof TaxCategoryBalances
47
+ */
48
+ 'researchAndDevelopment'?: TaxCategoryBalance;
49
+ /**
50
+ *
51
+ * @type {TaxCategoryBalance}
52
+ * @memberof TaxCategoryBalances
53
+ */
54
+ 'augustaRuleRent'?: TaxCategoryBalance;
55
+ /**
56
+ *
57
+ * @type {TaxCategoryBalance}
58
+ * @memberof TaxCategoryBalances
59
+ */
60
+ 'ownerHomeOffice'?: TaxCategoryBalance;
61
+ /**
62
+ *
63
+ * @type {TaxCategoryBalance}
64
+ * @memberof TaxCategoryBalances
65
+ */
66
+ 'paidToKids'?: TaxCategoryBalance;
67
+ /**
68
+ *
69
+ * @type {TaxCategoryBalance}
70
+ * @memberof TaxCategoryBalances
71
+ */
72
+ 'w2Wages'?: TaxCategoryBalance;
73
+ /**
74
+ *
75
+ * @type {TaxCategoryBalance}
76
+ * @memberof TaxCategoryBalances
77
+ */
78
+ 'noTaxImpact'?: TaxCategoryBalance;
79
+ }
@@ -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,35 @@
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 TaxCategoryEnum: {
18
+ readonly FullyDeductible: "FullyDeductible";
19
+ readonly ResearchAndDevelopment: "ResearchAndDevelopment";
20
+ readonly VehiclesUnder6000Lbs: "VehiclesUnder6000Lbs";
21
+ readonly Income: "Income";
22
+ readonly MachineryAndEquipment: "MachineryAndEquipment";
23
+ readonly BusinessMeals: "BusinessMeals";
24
+ readonly NonDeductible: "NonDeductible";
25
+ readonly VehiclesOver6000Lbs: "VehiclesOver6000Lbs";
26
+ readonly NoTaxImpact: "NoTaxImpact";
27
+ readonly BuildingsExcludingLand: "BuildingsExcludingLand";
28
+ readonly TrucksAndCargoVansOver6000Lbs: "TrucksAndCargoVansOver6000Lbs";
29
+ readonly BusinessUsePropertyExcludingLand: "BusinessUsePropertyExcludingLand";
30
+ readonly AugustaRuleRent: "AugustaRuleRent";
31
+ readonly OwnerHomeOffice: "OwnerHomeOffice";
32
+ readonly PaidToKids: "PaidToKids";
33
+ readonly W2Wages: "W2Wages";
34
+ };
35
+ export type TaxCategoryEnum = typeof TaxCategoryEnum[keyof typeof TaxCategoryEnum];
@@ -0,0 +1,39 @@
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.TaxCategoryEnum = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.TaxCategoryEnum = {
23
+ FullyDeductible: 'FullyDeductible',
24
+ ResearchAndDevelopment: 'ResearchAndDevelopment',
25
+ VehiclesUnder6000Lbs: 'VehiclesUnder6000Lbs',
26
+ Income: 'Income',
27
+ MachineryAndEquipment: 'MachineryAndEquipment',
28
+ BusinessMeals: 'BusinessMeals',
29
+ NonDeductible: 'NonDeductible',
30
+ VehiclesOver6000Lbs: 'VehiclesOver6000Lbs',
31
+ NoTaxImpact: 'NoTaxImpact',
32
+ BuildingsExcludingLand: 'BuildingsExcludingLand',
33
+ TrucksAndCargoVansOver6000Lbs: 'TrucksAndCargoVansOver6000Lbs',
34
+ BusinessUsePropertyExcludingLand: 'BusinessUsePropertyExcludingLand',
35
+ AugustaRuleRent: 'AugustaRuleRent',
36
+ OwnerHomeOffice: 'OwnerHomeOffice',
37
+ PaidToKids: 'PaidToKids',
38
+ W2Wages: 'W2Wages'
39
+ };
@@ -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 { TaxCategoryEnum } from './tax-category-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxCategoryInfo
17
+ */
18
+ export interface TaxCategoryInfo {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof TaxCategoryInfo
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {TaxCategoryEnum}
28
+ * @memberof TaxCategoryInfo
29
+ */
30
+ 'name'?: TaxCategoryEnum;
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,37 @@
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 { TaxCategoryEnum } from './tax-category-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxCategoryResponse
17
+ */
18
+ export interface TaxCategoryResponse {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof TaxCategoryResponse
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {TaxCategoryEnum}
28
+ * @memberof TaxCategoryResponse
29
+ */
30
+ 'name'?: TaxCategoryEnum;
31
+ /**
32
+ *
33
+ * @type {boolean}
34
+ * @memberof TaxCategoryResponse
35
+ */
36
+ 'isConsideredDepreciation'?: boolean;
37
+ }
@@ -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,87 @@
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 { AccountType } from './account-type';
13
+ import type { QBAccounts } from './qbaccounts';
14
+ import type { TaxCategories } from './tax-categories';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface TaxCategoryToQBAccountMappings
19
+ */
20
+ export interface TaxCategoryToQBAccountMappings {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof TaxCategoryToQBAccountMappings
25
+ */
26
+ 'companyId': string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof TaxCategoryToQBAccountMappings
31
+ */
32
+ 'qbAccountId': string;
33
+ /**
34
+ *
35
+ * @type {AccountType}
36
+ * @memberof TaxCategoryToQBAccountMappings
37
+ */
38
+ 'accountType': AccountType;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof TaxCategoryToQBAccountMappings
43
+ */
44
+ 'taxCategoryId'?: string | null;
45
+ /**
46
+ *
47
+ * @type {number}
48
+ * @memberof TaxCategoryToQBAccountMappings
49
+ */
50
+ 'taxYear': number;
51
+ /**
52
+ *
53
+ * @type {boolean}
54
+ * @memberof TaxCategoryToQBAccountMappings
55
+ */
56
+ 'isDeleted': boolean;
57
+ /**
58
+ *
59
+ * @type {QBAccounts}
60
+ * @memberof TaxCategoryToQBAccountMappings
61
+ */
62
+ 'qbAccounts'?: QBAccounts;
63
+ /**
64
+ *
65
+ * @type {TaxCategories}
66
+ * @memberof TaxCategoryToQBAccountMappings
67
+ */
68
+ 'taxCategories'?: TaxCategories;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof TaxCategoryToQBAccountMappings
73
+ */
74
+ 'id'?: string;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof TaxCategoryToQBAccountMappings
79
+ */
80
+ 'createdAt'?: string | null;
81
+ /**
82
+ *
83
+ * @type {string}
84
+ * @memberof TaxCategoryToQBAccountMappings
85
+ */
86
+ 'updatedAt'?: string | null;
87
+ }
@@ -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,67 @@
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 { TaxDashboardValue } from './tax-dashboard-value';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TaxDashboardCalculations
17
+ */
18
+ export interface TaxDashboardCalculations {
19
+ /**
20
+ *
21
+ * @type {TaxDashboardValue}
22
+ * @memberof TaxDashboardCalculations
23
+ */
24
+ 'income'?: TaxDashboardValue;
25
+ /**
26
+ *
27
+ * @type {TaxDashboardValue}
28
+ * @memberof TaxDashboardCalculations
29
+ */
30
+ 'costsAndExpenses'?: TaxDashboardValue;
31
+ /**
32
+ *
33
+ * @type {TaxDashboardValue}
34
+ * @memberof TaxDashboardCalculations
35
+ */
36
+ 'deductibleExpenses'?: TaxDashboardValue;
37
+ /**
38
+ *
39
+ * @type {TaxDashboardValue}
40
+ * @memberof TaxDashboardCalculations
41
+ */
42
+ 'nonDeductibleExpenses'?: TaxDashboardValue;
43
+ /**
44
+ *
45
+ * @type {TaxDashboardValue}
46
+ * @memberof TaxDashboardCalculations
47
+ */
48
+ 'estimatedTotalTaxableIncome'?: TaxDashboardValue;
49
+ /**
50
+ *
51
+ * @type {TaxDashboardValue}
52
+ * @memberof TaxDashboardCalculations
53
+ */
54
+ 'taxWriteOffs'?: TaxDashboardValue;
55
+ /**
56
+ *
57
+ * @type {TaxDashboardValue}
58
+ * @memberof TaxDashboardCalculations
59
+ */
60
+ 'yearlyDepreciation'?: TaxDashboardValue;
61
+ /**
62
+ *
63
+ * @type {number}
64
+ * @memberof TaxDashboardCalculations
65
+ */
66
+ 'taxYear'?: number;
67
+ }
@@ -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 });