@unified-api/typescript-sdk 1.0.0 → 1.0.2

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 (196) hide show
  1. package/README.md +54 -700
  2. package/dist/sdk/accounting.d.ts +0 -40
  3. package/dist/sdk/accounting.js +44 -696
  4. package/dist/sdk/link.d.ts +31 -0
  5. package/dist/sdk/link.js +503 -0
  6. package/dist/sdk/models/operations/{createaccountingpayment.d.ts → createpaymentlink.d.ts} +7 -7
  7. package/dist/sdk/models/operations/createpaymentlink.js +95 -0
  8. package/dist/sdk/models/operations/createpaymentpayment.d.ts +28 -0
  9. package/dist/sdk/models/operations/{createaccountingpayment.js → createpaymentpayment.js} +20 -20
  10. package/dist/sdk/models/operations/getpaymentlink.d.ts +35 -0
  11. package/dist/sdk/models/operations/getpaymentlink.js +99 -0
  12. package/dist/sdk/models/operations/{getaccountingpayment.d.ts → getpaymentpayment.d.ts} +6 -6
  13. package/dist/sdk/models/operations/{getaccountingpayment.js → getpaymentpayment.js} +20 -20
  14. package/dist/sdk/models/operations/{getaccountingpayout.d.ts → getpaymentpayout.d.ts} +6 -6
  15. package/dist/sdk/models/operations/{getaccountingpayout.js → getpaymentpayout.js} +20 -20
  16. package/dist/sdk/models/operations/{getaccountingrefund.d.ts → getpaymentrefund.d.ts} +6 -6
  17. package/dist/sdk/models/operations/{getaccountingrefund.js → getpaymentrefund.js} +20 -20
  18. package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +6 -4
  19. package/dist/sdk/models/operations/getunifiedintegrationauth.js +6 -4
  20. package/dist/sdk/models/operations/index.d.ts +16 -10
  21. package/dist/sdk/models/operations/index.js +16 -10
  22. package/dist/sdk/models/operations/listpaymentlinks.d.ts +51 -0
  23. package/dist/sdk/models/operations/listpaymentlinks.js +127 -0
  24. package/dist/sdk/models/operations/{listaccountingpayments.d.ts → listpaymentpayments.d.ts} +6 -6
  25. package/dist/sdk/models/operations/{listaccountingpayments.js → listpaymentpayments.js} +28 -28
  26. package/dist/sdk/models/operations/{listaccountingpayouts.d.ts → listpaymentpayouts.d.ts} +6 -6
  27. package/dist/sdk/models/operations/{listaccountingpayouts.js → listpaymentpayouts.js} +26 -26
  28. package/dist/sdk/models/operations/{listaccountingrefunds.d.ts → listpaymentrefunds.d.ts} +6 -6
  29. package/dist/sdk/models/operations/{listaccountingrefunds.js → listpaymentrefunds.js} +27 -27
  30. package/dist/sdk/models/operations/listunifiedconnections.d.ts +2 -1
  31. package/dist/sdk/models/operations/listunifiedconnections.js +1 -0
  32. package/dist/sdk/models/operations/listunifiedintegrations.d.ts +2 -1
  33. package/dist/sdk/models/operations/listunifiedintegrations.js +1 -0
  34. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +2 -1
  35. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +1 -0
  36. package/dist/sdk/models/operations/patchpaymentlink.d.ts +32 -0
  37. package/dist/sdk/models/operations/patchpaymentlink.js +99 -0
  38. package/dist/sdk/models/operations/{patchaccountingpayment.d.ts → patchpaymentpayment.d.ts} +7 -7
  39. package/dist/sdk/models/operations/{patchaccountingpayment.js → patchpaymentpayment.js} +21 -21
  40. package/dist/sdk/models/operations/removepaymentlink.d.ts +30 -0
  41. package/dist/sdk/models/operations/{removeaccountingpayment.js → removepaymentlink.js} +17 -17
  42. package/dist/sdk/models/operations/{removeaccountingpayment.d.ts → removepaymentpayment.d.ts} +2 -2
  43. package/dist/sdk/models/operations/removepaymentpayment.js +71 -0
  44. package/dist/sdk/models/operations/updatepaymentlink.d.ts +32 -0
  45. package/dist/sdk/models/operations/updatepaymentlink.js +99 -0
  46. package/dist/sdk/models/operations/{updateaccountingpayment.d.ts → updatepaymentpayment.d.ts} +7 -7
  47. package/dist/sdk/models/operations/{updateaccountingpayment.js → updatepaymentpayment.js} +21 -21
  48. package/dist/sdk/models/shared/accountinginvoice.d.ts +1 -0
  49. package/dist/sdk/models/shared/accountinginvoice.js +5 -0
  50. package/dist/sdk/models/shared/index.d.ts +5 -3
  51. package/dist/sdk/models/shared/index.js +5 -3
  52. package/dist/sdk/models/shared/paymenntlinklineitem.d.ts +20 -0
  53. package/dist/sdk/models/shared/paymenntlinklineitem.js +137 -0
  54. package/dist/sdk/models/shared/paymentlink.d.ts +15 -0
  55. package/dist/sdk/models/shared/paymentlink.js +105 -0
  56. package/dist/sdk/models/shared/{accountingpayment.d.ts → paymentpayment.d.ts} +1 -1
  57. package/dist/sdk/models/shared/{accountingpayment.js → paymentpayment.js} +18 -18
  58. package/dist/sdk/models/shared/{accountingpayout.d.ts → paymentpayout.d.ts} +3 -3
  59. package/dist/sdk/models/shared/{accountingpayout.js → paymentpayout.js} +21 -21
  60. package/dist/sdk/models/shared/{accountingrefund.d.ts → paymentrefund.d.ts} +3 -3
  61. package/dist/sdk/models/shared/{accountingrefund.js → paymentrefund.js} +23 -23
  62. package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +2 -1
  63. package/dist/sdk/models/shared/propertyconnectioncategories.js +1 -0
  64. package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +6 -4
  65. package/dist/sdk/models/shared/propertyconnectionpermissions.js +6 -4
  66. package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +2 -1
  67. package/dist/sdk/models/shared/propertyintegrationcategories.js +1 -0
  68. package/dist/sdk/models/shared/webhook.d.ts +4 -3
  69. package/dist/sdk/models/shared/webhook.js +4 -3
  70. package/dist/sdk/payment.d.ts +46 -6
  71. package/dist/sdk/payment.js +705 -53
  72. package/dist/sdk/payout.d.ts +2 -2
  73. package/dist/sdk/payout.js +11 -11
  74. package/dist/sdk/refund.d.ts +2 -2
  75. package/dist/sdk/refund.js +11 -11
  76. package/dist/sdk/sdk.d.ts +5 -3
  77. package/dist/sdk/sdk.js +7 -5
  78. package/docs/sdk/models/operations/categories.md +2 -1
  79. package/docs/sdk/models/operations/createpaymentlinkrequest.md +9 -0
  80. package/docs/sdk/models/operations/createpaymentlinkresponse.md +11 -0
  81. package/docs/sdk/models/operations/createpaymentpaymentrequest.md +9 -0
  82. package/docs/sdk/models/operations/createpaymentpaymentresponse.md +11 -0
  83. package/docs/sdk/models/operations/getpaymentlinkrequest.md +10 -0
  84. package/docs/sdk/models/operations/getpaymentlinkresponse.md +11 -0
  85. package/docs/sdk/models/operations/{getaccountingpaymentrequest.md → getpaymentpaymentrequest.md} +1 -1
  86. package/docs/sdk/models/operations/getpaymentpaymentresponse.md +11 -0
  87. package/docs/sdk/models/operations/{getaccountingpayoutrequest.md → getpaymentpayoutrequest.md} +1 -1
  88. package/docs/sdk/models/operations/getpaymentpayoutresponse.md +11 -0
  89. package/docs/sdk/models/operations/{getaccountingrefundrequest.md → getpaymentrefundrequest.md} +1 -1
  90. package/docs/sdk/models/operations/getpaymentrefundresponse.md +11 -0
  91. package/docs/sdk/models/operations/listpaymentlinksrequest.md +17 -0
  92. package/docs/sdk/models/operations/listpaymentlinksresponse.md +11 -0
  93. package/docs/sdk/models/operations/{listaccountingpaymentsrequest.md → listpaymentpaymentsrequest.md} +1 -1
  94. package/docs/sdk/models/operations/listpaymentpaymentsresponse.md +11 -0
  95. package/docs/sdk/models/operations/{listaccountingpayoutsrequest.md → listpaymentpayoutsrequest.md} +1 -1
  96. package/docs/sdk/models/operations/listpaymentpayoutsresponse.md +11 -0
  97. package/docs/sdk/models/operations/{listaccountingrefundsrequest.md → listpaymentrefundsrequest.md} +1 -1
  98. package/docs/sdk/models/operations/listpaymentrefundsresponse.md +11 -0
  99. package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +2 -1
  100. package/docs/sdk/models/operations/patchpaymentlinkrequest.md +10 -0
  101. package/docs/sdk/models/operations/patchpaymentlinkresponse.md +11 -0
  102. package/docs/sdk/models/operations/patchpaymentpaymentrequest.md +10 -0
  103. package/docs/sdk/models/operations/patchpaymentpaymentresponse.md +11 -0
  104. package/docs/sdk/models/operations/queryparamcategories.md +2 -1
  105. package/docs/sdk/models/operations/{removeaccountingpaymentrequest.md → removepaymentlinkrequest.md} +2 -2
  106. package/docs/sdk/models/operations/{removeaccountingpaymentresponse.md → removepaymentlinkresponse.md} +1 -1
  107. package/docs/sdk/models/operations/removepaymentpaymentrequest.md +9 -0
  108. package/docs/sdk/models/operations/removepaymentpaymentresponse.md +11 -0
  109. package/docs/sdk/models/operations/scopes.md +6 -4
  110. package/docs/sdk/models/operations/updatepaymentlinkrequest.md +10 -0
  111. package/docs/sdk/models/operations/updatepaymentlinkresponse.md +11 -0
  112. package/docs/sdk/models/operations/updatepaymentpaymentrequest.md +10 -0
  113. package/docs/sdk/models/operations/updatepaymentpaymentresponse.md +11 -0
  114. package/docs/sdk/models/shared/accountinginvoice.md +2 -1
  115. package/docs/sdk/models/shared/objecttype.md +4 -3
  116. package/docs/sdk/models/shared/paymenntlinklineitem.md +24 -0
  117. package/docs/sdk/models/shared/paymentlink.md +18 -0
  118. package/docs/sdk/models/shared/{accountingpayment.md → paymentpayment.md} +1 -1
  119. package/docs/sdk/models/shared/paymentpayout.md +15 -0
  120. package/docs/sdk/models/shared/{accountingpayoutstatus.md → paymentpayoutstatus.md} +1 -1
  121. package/docs/sdk/models/shared/paymentrefund.md +17 -0
  122. package/docs/sdk/models/shared/{accountingrefundstatus.md → paymentrefundstatus.md} +1 -1
  123. package/docs/sdk/models/shared/propertyconnectioncategories.md +2 -1
  124. package/docs/sdk/models/shared/propertyconnectionpermissions.md +6 -4
  125. package/docs/sdk/models/shared/propertyintegrationcategories.md +2 -1
  126. package/package.json +1 -1
  127. package/docs/sdk/models/operations/createaccountingpaymentrequest.md +0 -9
  128. package/docs/sdk/models/operations/createaccountingpaymentresponse.md +0 -11
  129. package/docs/sdk/models/operations/getaccountingpaymentresponse.md +0 -11
  130. package/docs/sdk/models/operations/getaccountingpayoutresponse.md +0 -11
  131. package/docs/sdk/models/operations/getaccountingrefundresponse.md +0 -11
  132. package/docs/sdk/models/operations/listaccountingpaymentsresponse.md +0 -11
  133. package/docs/sdk/models/operations/listaccountingpayoutsresponse.md +0 -11
  134. package/docs/sdk/models/operations/listaccountingrefundsresponse.md +0 -11
  135. package/docs/sdk/models/operations/patchaccountingpaymentrequest.md +0 -10
  136. package/docs/sdk/models/operations/patchaccountingpaymentresponse.md +0 -11
  137. package/docs/sdk/models/operations/updateaccountingpaymentrequest.md +0 -10
  138. package/docs/sdk/models/operations/updateaccountingpaymentresponse.md +0 -11
  139. package/docs/sdk/models/shared/accountingpayout.md +0 -15
  140. package/docs/sdk/models/shared/accountingrefund.md +0 -17
  141. package/docs/sdks/account/README.md +0 -312
  142. package/docs/sdks/accounting/README.md +0 -2198
  143. package/docs/sdks/activity/README.md +0 -321
  144. package/docs/sdks/apicall/README.md +0 -95
  145. package/docs/sdks/application/README.md +0 -333
  146. package/docs/sdks/applicationstatus/README.md +0 -54
  147. package/docs/sdks/ats/README.md +0 -2488
  148. package/docs/sdks/auth/README.md +0 -103
  149. package/docs/sdks/call/README.md +0 -54
  150. package/docs/sdks/candidate/README.md +0 -369
  151. package/docs/sdks/collection/README.md +0 -348
  152. package/docs/sdks/commerce/README.md +0 -1371
  153. package/docs/sdks/company/README.md +0 -517
  154. package/docs/sdks/connection/README.md +0 -359
  155. package/docs/sdks/contact/README.md +0 -1028
  156. package/docs/sdks/crm/README.md +0 -2048
  157. package/docs/sdks/customer/README.md +0 -348
  158. package/docs/sdks/deal/README.md +0 -315
  159. package/docs/sdks/document/README.md +0 -309
  160. package/docs/sdks/employee/README.md +0 -363
  161. package/docs/sdks/enrich/README.md +0 -97
  162. package/docs/sdks/event/README.md +0 -390
  163. package/docs/sdks/file/README.md +0 -330
  164. package/docs/sdks/group/README.md +0 -327
  165. package/docs/sdks/hris/README.md +0 -685
  166. package/docs/sdks/integration/README.md +0 -155
  167. package/docs/sdks/interview/README.md +0 -318
  168. package/docs/sdks/inventory/README.md +0 -309
  169. package/docs/sdks/invoice/README.md +0 -324
  170. package/docs/sdks/issue/README.md +0 -49
  171. package/docs/sdks/item/README.md +0 -417
  172. package/docs/sdks/job/README.md +0 -396
  173. package/docs/sdks/lead/README.md +0 -336
  174. package/docs/sdks/list/README.md +0 -306
  175. package/docs/sdks/location/README.md +0 -312
  176. package/docs/sdks/login/README.md +0 -52
  177. package/docs/sdks/martech/README.md +0 -643
  178. package/docs/sdks/member/README.md +0 -342
  179. package/docs/sdks/note/README.md +0 -306
  180. package/docs/sdks/organization/README.md +0 -104
  181. package/docs/sdks/passthrough/README.md +0 -249
  182. package/docs/sdks/payment/README.md +0 -306
  183. package/docs/sdks/payout/README.md +0 -104
  184. package/docs/sdks/person/README.md +0 -51
  185. package/docs/sdks/pipeline/README.md +0 -306
  186. package/docs/sdks/refund/README.md +0 -104
  187. package/docs/sdks/scorecard/README.md +0 -324
  188. package/docs/sdks/storage/README.md +0 -330
  189. package/docs/sdks/taxrate/README.md +0 -312
  190. package/docs/sdks/ticket/README.md +0 -318
  191. package/docs/sdks/ticketing/README.md +0 -962
  192. package/docs/sdks/transaction/README.md +0 -327
  193. package/docs/sdks/uc/README.md +0 -388
  194. package/docs/sdks/unified/README.md +0 -929
  195. package/docs/sdks/unifiedto/README.md +0 -9
  196. package/docs/sdks/webhook/README.md +0 -291
package/README.md CHANGED
@@ -1,13 +1,8 @@
1
- # Unified-to
2
-
3
- <div align="left">
4
- <a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
5
- <a href="https://github.com/unified-to/unified-typescript-sdk.git/actions"><img src="https://img.shields.io/github/actions/workflow/status/unified-to/unified-typescript-sdk/speakeasy_sdk_generation.yml?style=for-the-badge" /></a>
6
-
1
+ SDK for [Unified.to](https://unified.to) API
7
2
  </div>
8
3
 
9
4
  <!-- Start SDK Installation [installation] -->
10
- ## SDK Installation
5
+ ## Installation
11
6
 
12
7
  ### NPM
13
8
 
@@ -29,7 +24,6 @@ yarn add @unified-api/typescript-sdk
29
24
 
30
25
  ```typescript
31
26
  import { UnifiedTo } from "@unified-api/typescript-sdk";
32
- import { Status, TypeT } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
33
27
 
34
28
  async function run() {
35
29
  const sdk = new UnifiedTo({
@@ -38,18 +32,13 @@ async function run() {
38
32
  },
39
33
  });
40
34
 
41
- const res = await sdk.accounting.createAccountingAccount({
42
- accountingAccount: {
43
- name: "<value>",
44
- raw: {
45
- key: "<value>",
46
- },
47
- },
35
+ const res = await sdk.accounting.listAtsJobs({
48
36
  connectionId: "<value>",
49
37
  });
50
38
 
51
39
  if (res.statusCode == 200) {
52
40
  // handle response
41
+ console.log(res.atsJobs);
53
42
  }
54
43
  }
55
44
 
@@ -58,681 +47,6 @@ run();
58
47
  ```
59
48
  <!-- End SDK Example Usage [usage] -->
60
49
 
61
- <!-- Start Available Resources and Operations [operations] -->
62
- ## Available Resources and Operations
63
-
64
- ### [accounting](docs/sdks/accounting/README.md)
65
-
66
- * [createAccountingAccount](docs/sdks/accounting/README.md#createaccountingaccount) - Create an account
67
- * [createAccountingContact](docs/sdks/accounting/README.md#createaccountingcontact) - Create a contact
68
- * [createAccountingInvoice](docs/sdks/accounting/README.md#createaccountinginvoice) - Create a invoice
69
- * [createAccountingPayment](docs/sdks/accounting/README.md#createaccountingpayment) - Create a payment
70
- * [createAccountingTaxrate](docs/sdks/accounting/README.md#createaccountingtaxrate) - Create a taxrate
71
- * [createAccountingTransaction](docs/sdks/accounting/README.md#createaccountingtransaction) - Create a transaction
72
- * [getAccountingAccount](docs/sdks/accounting/README.md#getaccountingaccount) - Retrieve an account
73
- * [getAccountingContact](docs/sdks/accounting/README.md#getaccountingcontact) - Retrieve a contact
74
- * [getAccountingInvoice](docs/sdks/accounting/README.md#getaccountinginvoice) - Retrieve a invoice
75
- * [getAccountingOrganization](docs/sdks/accounting/README.md#getaccountingorganization) - Retrieve an organization
76
- * [getAccountingPayment](docs/sdks/accounting/README.md#getaccountingpayment) - Retrieve a payment
77
- * [getAccountingPayout](docs/sdks/accounting/README.md#getaccountingpayout) - Retrieve a payout
78
- * [getAccountingRefund](docs/sdks/accounting/README.md#getaccountingrefund) - Retrieve a refund
79
- * [getAccountingTaxrate](docs/sdks/accounting/README.md#getaccountingtaxrate) - Retrieve a taxrate
80
- * [getAccountingTransaction](docs/sdks/accounting/README.md#getaccountingtransaction) - Retrieve a transaction
81
- * [listAccountingAccounts](docs/sdks/accounting/README.md#listaccountingaccounts) - List all accounts
82
- * [listAccountingContacts](docs/sdks/accounting/README.md#listaccountingcontacts) - List all contacts
83
- * [listAccountingInvoices](docs/sdks/accounting/README.md#listaccountinginvoices) - List all invoices
84
- * [listAccountingOrganizations](docs/sdks/accounting/README.md#listaccountingorganizations) - List all organizations
85
- * [listAccountingPayments](docs/sdks/accounting/README.md#listaccountingpayments) - List all payments
86
- * [listAccountingPayouts](docs/sdks/accounting/README.md#listaccountingpayouts) - List all payouts
87
- * [listAccountingRefunds](docs/sdks/accounting/README.md#listaccountingrefunds) - List all refunds
88
- * [listAccountingTaxrates](docs/sdks/accounting/README.md#listaccountingtaxrates) - List all taxrates
89
- * [listAccountingTransactions](docs/sdks/accounting/README.md#listaccountingtransactions) - List all transactions
90
- * [patchAccountingAccount](docs/sdks/accounting/README.md#patchaccountingaccount) - Update an account
91
- * [patchAccountingContact](docs/sdks/accounting/README.md#patchaccountingcontact) - Update a contact
92
- * [patchAccountingInvoice](docs/sdks/accounting/README.md#patchaccountinginvoice) - Update a invoice
93
- * [patchAccountingPayment](docs/sdks/accounting/README.md#patchaccountingpayment) - Update a payment
94
- * [patchAccountingTaxrate](docs/sdks/accounting/README.md#patchaccountingtaxrate) - Update a taxrate
95
- * [patchAccountingTransaction](docs/sdks/accounting/README.md#patchaccountingtransaction) - Update a transaction
96
- * [removeAccountingAccount](docs/sdks/accounting/README.md#removeaccountingaccount) - Remove an account
97
- * [removeAccountingContact](docs/sdks/accounting/README.md#removeaccountingcontact) - Remove a contact
98
- * [removeAccountingInvoice](docs/sdks/accounting/README.md#removeaccountinginvoice) - Remove a invoice
99
- * [removeAccountingPayment](docs/sdks/accounting/README.md#removeaccountingpayment) - Remove a payment
100
- * [removeAccountingTaxrate](docs/sdks/accounting/README.md#removeaccountingtaxrate) - Remove a taxrate
101
- * [removeAccountingTransaction](docs/sdks/accounting/README.md#removeaccountingtransaction) - Remove a transaction
102
- * [updateAccountingAccount](docs/sdks/accounting/README.md#updateaccountingaccount) - Update an account
103
- * [updateAccountingContact](docs/sdks/accounting/README.md#updateaccountingcontact) - Update a contact
104
- * [updateAccountingInvoice](docs/sdks/accounting/README.md#updateaccountinginvoice) - Update a invoice
105
- * [updateAccountingPayment](docs/sdks/accounting/README.md#updateaccountingpayment) - Update a payment
106
- * [updateAccountingTaxrate](docs/sdks/accounting/README.md#updateaccountingtaxrate) - Update a taxrate
107
- * [updateAccountingTransaction](docs/sdks/accounting/README.md#updateaccountingtransaction) - Update a transaction
108
-
109
- ### [account](docs/sdks/account/README.md)
110
-
111
- * [createAccountingAccount](docs/sdks/account/README.md#createaccountingaccount) - Create an account
112
- * [getAccountingAccount](docs/sdks/account/README.md#getaccountingaccount) - Retrieve an account
113
- * [listAccountingAccounts](docs/sdks/account/README.md#listaccountingaccounts) - List all accounts
114
- * [patchAccountingAccount](docs/sdks/account/README.md#patchaccountingaccount) - Update an account
115
- * [removeAccountingAccount](docs/sdks/account/README.md#removeaccountingaccount) - Remove an account
116
- * [updateAccountingAccount](docs/sdks/account/README.md#updateaccountingaccount) - Update an account
117
-
118
- ### [contact](docs/sdks/contact/README.md)
119
-
120
- * [createAccountingContact](docs/sdks/contact/README.md#createaccountingcontact) - Create a contact
121
- * [createCrmContact](docs/sdks/contact/README.md#createcrmcontact) - Create a contact
122
- * [createUcContact](docs/sdks/contact/README.md#createuccontact) - Create a contact
123
- * [getAccountingContact](docs/sdks/contact/README.md#getaccountingcontact) - Retrieve a contact
124
- * [getCrmContact](docs/sdks/contact/README.md#getcrmcontact) - Retrieve a contact
125
- * [getUcContact](docs/sdks/contact/README.md#getuccontact) - Retrieve a contact
126
- * [listAccountingContacts](docs/sdks/contact/README.md#listaccountingcontacts) - List all contacts
127
- * [listCrmContacts](docs/sdks/contact/README.md#listcrmcontacts) - List all contacts
128
- * [listUcContacts](docs/sdks/contact/README.md#listuccontacts) - List all contacts
129
- * [patchAccountingContact](docs/sdks/contact/README.md#patchaccountingcontact) - Update a contact
130
- * [patchCrmContact](docs/sdks/contact/README.md#patchcrmcontact) - Update a contact
131
- * [patchUcContact](docs/sdks/contact/README.md#patchuccontact) - Update a contact
132
- * [removeAccountingContact](docs/sdks/contact/README.md#removeaccountingcontact) - Remove a contact
133
- * [removeCrmContact](docs/sdks/contact/README.md#removecrmcontact) - Remove a contact
134
- * [removeUcContact](docs/sdks/contact/README.md#removeuccontact) - Remove a contact
135
- * [updateAccountingContact](docs/sdks/contact/README.md#updateaccountingcontact) - Update a contact
136
- * [updateCrmContact](docs/sdks/contact/README.md#updatecrmcontact) - Update a contact
137
- * [updateUcContact](docs/sdks/contact/README.md#updateuccontact) - Update a contact
138
-
139
- ### [invoice](docs/sdks/invoice/README.md)
140
-
141
- * [createAccountingInvoice](docs/sdks/invoice/README.md#createaccountinginvoice) - Create a invoice
142
- * [getAccountingInvoice](docs/sdks/invoice/README.md#getaccountinginvoice) - Retrieve a invoice
143
- * [listAccountingInvoices](docs/sdks/invoice/README.md#listaccountinginvoices) - List all invoices
144
- * [patchAccountingInvoice](docs/sdks/invoice/README.md#patchaccountinginvoice) - Update a invoice
145
- * [removeAccountingInvoice](docs/sdks/invoice/README.md#removeaccountinginvoice) - Remove a invoice
146
- * [updateAccountingInvoice](docs/sdks/invoice/README.md#updateaccountinginvoice) - Update a invoice
147
-
148
- ### [organization](docs/sdks/organization/README.md)
149
-
150
- * [getAccountingOrganization](docs/sdks/organization/README.md#getaccountingorganization) - Retrieve an organization
151
- * [listAccountingOrganizations](docs/sdks/organization/README.md#listaccountingorganizations) - List all organizations
152
-
153
- ### [payment](docs/sdks/payment/README.md)
154
-
155
- * [createAccountingPayment](docs/sdks/payment/README.md#createaccountingpayment) - Create a payment
156
- * [getAccountingPayment](docs/sdks/payment/README.md#getaccountingpayment) - Retrieve a payment
157
- * [listAccountingPayments](docs/sdks/payment/README.md#listaccountingpayments) - List all payments
158
- * [patchAccountingPayment](docs/sdks/payment/README.md#patchaccountingpayment) - Update a payment
159
- * [removeAccountingPayment](docs/sdks/payment/README.md#removeaccountingpayment) - Remove a payment
160
- * [updateAccountingPayment](docs/sdks/payment/README.md#updateaccountingpayment) - Update a payment
161
-
162
- ### [payout](docs/sdks/payout/README.md)
163
-
164
- * [getAccountingPayout](docs/sdks/payout/README.md#getaccountingpayout) - Retrieve a payout
165
- * [listAccountingPayouts](docs/sdks/payout/README.md#listaccountingpayouts) - List all payouts
166
-
167
- ### [refund](docs/sdks/refund/README.md)
168
-
169
- * [getAccountingRefund](docs/sdks/refund/README.md#getaccountingrefund) - Retrieve a refund
170
- * [listAccountingRefunds](docs/sdks/refund/README.md#listaccountingrefunds) - List all refunds
171
-
172
- ### [taxrate](docs/sdks/taxrate/README.md)
173
-
174
- * [createAccountingTaxrate](docs/sdks/taxrate/README.md#createaccountingtaxrate) - Create a taxrate
175
- * [getAccountingTaxrate](docs/sdks/taxrate/README.md#getaccountingtaxrate) - Retrieve a taxrate
176
- * [listAccountingTaxrates](docs/sdks/taxrate/README.md#listaccountingtaxrates) - List all taxrates
177
- * [patchAccountingTaxrate](docs/sdks/taxrate/README.md#patchaccountingtaxrate) - Update a taxrate
178
- * [removeAccountingTaxrate](docs/sdks/taxrate/README.md#removeaccountingtaxrate) - Remove a taxrate
179
- * [updateAccountingTaxrate](docs/sdks/taxrate/README.md#updateaccountingtaxrate) - Update a taxrate
180
-
181
- ### [transaction](docs/sdks/transaction/README.md)
182
-
183
- * [createAccountingTransaction](docs/sdks/transaction/README.md#createaccountingtransaction) - Create a transaction
184
- * [getAccountingTransaction](docs/sdks/transaction/README.md#getaccountingtransaction) - Retrieve a transaction
185
- * [listAccountingTransactions](docs/sdks/transaction/README.md#listaccountingtransactions) - List all transactions
186
- * [patchAccountingTransaction](docs/sdks/transaction/README.md#patchaccountingtransaction) - Update a transaction
187
- * [removeAccountingTransaction](docs/sdks/transaction/README.md#removeaccountingtransaction) - Remove a transaction
188
- * [updateAccountingTransaction](docs/sdks/transaction/README.md#updateaccountingtransaction) - Update a transaction
189
-
190
- ### [ats](docs/sdks/ats/README.md)
191
-
192
- * [createAtsActivity](docs/sdks/ats/README.md#createatsactivity) - Create an activity
193
- * [createAtsApplication](docs/sdks/ats/README.md#createatsapplication) - Create an application
194
- * [createAtsCandidate](docs/sdks/ats/README.md#createatscandidate) - Create a candidate
195
- * [createAtsDocument](docs/sdks/ats/README.md#createatsdocument) - Create a document
196
- * [createAtsInterview](docs/sdks/ats/README.md#createatsinterview) - Create a interview
197
- * [createAtsJob](docs/sdks/ats/README.md#createatsjob) - Create a job
198
- * [createAtsScorecard](docs/sdks/ats/README.md#createatsscorecard) - Create a scorecard
199
- * [getAtsActivity](docs/sdks/ats/README.md#getatsactivity) - Retrieve an activity
200
- * [getAtsApplication](docs/sdks/ats/README.md#getatsapplication) - Retrieve an application
201
- * [getAtsCandidate](docs/sdks/ats/README.md#getatscandidate) - Retrieve a candidate
202
- * [getAtsCompany](docs/sdks/ats/README.md#getatscompany) - Retrieve a company
203
- * [getAtsDocument](docs/sdks/ats/README.md#getatsdocument) - Retrieve a document
204
- * [getAtsInterview](docs/sdks/ats/README.md#getatsinterview) - Retrieve a interview
205
- * [getAtsJob](docs/sdks/ats/README.md#getatsjob) - Retrieve a job
206
- * [getAtsScorecard](docs/sdks/ats/README.md#getatsscorecard) - Retrieve a scorecard
207
- * [listAtsActivities](docs/sdks/ats/README.md#listatsactivities) - List all activities
208
- * [listAtsApplications](docs/sdks/ats/README.md#listatsapplications) - List all applications
209
- * [listAtsApplicationstatuses](docs/sdks/ats/README.md#listatsapplicationstatuses) - List all application statuses
210
- * [listAtsCandidates](docs/sdks/ats/README.md#listatscandidates) - List all candidates
211
- * [listAtsCompanies](docs/sdks/ats/README.md#listatscompanies) - List all companies
212
- * [listAtsDocuments](docs/sdks/ats/README.md#listatsdocuments) - List all documents
213
- * [listAtsInterviews](docs/sdks/ats/README.md#listatsinterviews) - List all interviews
214
- * [listAtsJobs](docs/sdks/ats/README.md#listatsjobs) - List all jobs
215
- * [listAtsScorecards](docs/sdks/ats/README.md#listatsscorecards) - List all scorecards
216
- * [patchAtsActivity](docs/sdks/ats/README.md#patchatsactivity) - Update an activity
217
- * [patchAtsApplication](docs/sdks/ats/README.md#patchatsapplication) - Update an application
218
- * [patchAtsCandidate](docs/sdks/ats/README.md#patchatscandidate) - Update a candidate
219
- * [patchAtsDocument](docs/sdks/ats/README.md#patchatsdocument) - Update a document
220
- * [patchAtsInterview](docs/sdks/ats/README.md#patchatsinterview) - Update a interview
221
- * [patchAtsJob](docs/sdks/ats/README.md#patchatsjob) - Update a job
222
- * [patchAtsScorecard](docs/sdks/ats/README.md#patchatsscorecard) - Update a scorecard
223
- * [removeAtsActivity](docs/sdks/ats/README.md#removeatsactivity) - Remove an activity
224
- * [removeAtsApplication](docs/sdks/ats/README.md#removeatsapplication) - Remove an application
225
- * [removeAtsCandidate](docs/sdks/ats/README.md#removeatscandidate) - Remove a candidate
226
- * [removeAtsDocument](docs/sdks/ats/README.md#removeatsdocument) - Remove a document
227
- * [removeAtsInterview](docs/sdks/ats/README.md#removeatsinterview) - Remove a interview
228
- * [removeAtsJob](docs/sdks/ats/README.md#removeatsjob) - Remove a job
229
- * [removeAtsScorecard](docs/sdks/ats/README.md#removeatsscorecard) - Remove a scorecard
230
- * [updateAtsActivity](docs/sdks/ats/README.md#updateatsactivity) - Update an activity
231
- * [updateAtsApplication](docs/sdks/ats/README.md#updateatsapplication) - Update an application
232
- * [updateAtsCandidate](docs/sdks/ats/README.md#updateatscandidate) - Update a candidate
233
- * [updateAtsDocument](docs/sdks/ats/README.md#updateatsdocument) - Update a document
234
- * [updateAtsInterview](docs/sdks/ats/README.md#updateatsinterview) - Update a interview
235
- * [updateAtsJob](docs/sdks/ats/README.md#updateatsjob) - Update a job
236
- * [updateAtsScorecard](docs/sdks/ats/README.md#updateatsscorecard) - Update a scorecard
237
-
238
- ### [activity](docs/sdks/activity/README.md)
239
-
240
- * [createAtsActivity](docs/sdks/activity/README.md#createatsactivity) - Create an activity
241
- * [getAtsActivity](docs/sdks/activity/README.md#getatsactivity) - Retrieve an activity
242
- * [listAtsActivities](docs/sdks/activity/README.md#listatsactivities) - List all activities
243
- * [patchAtsActivity](docs/sdks/activity/README.md#patchatsactivity) - Update an activity
244
- * [removeAtsActivity](docs/sdks/activity/README.md#removeatsactivity) - Remove an activity
245
- * [updateAtsActivity](docs/sdks/activity/README.md#updateatsactivity) - Update an activity
246
-
247
- ### [application](docs/sdks/application/README.md)
248
-
249
- * [createAtsApplication](docs/sdks/application/README.md#createatsapplication) - Create an application
250
- * [getAtsApplication](docs/sdks/application/README.md#getatsapplication) - Retrieve an application
251
- * [listAtsApplications](docs/sdks/application/README.md#listatsapplications) - List all applications
252
- * [patchAtsApplication](docs/sdks/application/README.md#patchatsapplication) - Update an application
253
- * [removeAtsApplication](docs/sdks/application/README.md#removeatsapplication) - Remove an application
254
- * [updateAtsApplication](docs/sdks/application/README.md#updateatsapplication) - Update an application
255
-
256
- ### [applicationstatus](docs/sdks/applicationstatus/README.md)
257
-
258
- * [listAtsApplicationstatuses](docs/sdks/applicationstatus/README.md#listatsapplicationstatuses) - List all application statuses
259
-
260
- ### [candidate](docs/sdks/candidate/README.md)
261
-
262
- * [createAtsCandidate](docs/sdks/candidate/README.md#createatscandidate) - Create a candidate
263
- * [getAtsCandidate](docs/sdks/candidate/README.md#getatscandidate) - Retrieve a candidate
264
- * [listAtsCandidates](docs/sdks/candidate/README.md#listatscandidates) - List all candidates
265
- * [patchAtsCandidate](docs/sdks/candidate/README.md#patchatscandidate) - Update a candidate
266
- * [removeAtsCandidate](docs/sdks/candidate/README.md#removeatscandidate) - Remove a candidate
267
- * [updateAtsCandidate](docs/sdks/candidate/README.md#updateatscandidate) - Update a candidate
268
-
269
- ### [company](docs/sdks/company/README.md)
270
-
271
- * [createCrmCompany](docs/sdks/company/README.md#createcrmcompany) - Create a company
272
- * [getAtsCompany](docs/sdks/company/README.md#getatscompany) - Retrieve a company
273
- * [getCrmCompany](docs/sdks/company/README.md#getcrmcompany) - Retrieve a company
274
- * [listAtsCompanies](docs/sdks/company/README.md#listatscompanies) - List all companies
275
- * [listCrmCompanies](docs/sdks/company/README.md#listcrmcompanies) - List all companies
276
- * [listEnrichCompanies](docs/sdks/company/README.md#listenrichcompanies) - Retrieve enrichment information for a company
277
- * [patchCrmCompany](docs/sdks/company/README.md#patchcrmcompany) - Update a company
278
- * [removeCrmCompany](docs/sdks/company/README.md#removecrmcompany) - Remove a company
279
- * [updateCrmCompany](docs/sdks/company/README.md#updatecrmcompany) - Update a company
280
-
281
- ### [document](docs/sdks/document/README.md)
282
-
283
- * [createAtsDocument](docs/sdks/document/README.md#createatsdocument) - Create a document
284
- * [getAtsDocument](docs/sdks/document/README.md#getatsdocument) - Retrieve a document
285
- * [listAtsDocuments](docs/sdks/document/README.md#listatsdocuments) - List all documents
286
- * [patchAtsDocument](docs/sdks/document/README.md#patchatsdocument) - Update a document
287
- * [removeAtsDocument](docs/sdks/document/README.md#removeatsdocument) - Remove a document
288
- * [updateAtsDocument](docs/sdks/document/README.md#updateatsdocument) - Update a document
289
-
290
- ### [interview](docs/sdks/interview/README.md)
291
-
292
- * [createAtsInterview](docs/sdks/interview/README.md#createatsinterview) - Create a interview
293
- * [getAtsInterview](docs/sdks/interview/README.md#getatsinterview) - Retrieve a interview
294
- * [listAtsInterviews](docs/sdks/interview/README.md#listatsinterviews) - List all interviews
295
- * [patchAtsInterview](docs/sdks/interview/README.md#patchatsinterview) - Update a interview
296
- * [removeAtsInterview](docs/sdks/interview/README.md#removeatsinterview) - Remove a interview
297
- * [updateAtsInterview](docs/sdks/interview/README.md#updateatsinterview) - Update a interview
298
-
299
- ### [job](docs/sdks/job/README.md)
300
-
301
- * [createAtsJob](docs/sdks/job/README.md#createatsjob) - Create a job
302
- * [getAtsJob](docs/sdks/job/README.md#getatsjob) - Retrieve a job
303
- * [listAtsJobs](docs/sdks/job/README.md#listatsjobs) - List all jobs
304
- * [patchAtsJob](docs/sdks/job/README.md#patchatsjob) - Update a job
305
- * [removeAtsJob](docs/sdks/job/README.md#removeatsjob) - Remove a job
306
- * [updateAtsJob](docs/sdks/job/README.md#updateatsjob) - Update a job
307
-
308
- ### [scorecard](docs/sdks/scorecard/README.md)
309
-
310
- * [createAtsScorecard](docs/sdks/scorecard/README.md#createatsscorecard) - Create a scorecard
311
- * [getAtsScorecard](docs/sdks/scorecard/README.md#getatsscorecard) - Retrieve a scorecard
312
- * [listAtsScorecards](docs/sdks/scorecard/README.md#listatsscorecards) - List all scorecards
313
- * [patchAtsScorecard](docs/sdks/scorecard/README.md#patchatsscorecard) - Update a scorecard
314
- * [removeAtsScorecard](docs/sdks/scorecard/README.md#removeatsscorecard) - Remove a scorecard
315
- * [updateAtsScorecard](docs/sdks/scorecard/README.md#updateatsscorecard) - Update a scorecard
316
-
317
- ### [commerce](docs/sdks/commerce/README.md)
318
-
319
- * [createCommerceCollection](docs/sdks/commerce/README.md#createcommercecollection) - Create a collection
320
- * [createCommerceInventory](docs/sdks/commerce/README.md#createcommerceinventory) - Create an inventory
321
- * [createCommerceItem](docs/sdks/commerce/README.md#createcommerceitem) - Create an item
322
- * [createCommerceLocation](docs/sdks/commerce/README.md#createcommercelocation) - Create a location
323
- * [getCommerceCollection](docs/sdks/commerce/README.md#getcommercecollection) - Retrieve a collection
324
- * [getCommerceInventory](docs/sdks/commerce/README.md#getcommerceinventory) - Retrieve an inventory
325
- * [getCommerceItem](docs/sdks/commerce/README.md#getcommerceitem) - Retrieve an item
326
- * [getCommerceLocation](docs/sdks/commerce/README.md#getcommercelocation) - Retrieve a location
327
- * [listCommerceCollections](docs/sdks/commerce/README.md#listcommercecollections) - List all collections
328
- * [listCommerceInventories](docs/sdks/commerce/README.md#listcommerceinventories) - List all inventories
329
- * [listCommerceItems](docs/sdks/commerce/README.md#listcommerceitems) - List all items
330
- * [listCommerceLocations](docs/sdks/commerce/README.md#listcommercelocations) - List all locations
331
- * [patchCommerceCollection](docs/sdks/commerce/README.md#patchcommercecollection) - Update a collection
332
- * [patchCommerceInventory](docs/sdks/commerce/README.md#patchcommerceinventory) - Update an inventory
333
- * [patchCommerceItem](docs/sdks/commerce/README.md#patchcommerceitem) - Update an item
334
- * [patchCommerceLocation](docs/sdks/commerce/README.md#patchcommercelocation) - Update a location
335
- * [removeCommerceCollection](docs/sdks/commerce/README.md#removecommercecollection) - Remove a collection
336
- * [removeCommerceInventory](docs/sdks/commerce/README.md#removecommerceinventory) - Remove an inventory
337
- * [removeCommerceItem](docs/sdks/commerce/README.md#removecommerceitem) - Remove an item
338
- * [removeCommerceLocation](docs/sdks/commerce/README.md#removecommercelocation) - Remove a location
339
- * [updateCommerceCollection](docs/sdks/commerce/README.md#updatecommercecollection) - Update a collection
340
- * [updateCommerceInventory](docs/sdks/commerce/README.md#updatecommerceinventory) - Update an inventory
341
- * [updateCommerceItem](docs/sdks/commerce/README.md#updatecommerceitem) - Update an item
342
- * [updateCommerceLocation](docs/sdks/commerce/README.md#updatecommercelocation) - Update a location
343
-
344
- ### [collection](docs/sdks/collection/README.md)
345
-
346
- * [createCommerceCollection](docs/sdks/collection/README.md#createcommercecollection) - Create a collection
347
- * [getCommerceCollection](docs/sdks/collection/README.md#getcommercecollection) - Retrieve a collection
348
- * [listCommerceCollections](docs/sdks/collection/README.md#listcommercecollections) - List all collections
349
- * [patchCommerceCollection](docs/sdks/collection/README.md#patchcommercecollection) - Update a collection
350
- * [removeCommerceCollection](docs/sdks/collection/README.md#removecommercecollection) - Remove a collection
351
- * [updateCommerceCollection](docs/sdks/collection/README.md#updatecommercecollection) - Update a collection
352
-
353
- ### [inventory](docs/sdks/inventory/README.md)
354
-
355
- * [createCommerceInventory](docs/sdks/inventory/README.md#createcommerceinventory) - Create an inventory
356
- * [getCommerceInventory](docs/sdks/inventory/README.md#getcommerceinventory) - Retrieve an inventory
357
- * [listCommerceInventories](docs/sdks/inventory/README.md#listcommerceinventories) - List all inventories
358
- * [patchCommerceInventory](docs/sdks/inventory/README.md#patchcommerceinventory) - Update an inventory
359
- * [removeCommerceInventory](docs/sdks/inventory/README.md#removecommerceinventory) - Remove an inventory
360
- * [updateCommerceInventory](docs/sdks/inventory/README.md#updatecommerceinventory) - Update an inventory
361
-
362
- ### [item](docs/sdks/item/README.md)
363
-
364
- * [createCommerceItem](docs/sdks/item/README.md#createcommerceitem) - Create an item
365
- * [getCommerceItem](docs/sdks/item/README.md#getcommerceitem) - Retrieve an item
366
- * [listCommerceItems](docs/sdks/item/README.md#listcommerceitems) - List all items
367
- * [patchCommerceItem](docs/sdks/item/README.md#patchcommerceitem) - Update an item
368
- * [removeCommerceItem](docs/sdks/item/README.md#removecommerceitem) - Remove an item
369
- * [updateCommerceItem](docs/sdks/item/README.md#updatecommerceitem) - Update an item
370
-
371
- ### [location](docs/sdks/location/README.md)
372
-
373
- * [createCommerceLocation](docs/sdks/location/README.md#createcommercelocation) - Create a location
374
- * [getCommerceLocation](docs/sdks/location/README.md#getcommercelocation) - Retrieve a location
375
- * [listCommerceLocations](docs/sdks/location/README.md#listcommercelocations) - List all locations
376
- * [patchCommerceLocation](docs/sdks/location/README.md#patchcommercelocation) - Update a location
377
- * [removeCommerceLocation](docs/sdks/location/README.md#removecommercelocation) - Remove a location
378
- * [updateCommerceLocation](docs/sdks/location/README.md#updatecommercelocation) - Update a location
379
-
380
- ### [crm](docs/sdks/crm/README.md)
381
-
382
- * [createCrmCompany](docs/sdks/crm/README.md#createcrmcompany) - Create a company
383
- * [createCrmContact](docs/sdks/crm/README.md#createcrmcontact) - Create a contact
384
- * [createCrmDeal](docs/sdks/crm/README.md#createcrmdeal) - Create a deal
385
- * [createCrmEvent](docs/sdks/crm/README.md#createcrmevent) - Create a event
386
- * [createCrmLead](docs/sdks/crm/README.md#createcrmlead) - Create a lead
387
- * [createCrmPipeline](docs/sdks/crm/README.md#createcrmpipeline) - Create a pipeline
388
- * [getCrmCompany](docs/sdks/crm/README.md#getcrmcompany) - Retrieve a company
389
- * [getCrmContact](docs/sdks/crm/README.md#getcrmcontact) - Retrieve a contact
390
- * [getCrmDeal](docs/sdks/crm/README.md#getcrmdeal) - Retrieve a deal
391
- * [getCrmEvent](docs/sdks/crm/README.md#getcrmevent) - Retrieve a event
392
- * [getCrmLead](docs/sdks/crm/README.md#getcrmlead) - Retrieve a lead
393
- * [getCrmPipeline](docs/sdks/crm/README.md#getcrmpipeline) - Retrieve a pipeline
394
- * [listCrmCompanies](docs/sdks/crm/README.md#listcrmcompanies) - List all companies
395
- * [listCrmContacts](docs/sdks/crm/README.md#listcrmcontacts) - List all contacts
396
- * [listCrmDeals](docs/sdks/crm/README.md#listcrmdeals) - List all deals
397
- * [listCrmEvents](docs/sdks/crm/README.md#listcrmevents) - List all events
398
- * [listCrmLeads](docs/sdks/crm/README.md#listcrmleads) - List all leads
399
- * [listCrmPipelines](docs/sdks/crm/README.md#listcrmpipelines) - List all pipelines
400
- * [patchCrmCompany](docs/sdks/crm/README.md#patchcrmcompany) - Update a company
401
- * [patchCrmContact](docs/sdks/crm/README.md#patchcrmcontact) - Update a contact
402
- * [patchCrmDeal](docs/sdks/crm/README.md#patchcrmdeal) - Update a deal
403
- * [patchCrmEvent](docs/sdks/crm/README.md#patchcrmevent) - Update a event
404
- * [patchCrmLead](docs/sdks/crm/README.md#patchcrmlead) - Update a lead
405
- * [patchCrmPipeline](docs/sdks/crm/README.md#patchcrmpipeline) - Update a pipeline
406
- * [removeCrmCompany](docs/sdks/crm/README.md#removecrmcompany) - Remove a company
407
- * [removeCrmContact](docs/sdks/crm/README.md#removecrmcontact) - Remove a contact
408
- * [removeCrmDeal](docs/sdks/crm/README.md#removecrmdeal) - Remove a deal
409
- * [removeCrmEvent](docs/sdks/crm/README.md#removecrmevent) - Remove a event
410
- * [removeCrmLead](docs/sdks/crm/README.md#removecrmlead) - Remove a lead
411
- * [removeCrmPipeline](docs/sdks/crm/README.md#removecrmpipeline) - Remove a pipeline
412
- * [updateCrmCompany](docs/sdks/crm/README.md#updatecrmcompany) - Update a company
413
- * [updateCrmContact](docs/sdks/crm/README.md#updatecrmcontact) - Update a contact
414
- * [updateCrmDeal](docs/sdks/crm/README.md#updatecrmdeal) - Update a deal
415
- * [updateCrmEvent](docs/sdks/crm/README.md#updatecrmevent) - Update a event
416
- * [updateCrmLead](docs/sdks/crm/README.md#updatecrmlead) - Update a lead
417
- * [updateCrmPipeline](docs/sdks/crm/README.md#updatecrmpipeline) - Update a pipeline
418
-
419
- ### [deal](docs/sdks/deal/README.md)
420
-
421
- * [createCrmDeal](docs/sdks/deal/README.md#createcrmdeal) - Create a deal
422
- * [getCrmDeal](docs/sdks/deal/README.md#getcrmdeal) - Retrieve a deal
423
- * [listCrmDeals](docs/sdks/deal/README.md#listcrmdeals) - List all deals
424
- * [patchCrmDeal](docs/sdks/deal/README.md#patchcrmdeal) - Update a deal
425
- * [removeCrmDeal](docs/sdks/deal/README.md#removecrmdeal) - Remove a deal
426
- * [updateCrmDeal](docs/sdks/deal/README.md#updatecrmdeal) - Update a deal
427
-
428
- ### [event](docs/sdks/event/README.md)
429
-
430
- * [createCrmEvent](docs/sdks/event/README.md#createcrmevent) - Create a event
431
- * [getCrmEvent](docs/sdks/event/README.md#getcrmevent) - Retrieve a event
432
- * [listCrmEvents](docs/sdks/event/README.md#listcrmevents) - List all events
433
- * [patchCrmEvent](docs/sdks/event/README.md#patchcrmevent) - Update a event
434
- * [removeCrmEvent](docs/sdks/event/README.md#removecrmevent) - Remove a event
435
- * [updateCrmEvent](docs/sdks/event/README.md#updatecrmevent) - Update a event
436
-
437
- ### [lead](docs/sdks/lead/README.md)
438
-
439
- * [createCrmLead](docs/sdks/lead/README.md#createcrmlead) - Create a lead
440
- * [getCrmLead](docs/sdks/lead/README.md#getcrmlead) - Retrieve a lead
441
- * [listCrmLeads](docs/sdks/lead/README.md#listcrmleads) - List all leads
442
- * [patchCrmLead](docs/sdks/lead/README.md#patchcrmlead) - Update a lead
443
- * [removeCrmLead](docs/sdks/lead/README.md#removecrmlead) - Remove a lead
444
- * [updateCrmLead](docs/sdks/lead/README.md#updatecrmlead) - Update a lead
445
-
446
- ### [pipeline](docs/sdks/pipeline/README.md)
447
-
448
- * [createCrmPipeline](docs/sdks/pipeline/README.md#createcrmpipeline) - Create a pipeline
449
- * [getCrmPipeline](docs/sdks/pipeline/README.md#getcrmpipeline) - Retrieve a pipeline
450
- * [listCrmPipelines](docs/sdks/pipeline/README.md#listcrmpipelines) - List all pipelines
451
- * [patchCrmPipeline](docs/sdks/pipeline/README.md#patchcrmpipeline) - Update a pipeline
452
- * [removeCrmPipeline](docs/sdks/pipeline/README.md#removecrmpipeline) - Remove a pipeline
453
- * [updateCrmPipeline](docs/sdks/pipeline/README.md#updatecrmpipeline) - Update a pipeline
454
-
455
- ### [enrich](docs/sdks/enrich/README.md)
456
-
457
- * [listEnrichCompanies](docs/sdks/enrich/README.md#listenrichcompanies) - Retrieve enrichment information for a company
458
- * [listEnrichPeople](docs/sdks/enrich/README.md#listenrichpeople) - Retrieve enrichment information for a person
459
-
460
- ### [person](docs/sdks/person/README.md)
461
-
462
- * [listEnrichPeople](docs/sdks/person/README.md#listenrichpeople) - Retrieve enrichment information for a person
463
-
464
- ### [hris](docs/sdks/hris/README.md)
465
-
466
- * [createHrisEmployee](docs/sdks/hris/README.md#createhrisemployee) - Create an employee
467
- * [createHrisGroup](docs/sdks/hris/README.md#createhrisgroup) - Create a group
468
- * [getHrisEmployee](docs/sdks/hris/README.md#gethrisemployee) - Retrieve an employee
469
- * [getHrisGroup](docs/sdks/hris/README.md#gethrisgroup) - Retrieve a group
470
- * [listHrisEmployees](docs/sdks/hris/README.md#listhrisemployees) - List all employees
471
- * [listHrisGroups](docs/sdks/hris/README.md#listhrisgroups) - List all groups
472
- * [patchHrisEmployee](docs/sdks/hris/README.md#patchhrisemployee) - Update an employee
473
- * [patchHrisGroup](docs/sdks/hris/README.md#patchhrisgroup) - Update a group
474
- * [removeHrisEmployee](docs/sdks/hris/README.md#removehrisemployee) - Remove an employee
475
- * [removeHrisGroup](docs/sdks/hris/README.md#removehrisgroup) - Remove a group
476
- * [updateHrisEmployee](docs/sdks/hris/README.md#updatehrisemployee) - Update an employee
477
- * [updateHrisGroup](docs/sdks/hris/README.md#updatehrisgroup) - Update a group
478
-
479
- ### [employee](docs/sdks/employee/README.md)
480
-
481
- * [createHrisEmployee](docs/sdks/employee/README.md#createhrisemployee) - Create an employee
482
- * [getHrisEmployee](docs/sdks/employee/README.md#gethrisemployee) - Retrieve an employee
483
- * [listHrisEmployees](docs/sdks/employee/README.md#listhrisemployees) - List all employees
484
- * [patchHrisEmployee](docs/sdks/employee/README.md#patchhrisemployee) - Update an employee
485
- * [removeHrisEmployee](docs/sdks/employee/README.md#removehrisemployee) - Remove an employee
486
- * [updateHrisEmployee](docs/sdks/employee/README.md#updatehrisemployee) - Update an employee
487
-
488
- ### [group](docs/sdks/group/README.md)
489
-
490
- * [createHrisGroup](docs/sdks/group/README.md#createhrisgroup) - Create a group
491
- * [getHrisGroup](docs/sdks/group/README.md#gethrisgroup) - Retrieve a group
492
- * [listHrisGroups](docs/sdks/group/README.md#listhrisgroups) - List all groups
493
- * [patchHrisGroup](docs/sdks/group/README.md#patchhrisgroup) - Update a group
494
- * [removeHrisGroup](docs/sdks/group/README.md#removehrisgroup) - Remove a group
495
- * [updateHrisGroup](docs/sdks/group/README.md#updatehrisgroup) - Update a group
496
-
497
- ### [martech](docs/sdks/martech/README.md)
498
-
499
- * [createMartechList](docs/sdks/martech/README.md#createmartechlist) - Create a list
500
- * [createMartechMember](docs/sdks/martech/README.md#createmartechmember) - Create a member
501
- * [getMartechList](docs/sdks/martech/README.md#getmartechlist) - Retrieve a list
502
- * [getMartechMember](docs/sdks/martech/README.md#getmartechmember) - Retrieve a member
503
- * [listMartechLists](docs/sdks/martech/README.md#listmartechlists) - List all lists
504
- * [listMartechMembers](docs/sdks/martech/README.md#listmartechmembers) - List all members
505
- * [patchMartechList](docs/sdks/martech/README.md#patchmartechlist) - Update a list
506
- * [patchMartechMember](docs/sdks/martech/README.md#patchmartechmember) - Update a member
507
- * [removeMartechList](docs/sdks/martech/README.md#removemartechlist) - Remove a list
508
- * [removeMartechMember](docs/sdks/martech/README.md#removemartechmember) - Remove member
509
- * [updateMartechList](docs/sdks/martech/README.md#updatemartechlist) - Update a list
510
- * [updateMartechMember](docs/sdks/martech/README.md#updatemartechmember) - Update a member
511
-
512
- ### [list](docs/sdks/list/README.md)
513
-
514
- * [createMartechList](docs/sdks/list/README.md#createmartechlist) - Create a list
515
- * [getMartechList](docs/sdks/list/README.md#getmartechlist) - Retrieve a list
516
- * [listMartechLists](docs/sdks/list/README.md#listmartechlists) - List all lists
517
- * [patchMartechList](docs/sdks/list/README.md#patchmartechlist) - Update a list
518
- * [removeMartechList](docs/sdks/list/README.md#removemartechlist) - Remove a list
519
- * [updateMartechList](docs/sdks/list/README.md#updatemartechlist) - Update a list
520
-
521
- ### [member](docs/sdks/member/README.md)
522
-
523
- * [createMartechMember](docs/sdks/member/README.md#createmartechmember) - Create a member
524
- * [getMartechMember](docs/sdks/member/README.md#getmartechmember) - Retrieve a member
525
- * [listMartechMembers](docs/sdks/member/README.md#listmartechmembers) - List all members
526
- * [patchMartechMember](docs/sdks/member/README.md#patchmartechmember) - Update a member
527
- * [removeMartechMember](docs/sdks/member/README.md#removemartechmember) - Remove member
528
- * [updateMartechMember](docs/sdks/member/README.md#updatemartechmember) - Update a member
529
-
530
- ### [passthrough](docs/sdks/passthrough/README.md)
531
-
532
- * [createPassthrough](docs/sdks/passthrough/README.md#createpassthrough) - Passthrough POST
533
- * [listPassthroughs](docs/sdks/passthrough/README.md#listpassthroughs) - Passthrough GET
534
- * [patchPassthrough](docs/sdks/passthrough/README.md#patchpassthrough) - Passthrough PUT
535
- * [removePassthrough](docs/sdks/passthrough/README.md#removepassthrough) - Passthrough DELETE
536
- * [updatePassthrough](docs/sdks/passthrough/README.md#updatepassthrough) - Passthrough PUT
537
-
538
- ### [storage](docs/sdks/storage/README.md)
539
-
540
- * [createStorageFile](docs/sdks/storage/README.md#createstoragefile) - Create a file
541
- * [getStorageFile](docs/sdks/storage/README.md#getstoragefile) - Retrieve a file
542
- * [listStorageFiles](docs/sdks/storage/README.md#liststoragefiles) - List all files
543
- * [patchStorageFile](docs/sdks/storage/README.md#patchstoragefile) - Update a file
544
- * [removeStorageFile](docs/sdks/storage/README.md#removestoragefile) - Remove a file
545
- * [updateStorageFile](docs/sdks/storage/README.md#updatestoragefile) - Update a file
546
-
547
- ### [file](docs/sdks/file/README.md)
548
-
549
- * [createStorageFile](docs/sdks/file/README.md#createstoragefile) - Create a file
550
- * [getStorageFile](docs/sdks/file/README.md#getstoragefile) - Retrieve a file
551
- * [listStorageFiles](docs/sdks/file/README.md#liststoragefiles) - List all files
552
- * [patchStorageFile](docs/sdks/file/README.md#patchstoragefile) - Update a file
553
- * [removeStorageFile](docs/sdks/file/README.md#removestoragefile) - Remove a file
554
- * [updateStorageFile](docs/sdks/file/README.md#updatestoragefile) - Update a file
555
-
556
- ### [ticketing](docs/sdks/ticketing/README.md)
557
-
558
- * [createTicketingCustomer](docs/sdks/ticketing/README.md#createticketingcustomer) - Create a customer
559
- * [createTicketingNote](docs/sdks/ticketing/README.md#createticketingnote) - Create a note
560
- * [createTicketingTicket](docs/sdks/ticketing/README.md#createticketingticket) - Create a ticket
561
- * [getTicketingCustomer](docs/sdks/ticketing/README.md#getticketingcustomer) - Retrieve a customer
562
- * [getTicketingNote](docs/sdks/ticketing/README.md#getticketingnote) - Retrieve a note
563
- * [getTicketingTicket](docs/sdks/ticketing/README.md#getticketingticket) - Retrieve a ticket
564
- * [listTicketingCustomers](docs/sdks/ticketing/README.md#listticketingcustomers) - List all customers
565
- * [listTicketingNotes](docs/sdks/ticketing/README.md#listticketingnotes) - List all notes
566
- * [listTicketingTickets](docs/sdks/ticketing/README.md#listticketingtickets) - List all tickets
567
- * [patchTicketingCustomer](docs/sdks/ticketing/README.md#patchticketingcustomer) - Update a customer
568
- * [patchTicketingNote](docs/sdks/ticketing/README.md#patchticketingnote) - Update a note
569
- * [patchTicketingTicket](docs/sdks/ticketing/README.md#patchticketingticket) - Update a ticket
570
- * [removeTicketingCustomer](docs/sdks/ticketing/README.md#removeticketingcustomer) - Remove a customer
571
- * [removeTicketingNote](docs/sdks/ticketing/README.md#removeticketingnote) - Remove a note
572
- * [removeTicketingTicket](docs/sdks/ticketing/README.md#removeticketingticket) - Remove a ticket
573
- * [updateTicketingCustomer](docs/sdks/ticketing/README.md#updateticketingcustomer) - Update a customer
574
- * [updateTicketingNote](docs/sdks/ticketing/README.md#updateticketingnote) - Update a note
575
- * [updateTicketingTicket](docs/sdks/ticketing/README.md#updateticketingticket) - Update a ticket
576
-
577
- ### [customer](docs/sdks/customer/README.md)
578
-
579
- * [createTicketingCustomer](docs/sdks/customer/README.md#createticketingcustomer) - Create a customer
580
- * [getTicketingCustomer](docs/sdks/customer/README.md#getticketingcustomer) - Retrieve a customer
581
- * [listTicketingCustomers](docs/sdks/customer/README.md#listticketingcustomers) - List all customers
582
- * [patchTicketingCustomer](docs/sdks/customer/README.md#patchticketingcustomer) - Update a customer
583
- * [removeTicketingCustomer](docs/sdks/customer/README.md#removeticketingcustomer) - Remove a customer
584
- * [updateTicketingCustomer](docs/sdks/customer/README.md#updateticketingcustomer) - Update a customer
585
-
586
- ### [note](docs/sdks/note/README.md)
587
-
588
- * [createTicketingNote](docs/sdks/note/README.md#createticketingnote) - Create a note
589
- * [getTicketingNote](docs/sdks/note/README.md#getticketingnote) - Retrieve a note
590
- * [listTicketingNotes](docs/sdks/note/README.md#listticketingnotes) - List all notes
591
- * [patchTicketingNote](docs/sdks/note/README.md#patchticketingnote) - Update a note
592
- * [removeTicketingNote](docs/sdks/note/README.md#removeticketingnote) - Remove a note
593
- * [updateTicketingNote](docs/sdks/note/README.md#updateticketingnote) - Update a note
594
-
595
- ### [ticket](docs/sdks/ticket/README.md)
596
-
597
- * [createTicketingTicket](docs/sdks/ticket/README.md#createticketingticket) - Create a ticket
598
- * [getTicketingTicket](docs/sdks/ticket/README.md#getticketingticket) - Retrieve a ticket
599
- * [listTicketingTickets](docs/sdks/ticket/README.md#listticketingtickets) - List all tickets
600
- * [patchTicketingTicket](docs/sdks/ticket/README.md#patchticketingticket) - Update a ticket
601
- * [removeTicketingTicket](docs/sdks/ticket/README.md#removeticketingticket) - Remove a ticket
602
- * [updateTicketingTicket](docs/sdks/ticket/README.md#updateticketingticket) - Update a ticket
603
-
604
- ### [uc](docs/sdks/uc/README.md)
605
-
606
- * [createUcContact](docs/sdks/uc/README.md#createuccontact) - Create a contact
607
- * [getUcContact](docs/sdks/uc/README.md#getuccontact) - Retrieve a contact
608
- * [listUcCalls](docs/sdks/uc/README.md#listuccalls) - List all calls
609
- * [listUcContacts](docs/sdks/uc/README.md#listuccontacts) - List all contacts
610
- * [patchUcContact](docs/sdks/uc/README.md#patchuccontact) - Update a contact
611
- * [removeUcContact](docs/sdks/uc/README.md#removeuccontact) - Remove a contact
612
- * [updateUcContact](docs/sdks/uc/README.md#updateuccontact) - Update a contact
613
-
614
- ### [call](docs/sdks/call/README.md)
615
-
616
- * [listUcCalls](docs/sdks/call/README.md#listuccalls) - List all calls
617
-
618
- ### [unified](docs/sdks/unified/README.md)
619
-
620
- * [createUnifiedConnection](docs/sdks/unified/README.md#createunifiedconnection) - Create connection
621
- * [createUnifiedWebhook](docs/sdks/unified/README.md#createunifiedwebhook) - Create webhook subscription
622
- * [getUnifiedApicall](docs/sdks/unified/README.md#getunifiedapicall) - Retrieve specific API Call by its ID
623
- * [getUnifiedConnection](docs/sdks/unified/README.md#getunifiedconnection) - Retrieve connection
624
- * [getUnifiedIntegrationAuth](docs/sdks/unified/README.md#getunifiedintegrationauth) - Create connection indirectly
625
- * [getUnifiedWebhook](docs/sdks/unified/README.md#getunifiedwebhook) - Retrieve webhook by its ID
626
- * [listUnifiedApicalls](docs/sdks/unified/README.md#listunifiedapicalls) - Returns API Calls
627
- * [listUnifiedConnections](docs/sdks/unified/README.md#listunifiedconnections) - List all connections
628
- * [listUnifiedIntegrationWorkspaces](docs/sdks/unified/README.md#listunifiedintegrationworkspaces) - Returns all activated integrations in a workspace
629
- * [listUnifiedIntegrations](docs/sdks/unified/README.md#listunifiedintegrations) - Returns all integrations
630
- * [listUnifiedIssues](docs/sdks/unified/README.md#listunifiedissues) - List support issues
631
- * [listUnifiedWebhooks](docs/sdks/unified/README.md#listunifiedwebhooks) - Returns all registered webhooks
632
- * [patchUnifiedConnection](docs/sdks/unified/README.md#patchunifiedconnection) - Update connection
633
- * [patchUnifiedWebhookTrigger](docs/sdks/unified/README.md#patchunifiedwebhooktrigger) - Trigger webhook
634
- * [removeUnifiedConnection](docs/sdks/unified/README.md#removeunifiedconnection) - Remove connection
635
- * [removeUnifiedWebhook](docs/sdks/unified/README.md#removeunifiedwebhook) - Remove webhook subscription
636
- * [updateUnifiedConnection](docs/sdks/unified/README.md#updateunifiedconnection) - Update connection
637
- * [updateUnifiedWebhookTrigger](docs/sdks/unified/README.md#updateunifiedwebhooktrigger) - Trigger webhook
638
-
639
- ### [apicall](docs/sdks/apicall/README.md)
640
-
641
- * [getUnifiedApicall](docs/sdks/apicall/README.md#getunifiedapicall) - Retrieve specific API Call by its ID
642
- * [listUnifiedApicalls](docs/sdks/apicall/README.md#listunifiedapicalls) - Returns API Calls
643
-
644
- ### [connection](docs/sdks/connection/README.md)
645
-
646
- * [createUnifiedConnection](docs/sdks/connection/README.md#createunifiedconnection) - Create connection
647
- * [getUnifiedConnection](docs/sdks/connection/README.md#getunifiedconnection) - Retrieve connection
648
- * [listUnifiedConnections](docs/sdks/connection/README.md#listunifiedconnections) - List all connections
649
- * [patchUnifiedConnection](docs/sdks/connection/README.md#patchunifiedconnection) - Update connection
650
- * [removeUnifiedConnection](docs/sdks/connection/README.md#removeunifiedconnection) - Remove connection
651
- * [updateUnifiedConnection](docs/sdks/connection/README.md#updateunifiedconnection) - Update connection
652
-
653
- ### [integration](docs/sdks/integration/README.md)
654
-
655
- * [getUnifiedIntegrationAuth](docs/sdks/integration/README.md#getunifiedintegrationauth) - Create connection indirectly
656
- * [listUnifiedIntegrationWorkspaces](docs/sdks/integration/README.md#listunifiedintegrationworkspaces) - Returns all activated integrations in a workspace
657
- * [listUnifiedIntegrations](docs/sdks/integration/README.md#listunifiedintegrations) - Returns all integrations
658
-
659
- ### [auth](docs/sdks/auth/README.md)
660
-
661
- * [getUnifiedIntegrationAuth](docs/sdks/auth/README.md#getunifiedintegrationauth) - Create connection indirectly
662
- * [getUnifiedIntegrationLogin](docs/sdks/auth/README.md#getunifiedintegrationlogin) - Sign in a user
663
-
664
- ### [login](docs/sdks/login/README.md)
665
-
666
- * [getUnifiedIntegrationLogin](docs/sdks/login/README.md#getunifiedintegrationlogin) - Sign in a user
667
-
668
- ### [issue](docs/sdks/issue/README.md)
669
-
670
- * [listUnifiedIssues](docs/sdks/issue/README.md#listunifiedissues) - List support issues
671
-
672
- ### [webhook](docs/sdks/webhook/README.md)
673
-
674
- * [createUnifiedWebhook](docs/sdks/webhook/README.md#createunifiedwebhook) - Create webhook subscription
675
- * [getUnifiedWebhook](docs/sdks/webhook/README.md#getunifiedwebhook) - Retrieve webhook by its ID
676
- * [listUnifiedWebhooks](docs/sdks/webhook/README.md#listunifiedwebhooks) - Returns all registered webhooks
677
- * [patchUnifiedWebhookTrigger](docs/sdks/webhook/README.md#patchunifiedwebhooktrigger) - Trigger webhook
678
- * [removeUnifiedWebhook](docs/sdks/webhook/README.md#removeunifiedwebhook) - Remove webhook subscription
679
- * [updateUnifiedWebhookTrigger](docs/sdks/webhook/README.md#updateunifiedwebhooktrigger) - Trigger webhook
680
- <!-- End Available Resources and Operations [operations] -->
681
-
682
-
683
-
684
- <!-- Start Error Handling [errors] -->
685
- ## Error Handling
686
-
687
- Handling errors in this SDK should largely match your expectations. All operations return a response object or throw an error. If Error objects are specified in your OpenAPI Spec, the SDK will throw the appropriate Error type.
688
-
689
- | Error Object | Status Code | Content Type |
690
- | --------------- | --------------- | --------------- |
691
- | errors.SDKError | 4xx-5xx | */* |
692
-
693
- Example
694
-
695
- ```typescript
696
- import { UnifiedTo } from "@unified-api/typescript-sdk";
697
- import { Status, TypeT } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
698
-
699
- async function run() {
700
- const sdk = new UnifiedTo({
701
- security: {
702
- jwt: "<YOUR_API_KEY_HERE>",
703
- },
704
- });
705
-
706
- let res;
707
- try {
708
- res = await sdk.accounting.createAccountingAccount({
709
- accountingAccount: {
710
- name: "<value>",
711
- raw: {
712
- key: "<value>",
713
- },
714
- },
715
- connectionId: "<value>",
716
- });
717
- } catch (err) {
718
- if (err instanceof errors.SDKError) {
719
- console.error(err); // handle exception
720
- throw err;
721
- }
722
- }
723
-
724
- if (res.statusCode == 200) {
725
- // handle response
726
- }
727
- }
728
-
729
- run();
730
-
731
- ```
732
- <!-- End Error Handling [errors] -->
733
-
734
-
735
-
736
50
  <!-- Start Server Selection [server] -->
737
51
  ## Server Selection
738
52
 
@@ -880,19 +194,59 @@ run();
880
194
  ```
881
195
  <!-- End Authentication [security] -->
882
196
 
883
- <!-- Placeholder for Future Speakeasy SDK Sections -->
197
+ <!-- No SDK Installation -->
198
+ <!-- No SDK Example Usage -->
199
+ <!-- No SDK Available Operations -->
200
+ <!-- Start Error Handling [errors] -->
201
+ ## Error Handling
202
+
203
+ Handling errors in this SDK should largely match your expectations. All operations return a response object or throw an error. If Error objects are specified in your OpenAPI Spec, the SDK will throw the appropriate Error type.
204
+
205
+ | Error Object | Status Code | Content Type |
206
+ | --------------- | --------------- | --------------- |
207
+ | errors.SDKError | 4xx-5xx | */* |
208
+
209
+ Example
210
+
211
+ ```typescript
212
+ import { UnifiedTo } from "@unified-api/typescript-sdk";
213
+ import { Status, TypeT } from "@unified-api/typescript-sdk/dist/sdk/models/shared";
214
+
215
+ async function run() {
216
+ const sdk = new UnifiedTo({
217
+ security: {
218
+ jwt: "<YOUR_API_KEY_HERE>",
219
+ },
220
+ });
884
221
 
885
- # Development
222
+ let res;
223
+ try {
224
+ res = await sdk.accounting.createAccountingAccount({
225
+ accountingAccount: {
226
+ name: "<value>",
227
+ raw: {
228
+ key: "<value>",
229
+ },
230
+ },
231
+ connectionId: "<value>",
232
+ });
233
+ } catch (err) {
234
+ if (err instanceof errors.SDKError) {
235
+ console.error(err); // handle exception
236
+ throw err;
237
+ }
238
+ }
239
+
240
+ if (res.statusCode == 200) {
241
+ // handle response
242
+ }
243
+ }
886
244
 
887
- ## Maturity
245
+ run();
888
246
 
889
- This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
890
- to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
891
- looking for the latest version.
247
+ ```
248
+ <!-- End Error Handling [errors] -->
892
249
 
893
- ## Contributions
250
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
894
251
 
895
- While we value open-source contributions to this SDK, this library is generated programmatically.
896
- Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
897
252
 
898
- ### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)