@coinbase-sample/prime-sdk-ts 0.1.0

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 (373) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +98 -0
  3. package/dist/activities/index.d.ts +33 -0
  4. package/dist/activities/index.js +73 -0
  5. package/dist/activities/service.d.ts +18 -0
  6. package/dist/activities/service.js +54 -0
  7. package/dist/activities/types.d.ts +47 -0
  8. package/dist/activities/types.js +2 -0
  9. package/dist/addressBooks/index.d.ts +29 -0
  10. package/dist/addressBooks/index.js +57 -0
  11. package/dist/addressBooks/service.d.ts +11 -0
  12. package/dist/addressBooks/service.js +38 -0
  13. package/dist/addressBooks/types.d.ts +29 -0
  14. package/dist/addressBooks/types.js +2 -0
  15. package/dist/allocations/index.d.ts +35 -0
  16. package/dist/allocations/index.js +83 -0
  17. package/dist/allocations/service.d.ts +14 -0
  18. package/dist/allocations/service.js +65 -0
  19. package/dist/allocations/types.d.ts +46 -0
  20. package/dist/allocations/types.js +2 -0
  21. package/dist/assets/index.d.ts +27 -0
  22. package/dist/assets/index.js +27 -0
  23. package/dist/assets/service.d.ts +10 -0
  24. package/dist/assets/service.js +27 -0
  25. package/dist/assets/types.d.ts +20 -0
  26. package/dist/assets/types.js +2 -0
  27. package/dist/balances/index.d.ts +31 -0
  28. package/dist/balances/index.js +49 -0
  29. package/dist/balances/types.d.ts +39 -0
  30. package/dist/balances/types.js +2 -0
  31. package/dist/client.d.ts +20 -0
  32. package/dist/client.js +31 -0
  33. package/dist/commission/index.d.ts +27 -0
  34. package/dist/commission/index.js +27 -0
  35. package/dist/commission/types.d.ts +20 -0
  36. package/dist/commission/types.js +2 -0
  37. package/dist/constants.d.ts +22 -0
  38. package/dist/constants.js +25 -0
  39. package/dist/credentials/index.d.ts +7 -0
  40. package/dist/credentials/index.js +81 -0
  41. package/dist/errors/index.d.ts +22 -0
  42. package/dist/errors/index.js +31 -0
  43. package/dist/index.d.ts +31 -0
  44. package/dist/index.js +50 -0
  45. package/dist/invoices/index.d.ts +27 -0
  46. package/dist/invoices/index.js +27 -0
  47. package/dist/invoices/service.d.ts +10 -0
  48. package/dist/invoices/service.js +27 -0
  49. package/dist/invoices/types.d.ts +20 -0
  50. package/dist/invoices/types.js +2 -0
  51. package/dist/model/Activity.d.ts +73 -0
  52. package/dist/model/Activity.js +21 -0
  53. package/dist/model/ActivityMetadataAccount.d.ts +23 -0
  54. package/dist/model/ActivityMetadataAccount.js +21 -0
  55. package/dist/model/ActivityMetadataConsensus.d.ts +29 -0
  56. package/dist/model/ActivityMetadataConsensus.js +21 -0
  57. package/dist/model/ActivityMetadataTransactions.d.ts +23 -0
  58. package/dist/model/ActivityMetadataTransactions.js +21 -0
  59. package/dist/model/AddressBookEntry.d.ts +69 -0
  60. package/dist/model/AddressBookEntry.js +21 -0
  61. package/dist/model/AggregatedFiatBalance.d.ts +23 -0
  62. package/dist/model/AggregatedFiatBalance.js +21 -0
  63. package/dist/model/Allocation.d.ts +78 -0
  64. package/dist/model/Allocation.js +21 -0
  65. package/dist/model/AllocationLeg.d.ts +33 -0
  66. package/dist/model/AllocationLeg.js +21 -0
  67. package/dist/model/AmountDue.d.ts +33 -0
  68. package/dist/model/AmountDue.js +21 -0
  69. package/dist/model/Asset.d.ts +41 -0
  70. package/dist/model/Asset.js +21 -0
  71. package/dist/model/AssetChange.d.ts +35 -0
  72. package/dist/model/AssetChange.js +21 -0
  73. package/dist/model/Balance.d.ts +69 -0
  74. package/dist/model/Balance.js +21 -0
  75. package/dist/model/BlockchainAddress.d.ts +23 -0
  76. package/dist/model/BlockchainAddress.js +21 -0
  77. package/dist/model/CancelOrderResponse.d.ts +25 -0
  78. package/dist/model/CancelOrderResponse.js +21 -0
  79. package/dist/model/Commission.d.ts +33 -0
  80. package/dist/model/Commission.js +21 -0
  81. package/dist/model/CreateAllocationRequest.d.ts +52 -0
  82. package/dist/model/CreateAllocationRequest.js +21 -0
  83. package/dist/model/CreateAllocationResponse.d.ts +23 -0
  84. package/dist/model/CreateAllocationResponse.js +21 -0
  85. package/dist/model/CreateAllocationResponseBody.d.ts +33 -0
  86. package/dist/model/CreateAllocationResponseBody.js +21 -0
  87. package/dist/model/CreateConversionRequest.d.ts +41 -0
  88. package/dist/model/CreateConversionRequest.js +21 -0
  89. package/dist/model/CreateConversionResponse.d.ts +49 -0
  90. package/dist/model/CreateConversionResponse.js +21 -0
  91. package/dist/model/CreateNetAllocationResponse.d.ts +23 -0
  92. package/dist/model/CreateNetAllocationResponse.js +21 -0
  93. package/dist/model/CreateNetAllocationResponseBody.d.ts +41 -0
  94. package/dist/model/CreateNetAllocationResponseBody.js +21 -0
  95. package/dist/model/CreateOrderRequest.d.ts +40 -0
  96. package/dist/model/CreateOrderRequest.js +21 -0
  97. package/dist/model/CreateOrderResponse.d.ts +25 -0
  98. package/dist/model/CreateOrderResponse.js +21 -0
  99. package/dist/model/CreatePortfolioAddressBookEntryRequest.d.ts +37 -0
  100. package/dist/model/CreatePortfolioAddressBookEntryRequest.js +21 -0
  101. package/dist/model/CreatePortfolioAddressBookEntryResponse.d.ts +25 -0
  102. package/dist/model/CreatePortfolioAddressBookEntryResponse.js +21 -0
  103. package/dist/model/CreateWalletRequest.d.ts +26 -0
  104. package/dist/model/CreateWalletRequest.js +21 -0
  105. package/dist/model/CreateWalletResponse.d.ts +26 -0
  106. package/dist/model/CreateWalletResponse.js +21 -0
  107. package/dist/model/CreateWalletTransferResponse.d.ts +61 -0
  108. package/dist/model/CreateWalletTransferResponse.js +21 -0
  109. package/dist/model/CreateWalletWithdrawalRequest.d.ts +39 -0
  110. package/dist/model/CreateWalletWithdrawalRequest.js +21 -0
  111. package/dist/model/CreateWalletWithdrawalResponse.d.ts +56 -0
  112. package/dist/model/CreateWalletWithdrawalResponse.js +21 -0
  113. package/dist/model/DefiBalance.d.ts +24 -0
  114. package/dist/model/DefiBalance.js +21 -0
  115. package/dist/model/DestinationAlloc.d.ts +41 -0
  116. package/dist/model/DestinationAlloc.js +21 -0
  117. package/dist/model/DisplayUser.d.ts +33 -0
  118. package/dist/model/DisplayUser.js +21 -0
  119. package/dist/model/EntityUser.d.ts +39 -0
  120. package/dist/model/EntityUser.js +21 -0
  121. package/dist/model/EstimatedNetworkFees.d.ts +29 -0
  122. package/dist/model/EstimatedNetworkFees.js +21 -0
  123. package/dist/model/Fill.d.ts +59 -0
  124. package/dist/model/Fill.js +21 -0
  125. package/dist/model/GetActivityResponse.d.ts +23 -0
  126. package/dist/model/GetActivityResponse.js +21 -0
  127. package/dist/model/GetAllocationResponse.d.ts +23 -0
  128. package/dist/model/GetAllocationResponse.js +21 -0
  129. package/dist/model/GetAllocationsByClientNettingIdResponse.d.ts +23 -0
  130. package/dist/model/GetAllocationsByClientNettingIdResponse.js +21 -0
  131. package/dist/model/GetEntityActivitiesResponse.d.ts +25 -0
  132. package/dist/model/GetEntityActivitiesResponse.js +21 -0
  133. package/dist/model/GetEntityAssetsResponse.d.ts +23 -0
  134. package/dist/model/GetEntityAssetsResponse.js +21 -0
  135. package/dist/model/GetEntityPaymentMethodDetailsResponse.d.ts +23 -0
  136. package/dist/model/GetEntityPaymentMethodDetailsResponse.js +21 -0
  137. package/dist/model/GetEntityPaymentMethodsResponse.d.ts +23 -0
  138. package/dist/model/GetEntityPaymentMethodsResponse.js +21 -0
  139. package/dist/model/GetEntityUsersResponse.d.ts +28 -0
  140. package/dist/model/GetEntityUsersResponse.js +21 -0
  141. package/dist/model/GetInvoicesResponse.d.ts +23 -0
  142. package/dist/model/GetInvoicesResponse.js +21 -0
  143. package/dist/model/GetOpenOrdersResponse.d.ts +25 -0
  144. package/dist/model/GetOpenOrdersResponse.js +21 -0
  145. package/dist/model/GetOrderFillsResponse.d.ts +25 -0
  146. package/dist/model/GetOrderFillsResponse.js +21 -0
  147. package/dist/model/GetOrderResponse.d.ts +23 -0
  148. package/dist/model/GetOrderResponse.js +21 -0
  149. package/dist/model/GetOrdersResponse.d.ts +25 -0
  150. package/dist/model/GetOrdersResponse.js +21 -0
  151. package/dist/model/GetPortfolioActivitiesResponse.d.ts +25 -0
  152. package/dist/model/GetPortfolioActivitiesResponse.js +21 -0
  153. package/dist/model/GetPortfolioActivityResponse.d.ts +23 -0
  154. package/dist/model/GetPortfolioActivityResponse.js +21 -0
  155. package/dist/model/GetPortfolioAddressBookResponse.d.ts +28 -0
  156. package/dist/model/GetPortfolioAddressBookResponse.js +21 -0
  157. package/dist/model/GetPortfolioAllocationsResponse.d.ts +28 -0
  158. package/dist/model/GetPortfolioAllocationsResponse.js +21 -0
  159. package/dist/model/GetPortfolioBalancesResponse.d.ts +31 -0
  160. package/dist/model/GetPortfolioBalancesResponse.js +21 -0
  161. package/dist/model/GetPortfolioCommissionResponse.d.ts +23 -0
  162. package/dist/model/GetPortfolioCommissionResponse.js +21 -0
  163. package/dist/model/GetPortfolioFillsResponse.d.ts +25 -0
  164. package/dist/model/GetPortfolioFillsResponse.js +21 -0
  165. package/dist/model/GetPortfolioProductsResponse.d.ts +25 -0
  166. package/dist/model/GetPortfolioProductsResponse.js +21 -0
  167. package/dist/model/GetPortfolioResponse.d.ts +23 -0
  168. package/dist/model/GetPortfolioResponse.js +21 -0
  169. package/dist/model/GetPortfolioTransactionsResponse.d.ts +25 -0
  170. package/dist/model/GetPortfolioTransactionsResponse.js +21 -0
  171. package/dist/model/GetPortfolioUsersResponse.d.ts +28 -0
  172. package/dist/model/GetPortfolioUsersResponse.js +21 -0
  173. package/dist/model/GetPortfoliosResponse.d.ts +26 -0
  174. package/dist/model/GetPortfoliosResponse.js +21 -0
  175. package/dist/model/GetPostTradeCreditResponse.d.ts +23 -0
  176. package/dist/model/GetPostTradeCreditResponse.js +21 -0
  177. package/dist/model/GetTransactionResponse.d.ts +23 -0
  178. package/dist/model/GetTransactionResponse.js +21 -0
  179. package/dist/model/GetWalletBalanceResponse.d.ts +23 -0
  180. package/dist/model/GetWalletBalanceResponse.js +21 -0
  181. package/dist/model/GetWalletDepositInstructionsResponse.d.ts +25 -0
  182. package/dist/model/GetWalletDepositInstructionsResponse.js +21 -0
  183. package/dist/model/GetWalletResponse.d.ts +23 -0
  184. package/dist/model/GetWalletResponse.js +21 -0
  185. package/dist/model/GetWalletTransactionsResponse.d.ts +25 -0
  186. package/dist/model/GetWalletTransactionsResponse.js +21 -0
  187. package/dist/model/GetWalletsResponse.d.ts +25 -0
  188. package/dist/model/GetWalletsResponse.js +21 -0
  189. package/dist/model/Invoice.d.ts +32 -0
  190. package/dist/model/Invoice.js +21 -0
  191. package/dist/model/InvoiceItem.d.ts +30 -0
  192. package/dist/model/InvoiceItem.js +21 -0
  193. package/dist/model/ListWeb3WalletBalancesResponse.d.ts +30 -0
  194. package/dist/model/ListWeb3WalletBalancesResponse.js +21 -0
  195. package/dist/model/MatchMetadata.d.ts +29 -0
  196. package/dist/model/MatchMetadata.js +21 -0
  197. package/dist/model/NFTCollection.d.ts +25 -0
  198. package/dist/model/NFTCollection.js +21 -0
  199. package/dist/model/NFTItem.d.ts +25 -0
  200. package/dist/model/NFTItem.js +21 -0
  201. package/dist/model/Order.d.ts +105 -0
  202. package/dist/model/Order.js +21 -0
  203. package/dist/model/OrderPreviewRequest.d.ts +36 -0
  204. package/dist/model/OrderPreviewRequest.js +21 -0
  205. package/dist/model/PaginatedResponse.d.ts +31 -0
  206. package/dist/model/PaginatedResponse.js +21 -0
  207. package/dist/model/PaymentMethodDestination.d.ts +22 -0
  208. package/dist/model/PaymentMethodDestination.js +21 -0
  209. package/dist/model/PaymentMethodDetails.d.ts +28 -0
  210. package/dist/model/PaymentMethodDetails.js +21 -0
  211. package/dist/model/PaymentMethodSummary.d.ts +28 -0
  212. package/dist/model/PaymentMethodSummary.js +21 -0
  213. package/dist/model/PortfolioUser.d.ts +43 -0
  214. package/dist/model/PortfolioUser.js +21 -0
  215. package/dist/model/PostOrderPreviewResponse.d.ts +83 -0
  216. package/dist/model/PostOrderPreviewResponse.js +21 -0
  217. package/dist/model/PostTradeCreditInformation.d.ts +63 -0
  218. package/dist/model/PostTradeCreditInformation.js +21 -0
  219. package/dist/model/Product.d.ts +58 -0
  220. package/dist/model/Product.js +21 -0
  221. package/dist/model/Transaction.d.ts +97 -0
  222. package/dist/model/Transaction.js +21 -0
  223. package/dist/model/TransactionMetadata.d.ts +23 -0
  224. package/dist/model/TransactionMetadata.js +21 -0
  225. package/dist/model/TransferLocation.d.ts +27 -0
  226. package/dist/model/TransferLocation.js +21 -0
  227. package/dist/model/UserAction.d.ts +31 -0
  228. package/dist/model/UserAction.js +21 -0
  229. package/dist/model/Wallet.d.ts +28 -0
  230. package/dist/model/Wallet.js +21 -0
  231. package/dist/model/WalletCryptoDepositInstructions.d.ts +43 -0
  232. package/dist/model/WalletCryptoDepositInstructions.js +21 -0
  233. package/dist/model/WalletFiatDepositInstructions.d.ts +28 -0
  234. package/dist/model/WalletFiatDepositInstructions.js +21 -0
  235. package/dist/model/Web3Asset.d.ts +38 -0
  236. package/dist/model/Web3Asset.js +21 -0
  237. package/dist/model/Web3Balance.d.ts +29 -0
  238. package/dist/model/Web3Balance.js +21 -0
  239. package/dist/model/assets.d.ts +13 -0
  240. package/dist/model/assets.js +2 -0
  241. package/dist/model/createATransferBetweenTwoWallets.d.ts +37 -0
  242. package/dist/model/createATransferBetweenTwoWallets.js +21 -0
  243. package/dist/model/enums/Action.d.ts +26 -0
  244. package/dist/model/enums/Action.js +30 -0
  245. package/dist/model/enums/ActivityCategory.d.ts +28 -0
  246. package/dist/model/enums/ActivityCategory.js +32 -0
  247. package/dist/model/enums/ActivityLevel.d.ts +24 -0
  248. package/dist/model/enums/ActivityLevel.js +28 -0
  249. package/dist/model/enums/ActivitySecondaryType.d.ts +28 -0
  250. package/dist/model/enums/ActivitySecondaryType.js +32 -0
  251. package/dist/model/enums/ActivityStatus.d.ts +28 -0
  252. package/dist/model/enums/ActivityStatus.js +32 -0
  253. package/dist/model/enums/ActivityType.d.ts +63 -0
  254. package/dist/model/enums/ActivityType.js +67 -0
  255. package/dist/model/enums/AddressBookType.d.ts +24 -0
  256. package/dist/model/enums/AddressBookType.js +28 -0
  257. package/dist/model/enums/AllocationSizeType.d.ts +25 -0
  258. package/dist/model/enums/AllocationSizeType.js +29 -0
  259. package/dist/model/enums/AllocationStatus.d.ts +26 -0
  260. package/dist/model/enums/AllocationStatus.js +30 -0
  261. package/dist/model/enums/AssetChangeType.d.ts +27 -0
  262. package/dist/model/enums/AssetChangeType.js +31 -0
  263. package/dist/model/enums/DestinationType.d.ts +25 -0
  264. package/dist/model/enums/DestinationType.js +29 -0
  265. package/dist/model/enums/HierarchyType.d.ts +24 -0
  266. package/dist/model/enums/HierarchyType.js +28 -0
  267. package/dist/model/enums/InvoiceState.d.ts +26 -0
  268. package/dist/model/enums/InvoiceState.js +30 -0
  269. package/dist/model/enums/InvoiceType.d.ts +27 -0
  270. package/dist/model/enums/InvoiceType.js +31 -0
  271. package/dist/model/enums/OrderSide.d.ts +27 -0
  272. package/dist/model/enums/OrderSide.js +31 -0
  273. package/dist/model/enums/OrderStatus.d.ts +31 -0
  274. package/dist/model/enums/OrderStatus.js +35 -0
  275. package/dist/model/enums/OrderType.d.ts +31 -0
  276. package/dist/model/enums/OrderType.js +35 -0
  277. package/dist/model/enums/PaymentMethodType.d.ts +28 -0
  278. package/dist/model/enums/PaymentMethodType.js +32 -0
  279. package/dist/model/enums/PortfolioBalanceType.d.ts +25 -0
  280. package/dist/model/enums/PortfolioBalanceType.js +29 -0
  281. package/dist/model/enums/ProductPermissions.d.ts +25 -0
  282. package/dist/model/enums/ProductPermissions.js +29 -0
  283. package/dist/model/enums/SortDirection.d.ts +23 -0
  284. package/dist/model/enums/SortDirection.js +27 -0
  285. package/dist/model/enums/TimeInForceType.d.ts +29 -0
  286. package/dist/model/enums/TimeInForceType.js +33 -0
  287. package/dist/model/enums/TransactionStatus.d.ts +46 -0
  288. package/dist/model/enums/TransactionStatus.js +50 -0
  289. package/dist/model/enums/TransactionType.d.ts +57 -0
  290. package/dist/model/enums/TransactionType.js +61 -0
  291. package/dist/model/enums/TransferLocationType.d.ts +28 -0
  292. package/dist/model/enums/TransferLocationType.js +32 -0
  293. package/dist/model/enums/UserRole.d.ts +34 -0
  294. package/dist/model/enums/UserRole.js +38 -0
  295. package/dist/model/enums/VisibilityStatus.d.ts +25 -0
  296. package/dist/model/enums/VisibilityStatus.js +29 -0
  297. package/dist/model/enums/WalletDepositInstructionType.d.ts +29 -0
  298. package/dist/model/enums/WalletDepositInstructionType.js +33 -0
  299. package/dist/model/enums/WalletType.d.ts +30 -0
  300. package/dist/model/enums/WalletType.js +34 -0
  301. package/dist/model/portfolio.d.ts +41 -0
  302. package/dist/model/portfolio.js +21 -0
  303. package/dist/model/services/activitityService.d.ts +33 -0
  304. package/dist/model/services/activitityService.js +2 -0
  305. package/dist/model/services/addressBookService.d.ts +14 -0
  306. package/dist/model/services/addressBookService.js +2 -0
  307. package/dist/model/services/allocationService.d.ts +24 -0
  308. package/dist/model/services/allocationService.js +2 -0
  309. package/dist/model/services/assetService.d.ts +5 -0
  310. package/dist/model/services/assetService.js +2 -0
  311. package/dist/model/services/balanceService.d.ts +24 -0
  312. package/dist/model/services/balanceService.js +2 -0
  313. package/dist/model/services/commissionService.d.ts +5 -0
  314. package/dist/model/services/commissionService.js +2 -0
  315. package/dist/model/services/invoiceService.d.ts +5 -0
  316. package/dist/model/services/invoiceService.js +2 -0
  317. package/dist/model/services/orderService.d.ts +62 -0
  318. package/dist/model/services/orderService.js +2 -0
  319. package/dist/model/services/pagination.d.ts +9 -0
  320. package/dist/model/services/pagination.js +2 -0
  321. package/dist/model/services/paymentMethodsService.d.ts +10 -0
  322. package/dist/model/services/paymentMethodsService.js +2 -0
  323. package/dist/model/services/portfolioService.d.ts +15 -0
  324. package/dist/model/services/portfolioService.js +2 -0
  325. package/dist/model/services/productService.d.ts +6 -0
  326. package/dist/model/services/productService.js +2 -0
  327. package/dist/model/services/shared.d.ts +6 -0
  328. package/dist/model/services/shared.js +2 -0
  329. package/dist/model/services/transactionService.d.ts +47 -0
  330. package/dist/model/services/transactionService.js +2 -0
  331. package/dist/model/services/usersService.d.ts +9 -0
  332. package/dist/model/services/usersService.js +2 -0
  333. package/dist/model/services/walletService.d.ts +27 -0
  334. package/dist/model/services/walletService.js +2 -0
  335. package/dist/orders/index.d.ts +41 -0
  336. package/dist/orders/index.js +119 -0
  337. package/dist/orders/types.d.ts +77 -0
  338. package/dist/orders/types.js +2 -0
  339. package/dist/paymentMethods/index.d.ts +29 -0
  340. package/dist/paymentMethods/index.js +36 -0
  341. package/dist/paymentMethods/service.d.ts +11 -0
  342. package/dist/paymentMethods/service.js +36 -0
  343. package/dist/paymentMethods/types.d.ts +25 -0
  344. package/dist/paymentMethods/types.js +2 -0
  345. package/dist/portfolio/service.d.ts +12 -0
  346. package/dist/portfolio/service.js +42 -0
  347. package/dist/portfolios/index.d.ts +31 -0
  348. package/dist/portfolios/index.js +45 -0
  349. package/dist/portfolios/types.d.ts +30 -0
  350. package/dist/portfolios/types.js +2 -0
  351. package/dist/products/index.d.ts +27 -0
  352. package/dist/products/index.js +27 -0
  353. package/dist/products/types.d.ts +21 -0
  354. package/dist/products/types.js +2 -0
  355. package/dist/shared/pagination.d.ts +24 -0
  356. package/dist/shared/pagination.js +2 -0
  357. package/dist/shared/toCamelCase.d.ts +1 -0
  358. package/dist/shared/toCamelCase.js +23 -0
  359. package/dist/transactions/index.d.ts +37 -0
  360. package/dist/transactions/index.js +101 -0
  361. package/dist/transactions/types.d.ts +62 -0
  362. package/dist/transactions/types.js +2 -0
  363. package/dist/users/index.d.ts +29 -0
  364. package/dist/users/index.js +36 -0
  365. package/dist/users/service.d.ts +11 -0
  366. package/dist/users/service.js +36 -0
  367. package/dist/users/types.d.ts +24 -0
  368. package/dist/users/types.js +2 -0
  369. package/dist/wallets/index.d.ts +33 -0
  370. package/dist/wallets/index.js +73 -0
  371. package/dist/wallets/types.d.ts +42 -0
  372. package/dist/wallets/types.js +2 -0
  373. package/package.json +38 -0
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum ActivityLevel {
21
+ All = "ACTIVITY_LEVEL_ALL",
22
+ Portfolio = "ACTIVITY_LEVEL_PORTFOLIO",
23
+ Entity = "ACTIVITY_LEVEL_ENTITY"
24
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.ActivityLevel = void 0;
23
+ var ActivityLevel;
24
+ (function (ActivityLevel) {
25
+ ActivityLevel["All"] = "ACTIVITY_LEVEL_ALL";
26
+ ActivityLevel["Portfolio"] = "ACTIVITY_LEVEL_PORTFOLIO";
27
+ ActivityLevel["Entity"] = "ACTIVITY_LEVEL_ENTITY";
28
+ })(ActivityLevel || (exports.ActivityLevel = ActivityLevel = {}));
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum ActivitySecondaryType {
21
+ NoSecondaryType = "NO_SECONDARY_TYPE",
22
+ ActivitySecondaryTypeBuy = "ACTIVITY_SECONDARY_TYPE_BUY",
23
+ ActivitySecondaryTypeSell = "ACTIVITY_SECONDARY_TYPE_SELL",
24
+ ActivitySecondaryTypeInternalTransfer = "ACTIVITY_SECONDARY_TYPE_INTERNAL_TRANSFER",
25
+ ActivitySecondaryTypeSweepTransferType = "ACTIVITY_SECONDARY_TYPE_SWEEP_TRANSFER_TYPE",
26
+ ActivitySecondaryTypeWeb3Signer = "ACTIVITY_SECONDARY_TYPE_WEB3_SIGNER",
27
+ ActivitySecondaryTypeWeb3Wallet = "ACTIVITY_SECONDARY_TYPE_WEB3_WALLET"
28
+ }
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.ActivitySecondaryType = void 0;
23
+ var ActivitySecondaryType;
24
+ (function (ActivitySecondaryType) {
25
+ ActivitySecondaryType["NoSecondaryType"] = "NO_SECONDARY_TYPE";
26
+ ActivitySecondaryType["ActivitySecondaryTypeBuy"] = "ACTIVITY_SECONDARY_TYPE_BUY";
27
+ ActivitySecondaryType["ActivitySecondaryTypeSell"] = "ACTIVITY_SECONDARY_TYPE_SELL";
28
+ ActivitySecondaryType["ActivitySecondaryTypeInternalTransfer"] = "ACTIVITY_SECONDARY_TYPE_INTERNAL_TRANSFER";
29
+ ActivitySecondaryType["ActivitySecondaryTypeSweepTransferType"] = "ACTIVITY_SECONDARY_TYPE_SWEEP_TRANSFER_TYPE";
30
+ ActivitySecondaryType["ActivitySecondaryTypeWeb3Signer"] = "ACTIVITY_SECONDARY_TYPE_WEB3_SIGNER";
31
+ ActivitySecondaryType["ActivitySecondaryTypeWeb3Wallet"] = "ACTIVITY_SECONDARY_TYPE_WEB3_WALLET";
32
+ })(ActivitySecondaryType || (exports.ActivitySecondaryType = ActivitySecondaryType = {}));
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum ActivityStatus {
21
+ OtherActivityStatus = "OTHER_ACTIVITY_STATUS",
22
+ ActivityStatusCancelled = "ACTIVITY_STATUS_CANCELLED",
23
+ ActivityStatusProcessing = "ACTIVITY_STATUS_PROCESSING",
24
+ ActivityStatusCompleted = "ACTIVITY_STATUS_COMPLETED",
25
+ ActivityStatusExpired = "ACTIVITY_STATUS_EXPIRED",
26
+ ActivityStatusRejected = "ACTIVITY_STATUS_REJECTED",
27
+ ActivityStatusFailed = "ACTIVITY_STATUS_FAILED"
28
+ }
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.ActivityStatus = void 0;
23
+ var ActivityStatus;
24
+ (function (ActivityStatus) {
25
+ ActivityStatus["OtherActivityStatus"] = "OTHER_ACTIVITY_STATUS";
26
+ ActivityStatus["ActivityStatusCancelled"] = "ACTIVITY_STATUS_CANCELLED";
27
+ ActivityStatus["ActivityStatusProcessing"] = "ACTIVITY_STATUS_PROCESSING";
28
+ ActivityStatus["ActivityStatusCompleted"] = "ACTIVITY_STATUS_COMPLETED";
29
+ ActivityStatus["ActivityStatusExpired"] = "ACTIVITY_STATUS_EXPIRED";
30
+ ActivityStatus["ActivityStatusRejected"] = "ACTIVITY_STATUS_REJECTED";
31
+ ActivityStatus["ActivityStatusFailed"] = "ACTIVITY_STATUS_FAILED";
32
+ })(ActivityStatus || (exports.ActivityStatus = ActivityStatus = {}));
@@ -0,0 +1,63 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum ActivityType {
21
+ OtherActivityType = "OTHER_ACTIVITY_TYPE",
22
+ ActivityTypeLimitOrder = "ACTIVITY_TYPE_LIMIT_ORDER",
23
+ ActivityTypeMarketOrder = "ACTIVITY_TYPE_MARKET_ORDER",
24
+ ActivityTypeTwapOrder = "ACTIVITY_TYPE_TWAP_ORDER",
25
+ ActivityTypeBlockTrade = "ACTIVITY_TYPE_BLOCK_TRADE",
26
+ ActivityTypeVwapOrder = "ACTIVITY_TYPE_VWAP_ORDER",
27
+ ActivityTypeStopLimitOrder = "ACTIVITY_TYPE_STOP_LIMIT_ORDER",
28
+ ActivityTypeDeposit = "ACTIVITY_TYPE_DEPOSIT",
29
+ ActivityTypeWithdrawal = "ACTIVITY_TYPE_WITHDRAWAL",
30
+ ActivityTypeInternalTransfer = "ACTIVITY_TYPE_INTERNAL_TRANSFER",
31
+ ActivityTypeCreateWallet = "ACTIVITY_TYPE_CREATE_WALLET",
32
+ ActivityTypeRemoveWallet = "ACTIVITY_TYPE_REMOVE_WALLET",
33
+ ActivityTypeUpdateWallet = "ACTIVITY_TYPE_UPDATE_WALLET",
34
+ ActivityTypeCastVote = "ACTIVITY_TYPE_CAST_VOTE",
35
+ ActivityTypeEnableVoting = "ACTIVITY_TYPE_ENABLE_VOTING",
36
+ ActivityTypeStake = "ACTIVITY_TYPE_STAKE",
37
+ ActivityTypeUnstake = "ACTIVITY_TYPE_UNSTAKE",
38
+ ActivityTypeChangeValidator = "ACTIVITY_TYPE_CHANGE_VALIDATOR",
39
+ ActivityTypeRestake = "ACTIVITY_TYPE_RESTAKE",
40
+ ActivityTypeAddressBook = "ACTIVITY_TYPE_ADDRESS_BOOK",
41
+ ActivityTypeTeamMembers = "ACTIVITY_TYPE_TEAM_MEMBERS",
42
+ ActivityTypeBilling = "ACTIVITY_TYPE_BILLING",
43
+ ActivityTypeSecurity = "ACTIVITY_TYPE_SECURITY",
44
+ ActivityTypeApi = "ACTIVITY_TYPE_API",
45
+ ActivityTypeSettings = "ACTIVITY_TYPE_SETTINGS",
46
+ ActivityTypeSmartContract = "ACTIVITY_TYPE_SMART_CONTRACT",
47
+ ActivityTypeAllocationIn = "ACTIVITY_TYPE_ALLOCATION_IN",
48
+ ActivityTypeAllocationOut = "ACTIVITY_TYPE_ALLOCATION_OUT",
49
+ ActivityTypeAllocationInReversal = "ACTIVITY_TYPE_ALLOCATION_IN_REVERSAL",
50
+ ActivityTypeAllocationOutReversal = "ACTIVITY_TYPE_ALLOCATION_OUT_REVERSAL",
51
+ ActivityTypeConversion = "ACTIVITY_TYPE_CONVERSION",
52
+ ActivityTypePrincipalOut = "ACTIVITY_TYPE_PRINCIPAL_OUT",
53
+ ActivityTypePrincipalIn = "ACTIVITY_TYPE_PRINCIPAL_IN",
54
+ ActivityTypeCollateralOut = "ACTIVITY_TYPE_COLLATERAL_OUT",
55
+ ActivityTypeCollateralIn = "ACTIVITY_TYPE_COLLATERAL_IN",
56
+ ActivityTypeInterestOut = "ACTIVITY_TYPE_INTEREST_OUT",
57
+ ActivityTypeInterestIn = "ACTIVITY_TYPE_INTEREST_IN",
58
+ ActivityTypeWeb3Message = "ACTIVITY_TYPE_WEB3_MESSAGE",
59
+ ActivityTypeWeb3Transaction = "ACTIVITY_TYPE_WEB3_TRANSACTION",
60
+ ActivityTypeWeb3DeviceRecovery = "ACTIVITY_TYPE_WEB3_DEVICE_RECOVERY",
61
+ ActivityTypeWeb3RecreateBackup = "ACTIVITY_TYPE_WEB3_RECREATE_BACKUP",
62
+ ActivityTypeWeb3Onboarding = "ACTIVITY_TYPE_WEB3_ONBOARDING"
63
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.ActivityType = void 0;
23
+ var ActivityType;
24
+ (function (ActivityType) {
25
+ ActivityType["OtherActivityType"] = "OTHER_ACTIVITY_TYPE";
26
+ ActivityType["ActivityTypeLimitOrder"] = "ACTIVITY_TYPE_LIMIT_ORDER";
27
+ ActivityType["ActivityTypeMarketOrder"] = "ACTIVITY_TYPE_MARKET_ORDER";
28
+ ActivityType["ActivityTypeTwapOrder"] = "ACTIVITY_TYPE_TWAP_ORDER";
29
+ ActivityType["ActivityTypeBlockTrade"] = "ACTIVITY_TYPE_BLOCK_TRADE";
30
+ ActivityType["ActivityTypeVwapOrder"] = "ACTIVITY_TYPE_VWAP_ORDER";
31
+ ActivityType["ActivityTypeStopLimitOrder"] = "ACTIVITY_TYPE_STOP_LIMIT_ORDER";
32
+ ActivityType["ActivityTypeDeposit"] = "ACTIVITY_TYPE_DEPOSIT";
33
+ ActivityType["ActivityTypeWithdrawal"] = "ACTIVITY_TYPE_WITHDRAWAL";
34
+ ActivityType["ActivityTypeInternalTransfer"] = "ACTIVITY_TYPE_INTERNAL_TRANSFER";
35
+ ActivityType["ActivityTypeCreateWallet"] = "ACTIVITY_TYPE_CREATE_WALLET";
36
+ ActivityType["ActivityTypeRemoveWallet"] = "ACTIVITY_TYPE_REMOVE_WALLET";
37
+ ActivityType["ActivityTypeUpdateWallet"] = "ACTIVITY_TYPE_UPDATE_WALLET";
38
+ ActivityType["ActivityTypeCastVote"] = "ACTIVITY_TYPE_CAST_VOTE";
39
+ ActivityType["ActivityTypeEnableVoting"] = "ACTIVITY_TYPE_ENABLE_VOTING";
40
+ ActivityType["ActivityTypeStake"] = "ACTIVITY_TYPE_STAKE";
41
+ ActivityType["ActivityTypeUnstake"] = "ACTIVITY_TYPE_UNSTAKE";
42
+ ActivityType["ActivityTypeChangeValidator"] = "ACTIVITY_TYPE_CHANGE_VALIDATOR";
43
+ ActivityType["ActivityTypeRestake"] = "ACTIVITY_TYPE_RESTAKE";
44
+ ActivityType["ActivityTypeAddressBook"] = "ACTIVITY_TYPE_ADDRESS_BOOK";
45
+ ActivityType["ActivityTypeTeamMembers"] = "ACTIVITY_TYPE_TEAM_MEMBERS";
46
+ ActivityType["ActivityTypeBilling"] = "ACTIVITY_TYPE_BILLING";
47
+ ActivityType["ActivityTypeSecurity"] = "ACTIVITY_TYPE_SECURITY";
48
+ ActivityType["ActivityTypeApi"] = "ACTIVITY_TYPE_API";
49
+ ActivityType["ActivityTypeSettings"] = "ACTIVITY_TYPE_SETTINGS";
50
+ ActivityType["ActivityTypeSmartContract"] = "ACTIVITY_TYPE_SMART_CONTRACT";
51
+ ActivityType["ActivityTypeAllocationIn"] = "ACTIVITY_TYPE_ALLOCATION_IN";
52
+ ActivityType["ActivityTypeAllocationOut"] = "ACTIVITY_TYPE_ALLOCATION_OUT";
53
+ ActivityType["ActivityTypeAllocationInReversal"] = "ACTIVITY_TYPE_ALLOCATION_IN_REVERSAL";
54
+ ActivityType["ActivityTypeAllocationOutReversal"] = "ACTIVITY_TYPE_ALLOCATION_OUT_REVERSAL";
55
+ ActivityType["ActivityTypeConversion"] = "ACTIVITY_TYPE_CONVERSION";
56
+ ActivityType["ActivityTypePrincipalOut"] = "ACTIVITY_TYPE_PRINCIPAL_OUT";
57
+ ActivityType["ActivityTypePrincipalIn"] = "ACTIVITY_TYPE_PRINCIPAL_IN";
58
+ ActivityType["ActivityTypeCollateralOut"] = "ACTIVITY_TYPE_COLLATERAL_OUT";
59
+ ActivityType["ActivityTypeCollateralIn"] = "ACTIVITY_TYPE_COLLATERAL_IN";
60
+ ActivityType["ActivityTypeInterestOut"] = "ACTIVITY_TYPE_INTEREST_OUT";
61
+ ActivityType["ActivityTypeInterestIn"] = "ACTIVITY_TYPE_INTEREST_IN";
62
+ ActivityType["ActivityTypeWeb3Message"] = "ACTIVITY_TYPE_WEB3_MESSAGE";
63
+ ActivityType["ActivityTypeWeb3Transaction"] = "ACTIVITY_TYPE_WEB3_TRANSACTION";
64
+ ActivityType["ActivityTypeWeb3DeviceRecovery"] = "ACTIVITY_TYPE_WEB3_DEVICE_RECOVERY";
65
+ ActivityType["ActivityTypeWeb3RecreateBackup"] = "ACTIVITY_TYPE_WEB3_RECREATE_BACKUP";
66
+ ActivityType["ActivityTypeWeb3Onboarding"] = "ACTIVITY_TYPE_WEB3_ONBOARDING";
67
+ })(ActivityType || (exports.ActivityType = ActivityType = {}));
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum AddressBookType {
21
+ Unspecified = "ADDRESS_BOOK_TYPE_UNSPECIFIED",
22
+ Address = "ADDRESS_BOOK_TYPE_ADDRESS",
23
+ CounterpartyId = "ADDRESS_BOOK_TYPE_COUNTERPARTY_ID"
24
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.AddressBookType = void 0;
23
+ var AddressBookType;
24
+ (function (AddressBookType) {
25
+ AddressBookType["Unspecified"] = "ADDRESS_BOOK_TYPE_UNSPECIFIED";
26
+ AddressBookType["Address"] = "ADDRESS_BOOK_TYPE_ADDRESS";
27
+ AddressBookType["CounterpartyId"] = "ADDRESS_BOOK_TYPE_COUNTERPARTY_ID";
28
+ })(AddressBookType || (exports.AddressBookType = AddressBookType = {}));
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum AllocationSizeType {
21
+ AllocationSizeTypeUnknown = "ALLOCATION_SIZE_TYPE_UNKNOWN",
22
+ Base = "BASE",
23
+ Quote = "QUOTE",
24
+ Percent = "PERCENT"
25
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.AllocationSizeType = void 0;
23
+ var AllocationSizeType;
24
+ (function (AllocationSizeType) {
25
+ AllocationSizeType["AllocationSizeTypeUnknown"] = "ALLOCATION_SIZE_TYPE_UNKNOWN";
26
+ AllocationSizeType["Base"] = "BASE";
27
+ AllocationSizeType["Quote"] = "QUOTE";
28
+ AllocationSizeType["Percent"] = "PERCENT";
29
+ })(AllocationSizeType || (exports.AllocationSizeType = AllocationSizeType = {}));
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum AllocationStatus {
21
+ Unspecified = "ALLOCATION_STATUS_UNSPECIFIED",
22
+ AllocationPending = "ALLOCATION_STATUS_ALLOCATION_PENDING",
23
+ AllocationAccepted = "ALLOCATION_STATUS_ALLOCATION_ACCEPTED",
24
+ AllocationAllocated = "ALLOCATION_STATUS_ALLOCATION_ALLOCATED",
25
+ AllocationRejected = "ALLOCATION_STATUS_ALLOCATION_REJECTED"
26
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.AllocationStatus = void 0;
23
+ var AllocationStatus;
24
+ (function (AllocationStatus) {
25
+ AllocationStatus["Unspecified"] = "ALLOCATION_STATUS_UNSPECIFIED";
26
+ AllocationStatus["AllocationPending"] = "ALLOCATION_STATUS_ALLOCATION_PENDING";
27
+ AllocationStatus["AllocationAccepted"] = "ALLOCATION_STATUS_ALLOCATION_ACCEPTED";
28
+ AllocationStatus["AllocationAllocated"] = "ALLOCATION_STATUS_ALLOCATION_ALLOCATED";
29
+ AllocationStatus["AllocationRejected"] = "ALLOCATION_STATUS_ALLOCATION_REJECTED";
30
+ })(AllocationStatus || (exports.AllocationStatus = AllocationStatus = {}));
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum AssetChangeType {
21
+ AssetChangeTypeUnknown = "ASSET_CHANGE_TYPE_UNKNOWN",
22
+ BalanceTransfer = "BALANCE_TRANSFER",
23
+ BalanceApproval = "BALANCE_APPROVAL",
24
+ ItemTransfer = "ITEM_TRANSFER",
25
+ ItemApproval = "ITEM_APPROVAL",
26
+ ItemApprovalAll = "ITEM_APPROVAL_ALL"
27
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.AssetChangeType = void 0;
23
+ var AssetChangeType;
24
+ (function (AssetChangeType) {
25
+ AssetChangeType["AssetChangeTypeUnknown"] = "ASSET_CHANGE_TYPE_UNKNOWN";
26
+ AssetChangeType["BalanceTransfer"] = "BALANCE_TRANSFER";
27
+ AssetChangeType["BalanceApproval"] = "BALANCE_APPROVAL";
28
+ AssetChangeType["ItemTransfer"] = "ITEM_TRANSFER";
29
+ AssetChangeType["ItemApproval"] = "ITEM_APPROVAL";
30
+ AssetChangeType["ItemApprovalAll"] = "ITEM_APPROVAL_ALL";
31
+ })(AssetChangeType || (exports.AssetChangeType = AssetChangeType = {}));
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum DestinationType {
21
+ UnknownDestination = "UNKNOWN_DESTINATION",
22
+ DestinationPaymentMethod = "DESTINATION_PAYMENT_METHOD",
23
+ DestinationBlockchain = "DESTINATION_BLOCKCHAIN",
24
+ DestinationWallet = "DESTINATION_WALLET"
25
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.DestinationType = void 0;
23
+ var DestinationType;
24
+ (function (DestinationType) {
25
+ DestinationType["UnknownDestination"] = "UNKNOWN_DESTINATION";
26
+ DestinationType["DestinationPaymentMethod"] = "DESTINATION_PAYMENT_METHOD";
27
+ DestinationType["DestinationBlockchain"] = "DESTINATION_BLOCKCHAIN";
28
+ DestinationType["DestinationWallet"] = "DESTINATION_WALLET";
29
+ })(DestinationType || (exports.DestinationType = DestinationType = {}));
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Copyright 2024-present Coinbase Global, Inc.
3
+ *
4
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ * Do not edit the class manually.
19
+ */
20
+ export declare enum HierarchyType {
21
+ Unspecified = "HIERARCHY_TYPE_UNSPECIFIED",
22
+ Portfolio = "HIERARCHY_TYPE_PORTFOLIO",
23
+ Entity = "HIERARCHY_TYPE_ENTITY"
24
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2024-present Coinbase Global, Inc.
4
+ *
5
+ * This file is generated by Openapi Generator https://github.com/openapitools/openapi-generato
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ *
19
+ * Do not edit the class manually.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.HierarchyType = void 0;
23
+ var HierarchyType;
24
+ (function (HierarchyType) {
25
+ HierarchyType["Unspecified"] = "HIERARCHY_TYPE_UNSPECIFIED";
26
+ HierarchyType["Portfolio"] = "HIERARCHY_TYPE_PORTFOLIO";
27
+ HierarchyType["Entity"] = "HIERARCHY_TYPE_ENTITY";
28
+ })(HierarchyType || (exports.HierarchyType = HierarchyType = {}));