@coinbase/cdp-sdk 1.29.0 → 1.30.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 (206) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/_cjs/accounts/evm/networkCapabilities.js +101 -0
  3. package/_cjs/accounts/evm/networkCapabilities.js.map +1 -1
  4. package/_cjs/accounts/evm/toEvmServerAccount.js +11 -0
  5. package/_cjs/accounts/evm/toEvmServerAccount.js.map +1 -1
  6. package/_cjs/accounts/evm/toEvmSmartAccount.js +11 -0
  7. package/_cjs/accounts/evm/toEvmSmartAccount.js.map +1 -1
  8. package/_cjs/accounts/evm/toNetworkScopedEvmServerAccount.js +10 -0
  9. package/_cjs/accounts/evm/toNetworkScopedEvmServerAccount.js.map +1 -1
  10. package/_cjs/accounts/evm/toNetworkScopedEvmSmartAccount.js +10 -0
  11. package/_cjs/accounts/evm/toNetworkScopedEvmSmartAccount.js.map +1 -1
  12. package/_cjs/accounts/solana/toSolanaAccount.js +11 -1
  13. package/_cjs/accounts/solana/toSolanaAccount.js.map +1 -1
  14. package/_cjs/actions/evm/getUserOperation.js +1 -0
  15. package/_cjs/actions/evm/getUserOperation.js.map +1 -1
  16. package/_cjs/actions/evm/spend-permissions/account.use.js +33 -0
  17. package/_cjs/actions/evm/spend-permissions/account.use.js.map +1 -0
  18. package/_cjs/actions/evm/spend-permissions/smartAccount.use.js +35 -0
  19. package/_cjs/actions/evm/spend-permissions/smartAccount.use.js.map +1 -0
  20. package/_cjs/actions/evm/spend-permissions/types.js +3 -0
  21. package/_cjs/actions/evm/spend-permissions/types.js.map +1 -0
  22. package/_cjs/actions/solana/sendTransaction.js +1 -0
  23. package/_cjs/actions/solana/sendTransaction.js.map +1 -1
  24. package/_cjs/actions/solana/signTransaction.js +1 -0
  25. package/_cjs/actions/solana/signTransaction.js.map +1 -1
  26. package/_cjs/auth/hooks/axios/withAuth.js +3 -0
  27. package/_cjs/auth/hooks/axios/withAuth.js.map +1 -1
  28. package/_cjs/auth/utils/http.js +2 -1
  29. package/_cjs/auth/utils/http.js.map +1 -1
  30. package/_cjs/client/evm/evm.js +51 -1
  31. package/_cjs/client/evm/evm.js.map +1 -1
  32. package/_cjs/client/solana/solana.js.map +1 -1
  33. package/_cjs/index.js +5 -1
  34. package/_cjs/index.js.map +1 -1
  35. package/_cjs/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js +41 -3
  36. package/_cjs/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js.map +1 -1
  37. package/_cjs/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js +14 -1
  38. package/_cjs/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js.map +1 -1
  39. package/_cjs/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.js +72 -1
  40. package/_cjs/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.js.map +1 -1
  41. package/_cjs/openapi-client/generated/index.msw.js +2 -0
  42. package/_cjs/openapi-client/generated/index.msw.js.map +1 -1
  43. package/_cjs/openapi-client/generated/onramp/onramp.js +30 -0
  44. package/_cjs/openapi-client/generated/onramp/onramp.js.map +1 -0
  45. package/_cjs/openapi-client/generated/onramp/onramp.msw.js +98 -0
  46. package/_cjs/openapi-client/generated/onramp/onramp.msw.js.map +1 -0
  47. package/_cjs/openapi-client/generated/x402-facilitator/x402-facilitator.js +15 -0
  48. package/_cjs/openapi-client/generated/x402-facilitator/x402-facilitator.js.map +1 -0
  49. package/_cjs/openapi-client/generated/x402-facilitator/x402-facilitator.msw.js +69 -0
  50. package/_cjs/openapi-client/generated/x402-facilitator/x402-facilitator.msw.js.map +1 -0
  51. package/_cjs/openapi-client/index.js +2 -0
  52. package/_cjs/openapi-client/index.js.map +1 -1
  53. package/_cjs/spend-permissions/constants.js +716 -0
  54. package/_cjs/spend-permissions/constants.js.map +1 -0
  55. package/_cjs/spend-permissions/types.js +3 -0
  56. package/_cjs/spend-permissions/types.js.map +1 -0
  57. package/_cjs/version.js +1 -1
  58. package/_esm/accounts/evm/networkCapabilities.js +101 -0
  59. package/_esm/accounts/evm/networkCapabilities.js.map +1 -1
  60. package/_esm/accounts/evm/toEvmServerAccount.js +11 -0
  61. package/_esm/accounts/evm/toEvmServerAccount.js.map +1 -1
  62. package/_esm/accounts/evm/toEvmSmartAccount.js +11 -0
  63. package/_esm/accounts/evm/toEvmSmartAccount.js.map +1 -1
  64. package/_esm/accounts/evm/toNetworkScopedEvmServerAccount.js +10 -0
  65. package/_esm/accounts/evm/toNetworkScopedEvmServerAccount.js.map +1 -1
  66. package/_esm/accounts/evm/toNetworkScopedEvmSmartAccount.js +10 -0
  67. package/_esm/accounts/evm/toNetworkScopedEvmSmartAccount.js.map +1 -1
  68. package/_esm/accounts/solana/toSolanaAccount.js +11 -1
  69. package/_esm/accounts/solana/toSolanaAccount.js.map +1 -1
  70. package/_esm/actions/evm/getUserOperation.js +1 -0
  71. package/_esm/actions/evm/getUserOperation.js.map +1 -1
  72. package/_esm/actions/evm/spend-permissions/account.use.js +30 -0
  73. package/_esm/actions/evm/spend-permissions/account.use.js.map +1 -0
  74. package/_esm/actions/evm/spend-permissions/smartAccount.use.js +32 -0
  75. package/_esm/actions/evm/spend-permissions/smartAccount.use.js.map +1 -0
  76. package/_esm/actions/evm/spend-permissions/types.js +2 -0
  77. package/_esm/actions/evm/spend-permissions/types.js.map +1 -0
  78. package/_esm/actions/solana/sendTransaction.js +1 -0
  79. package/_esm/actions/solana/sendTransaction.js.map +1 -1
  80. package/_esm/actions/solana/signTransaction.js +1 -0
  81. package/_esm/actions/solana/signTransaction.js.map +1 -1
  82. package/_esm/auth/hooks/axios/withAuth.js +3 -0
  83. package/_esm/auth/hooks/axios/withAuth.js.map +1 -1
  84. package/_esm/auth/utils/http.js +2 -1
  85. package/_esm/auth/utils/http.js.map +1 -1
  86. package/_esm/client/evm/evm.js +51 -1
  87. package/_esm/client/evm/evm.js.map +1 -1
  88. package/_esm/client/solana/solana.js +2 -2
  89. package/_esm/client/solana/solana.js.map +1 -1
  90. package/_esm/index.js +2 -1
  91. package/_esm/index.js.map +1 -1
  92. package/_esm/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js +39 -1
  93. package/_esm/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js.map +1 -1
  94. package/_esm/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js +12 -0
  95. package/_esm/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js.map +1 -1
  96. package/_esm/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.js +69 -0
  97. package/_esm/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.js.map +1 -1
  98. package/_esm/openapi-client/generated/index.msw.js +2 -0
  99. package/_esm/openapi-client/generated/index.msw.js.map +1 -1
  100. package/_esm/openapi-client/generated/onramp/onramp.js +25 -0
  101. package/_esm/openapi-client/generated/onramp/onramp.js.map +1 -0
  102. package/_esm/openapi-client/generated/onramp/onramp.msw.js +90 -0
  103. package/_esm/openapi-client/generated/onramp/onramp.msw.js.map +1 -0
  104. package/_esm/openapi-client/generated/x402-facilitator/x402-facilitator.js +11 -0
  105. package/_esm/openapi-client/generated/x402-facilitator/x402-facilitator.js.map +1 -0
  106. package/_esm/openapi-client/generated/x402-facilitator/x402-facilitator.msw.js +63 -0
  107. package/_esm/openapi-client/generated/x402-facilitator/x402-facilitator.msw.js.map +1 -0
  108. package/_esm/openapi-client/index.js +2 -0
  109. package/_esm/openapi-client/index.js.map +1 -1
  110. package/_esm/spend-permissions/constants.js +713 -0
  111. package/_esm/spend-permissions/constants.js.map +1 -0
  112. package/_esm/spend-permissions/types.js +2 -0
  113. package/_esm/spend-permissions/types.js.map +1 -0
  114. package/_esm/version.js +1 -1
  115. package/_types/accounts/evm/networkCapabilities.d.ts +101 -0
  116. package/_types/accounts/evm/networkCapabilities.d.ts.map +1 -1
  117. package/_types/accounts/evm/toEvmServerAccount.d.ts.map +1 -1
  118. package/_types/accounts/evm/toEvmSmartAccount.d.ts +1 -1
  119. package/_types/accounts/evm/toEvmSmartAccount.d.ts.map +1 -1
  120. package/_types/accounts/evm/toNetworkScopedEvmServerAccount.d.ts.map +1 -1
  121. package/_types/accounts/evm/toNetworkScopedEvmSmartAccount.d.ts.map +1 -1
  122. package/_types/accounts/evm/types.d.ts +6 -0
  123. package/_types/accounts/evm/types.d.ts.map +1 -1
  124. package/_types/accounts/solana/toSolanaAccount.d.ts.map +1 -1
  125. package/_types/actions/evm/getUserOperation.d.ts.map +1 -1
  126. package/_types/actions/evm/spend-permissions/account.use.d.ts +15 -0
  127. package/_types/actions/evm/spend-permissions/account.use.d.ts.map +1 -0
  128. package/_types/actions/evm/spend-permissions/smartAccount.use.d.ts +15 -0
  129. package/_types/actions/evm/spend-permissions/smartAccount.use.d.ts.map +1 -0
  130. package/_types/actions/evm/spend-permissions/types.d.ts +13 -0
  131. package/_types/actions/evm/spend-permissions/types.d.ts.map +1 -0
  132. package/_types/actions/evm/types.d.ts +75 -0
  133. package/_types/actions/evm/types.d.ts.map +1 -1
  134. package/_types/actions/solana/sendTransaction.d.ts +8 -2
  135. package/_types/actions/solana/sendTransaction.d.ts.map +1 -1
  136. package/_types/actions/solana/signTransaction.d.ts +8 -2
  137. package/_types/actions/solana/signTransaction.d.ts.map +1 -1
  138. package/_types/actions/solana/types.d.ts +38 -3
  139. package/_types/actions/solana/types.d.ts.map +1 -1
  140. package/_types/auth/hooks/axios/withAuth.d.ts.map +1 -1
  141. package/_types/auth/utils/http.d.ts.map +1 -1
  142. package/_types/client/evm/evm.d.ts +19 -1
  143. package/_types/client/evm/evm.d.ts.map +1 -1
  144. package/_types/client/evm/evm.types.d.ts +29 -2
  145. package/_types/client/evm/evm.types.d.ts.map +1 -1
  146. package/_types/client/solana/solana.d.ts +5 -3
  147. package/_types/client/solana/solana.d.ts.map +1 -1
  148. package/_types/index.d.ts +3 -1
  149. package/_types/index.d.ts.map +1 -1
  150. package/_types/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.d.ts +333 -1
  151. package/_types/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.d.ts.map +1 -1
  152. package/_types/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.d.ts +7 -1
  153. package/_types/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.d.ts.map +1 -1
  154. package/_types/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.d.ts +2 -0
  155. package/_types/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.d.ts.map +1 -1
  156. package/_types/openapi-client/generated/index.msw.d.ts +2 -0
  157. package/_types/openapi-client/generated/index.msw.d.ts.map +1 -1
  158. package/_types/openapi-client/generated/onramp/onramp.d.ts +28 -0
  159. package/_types/openapi-client/generated/onramp/onramp.d.ts.map +1 -0
  160. package/_types/openapi-client/generated/onramp/onramp.msw.d.ts +8 -0
  161. package/_types/openapi-client/generated/onramp/onramp.msw.d.ts.map +1 -0
  162. package/_types/openapi-client/generated/x402-facilitator/x402-facilitator.d.ts +20 -0
  163. package/_types/openapi-client/generated/x402-facilitator/x402-facilitator.d.ts.map +1 -0
  164. package/_types/openapi-client/generated/x402-facilitator/x402-facilitator.msw.d.ts +6 -0
  165. package/_types/openapi-client/generated/x402-facilitator/x402-facilitator.msw.d.ts.map +1 -0
  166. package/_types/openapi-client/index.d.ts +4 -0
  167. package/_types/openapi-client/index.d.ts.map +1 -1
  168. package/_types/spend-permissions/constants.d.ts +1357 -0
  169. package/_types/spend-permissions/constants.d.ts.map +1 -0
  170. package/_types/spend-permissions/types.d.ts +30 -0
  171. package/_types/spend-permissions/types.d.ts.map +1 -0
  172. package/_types/version.d.ts +1 -1
  173. package/accounts/evm/networkCapabilities.ts +101 -0
  174. package/accounts/evm/toEvmServerAccount.ts +15 -0
  175. package/accounts/evm/toEvmSmartAccount.ts +19 -4
  176. package/accounts/evm/toNetworkScopedEvmServerAccount.ts +15 -0
  177. package/accounts/evm/toNetworkScopedEvmSmartAccount.ts +15 -0
  178. package/accounts/evm/types.ts +18 -0
  179. package/accounts/solana/toSolanaAccount.ts +17 -3
  180. package/actions/evm/getUserOperation.ts +1 -0
  181. package/actions/evm/spend-permissions/account.use.ts +48 -0
  182. package/actions/evm/spend-permissions/smartAccount.use.ts +49 -0
  183. package/actions/evm/spend-permissions/types.ts +13 -0
  184. package/actions/evm/types.ts +81 -0
  185. package/actions/solana/sendTransaction.ts +10 -2
  186. package/actions/solana/signTransaction.ts +10 -2
  187. package/actions/solana/types.ts +44 -2
  188. package/auth/hooks/axios/withAuth.ts +3 -0
  189. package/auth/utils/http.ts +2 -1
  190. package/client/evm/evm.ts +61 -1
  191. package/client/evm/evm.types.ts +31 -0
  192. package/client/solana/solana.ts +10 -5
  193. package/index.ts +6 -1
  194. package/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.ts +375 -1
  195. package/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.msw.ts +85 -0
  196. package/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.ts +23 -0
  197. package/openapi-client/generated/index.msw.ts +2 -0
  198. package/openapi-client/generated/onramp/onramp.msw.ts +135 -0
  199. package/openapi-client/generated/onramp/onramp.ts +54 -0
  200. package/openapi-client/generated/x402-facilitator/x402-facilitator.msw.ts +85 -0
  201. package/openapi-client/generated/x402-facilitator/x402-facilitator.ts +34 -0
  202. package/openapi-client/index.ts +2 -0
  203. package/package.json +1 -1
  204. package/spend-permissions/constants.ts +713 -0
  205. package/spend-permissions/types.ts +42 -0
  206. package/version.ts +1 -1
@@ -0,0 +1,98 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getOnrampMock = exports.getGetOnrampOrderByIdMockHandler = exports.getCreateOnrampOrderMockHandler = exports.getGetOnrampOrderByIdResponseMock = exports.getCreateOnrampOrderResponseMock = void 0;
4
+ /**
5
+ * Generated by orval v7.6.0 🍺
6
+ * Do not edit manually.
7
+ * Coinbase Developer Platform APIs
8
+ * The Coinbase Developer Platform APIs - leading the world's transition onchain.
9
+ * OpenAPI spec version: 2.0.0
10
+ */
11
+ const faker_1 = require("@faker-js/faker");
12
+ const msw_1 = require("msw");
13
+ const coinbaseDeveloperPlatformAPIs_schemas_js_1 = require("../coinbaseDeveloperPlatformAPIs.schemas.js");
14
+ const getCreateOnrampOrderResponseMock = (overrideResponse = {}) => ({
15
+ order: {
16
+ orderId: faker_1.faker.string.alpha(20),
17
+ paymentTotal: faker_1.faker.string.alpha(20),
18
+ paymentSubtotal: {},
19
+ paymentCurrency: faker_1.faker.string.alpha(20),
20
+ paymentMethod: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.OnrampPaymentMethodTypeId)),
21
+ purchaseAmount: faker_1.faker.string.alpha(20),
22
+ purchaseCurrency: faker_1.faker.string.alpha(20),
23
+ fees: Array.from({ length: faker_1.faker.number.int({ min: 1, max: 10 }) }, (_, i) => i + 1).map(() => ({
24
+ type: faker_1.faker.helpers.arrayElement(["FEE_TYPE_NETWORK", "FEE_TYPE_EXCHANGE"]),
25
+ amount: faker_1.faker.string.alpha(20),
26
+ currency: faker_1.faker.string.alpha(20),
27
+ })),
28
+ exchangeRate: faker_1.faker.string.alpha(20),
29
+ destinationAddress: faker_1.faker.string.alpha(20),
30
+ destinationNetwork: faker_1.faker.string.alpha(20),
31
+ status: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.OnrampOrderStatus)),
32
+ txHash: faker_1.faker.helpers.arrayElement([faker_1.faker.string.alpha(20), undefined]),
33
+ createdAt: faker_1.faker.string.alpha(20),
34
+ updatedAt: faker_1.faker.string.alpha(20),
35
+ },
36
+ paymentLink: faker_1.faker.helpers.arrayElement([
37
+ {
38
+ url: faker_1.faker.string.alpha(20),
39
+ paymentLinkType: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.OnrampPaymentLinkType)),
40
+ },
41
+ undefined,
42
+ ]),
43
+ ...overrideResponse,
44
+ });
45
+ exports.getCreateOnrampOrderResponseMock = getCreateOnrampOrderResponseMock;
46
+ const getGetOnrampOrderByIdResponseMock = (overrideResponse = {}) => ({
47
+ order: {
48
+ orderId: faker_1.faker.string.alpha(20),
49
+ paymentTotal: faker_1.faker.string.alpha(20),
50
+ paymentSubtotal: {},
51
+ paymentCurrency: faker_1.faker.string.alpha(20),
52
+ paymentMethod: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.OnrampPaymentMethodTypeId)),
53
+ purchaseAmount: faker_1.faker.string.alpha(20),
54
+ purchaseCurrency: faker_1.faker.string.alpha(20),
55
+ fees: Array.from({ length: faker_1.faker.number.int({ min: 1, max: 10 }) }, (_, i) => i + 1).map(() => ({
56
+ type: faker_1.faker.helpers.arrayElement(["FEE_TYPE_NETWORK", "FEE_TYPE_EXCHANGE"]),
57
+ amount: faker_1.faker.string.alpha(20),
58
+ currency: faker_1.faker.string.alpha(20),
59
+ })),
60
+ exchangeRate: faker_1.faker.string.alpha(20),
61
+ destinationAddress: faker_1.faker.string.alpha(20),
62
+ destinationNetwork: faker_1.faker.string.alpha(20),
63
+ status: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.OnrampOrderStatus)),
64
+ txHash: faker_1.faker.helpers.arrayElement([faker_1.faker.string.alpha(20), undefined]),
65
+ createdAt: faker_1.faker.string.alpha(20),
66
+ updatedAt: faker_1.faker.string.alpha(20),
67
+ },
68
+ ...overrideResponse,
69
+ });
70
+ exports.getGetOnrampOrderByIdResponseMock = getGetOnrampOrderByIdResponseMock;
71
+ const getCreateOnrampOrderMockHandler = (overrideResponse) => {
72
+ return msw_1.http.post("*/v2/onramp/orders", async (info) => {
73
+ await (0, msw_1.delay)(0);
74
+ return new msw_1.HttpResponse(JSON.stringify(overrideResponse !== undefined
75
+ ? typeof overrideResponse === "function"
76
+ ? await overrideResponse(info)
77
+ : overrideResponse
78
+ : (0, exports.getCreateOnrampOrderResponseMock)()), { status: 201, headers: { "Content-Type": "application/json" } });
79
+ });
80
+ };
81
+ exports.getCreateOnrampOrderMockHandler = getCreateOnrampOrderMockHandler;
82
+ const getGetOnrampOrderByIdMockHandler = (overrideResponse) => {
83
+ return msw_1.http.get("*/v2/onramp/orders/:orderId", async (info) => {
84
+ await (0, msw_1.delay)(0);
85
+ return new msw_1.HttpResponse(JSON.stringify(overrideResponse !== undefined
86
+ ? typeof overrideResponse === "function"
87
+ ? await overrideResponse(info)
88
+ : overrideResponse
89
+ : (0, exports.getGetOnrampOrderByIdResponseMock)()), { status: 200, headers: { "Content-Type": "application/json" } });
90
+ });
91
+ };
92
+ exports.getGetOnrampOrderByIdMockHandler = getGetOnrampOrderByIdMockHandler;
93
+ const getOnrampMock = () => [
94
+ (0, exports.getCreateOnrampOrderMockHandler)(),
95
+ (0, exports.getGetOnrampOrderByIdMockHandler)(),
96
+ ];
97
+ exports.getOnrampMock = getOnrampMock;
98
+ //# sourceMappingURL=onramp.msw.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onramp.msw.js","sourceRoot":"","sources":["../../../../openapi-client/generated/onramp/onramp.msw.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.listX402DiscoveryResources = void 0;
4
+ const cdpApiClient_js_1 = require("../../cdpApiClient.js");
5
+ /**
6
+ * Lists all active discovered x402 resources.
7
+ This endpoint returns resources that have been discovered and cached by the x402 facilitator, including their payment requirements and metadata.
8
+ The response is paginated, and by default, returns 100 items per page.
9
+ * @summary List discovered x402 resources
10
+ */
11
+ const listX402DiscoveryResources = (params, options) => {
12
+ return (0, cdpApiClient_js_1.cdpApiClient)({ url: `/v2/x402/discovery/resources`, method: "GET", params }, options);
13
+ };
14
+ exports.listX402DiscoveryResources = listX402DiscoveryResources;
15
+ //# sourceMappingURL=x402-facilitator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"x402-facilitator.js","sourceRoot":"","sources":["../../../../openapi-client/generated/x402-facilitator/x402-facilitator.ts"],"names":[],"mappings":";;;AAYA,2DAAqD;AAIrD;;;;;GAKG;AACI,MAAM,0BAA0B,GAAG,CACxC,MAAyC,EACzC,OAA8C,EAC9C,EAAE;IACF,OAAO,IAAA,8BAAY,EACjB,EAAE,GAAG,EAAE,8BAA8B,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,EAC9D,OAAO,CACR,CAAC;AACJ,CAAC,CAAC;AARW,QAAA,0BAA0B,8BAQrC"}
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getX402FacilitatorMock = exports.getListX402DiscoveryResourcesMockHandler = exports.getListX402DiscoveryResourcesResponseMock = void 0;
4
+ /**
5
+ * Generated by orval v7.6.0 🍺
6
+ * Do not edit manually.
7
+ * Coinbase Developer Platform APIs
8
+ * The Coinbase Developer Platform APIs - leading the world's transition onchain.
9
+ * OpenAPI spec version: 2.0.0
10
+ */
11
+ const faker_1 = require("@faker-js/faker");
12
+ const msw_1 = require("msw");
13
+ const coinbaseDeveloperPlatformAPIs_schemas_js_1 = require("../coinbaseDeveloperPlatformAPIs.schemas.js");
14
+ const getListX402DiscoveryResourcesResponseMock = (overrideResponse = {}) => ({
15
+ x402Version: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.X402Version)),
16
+ items: Array.from({ length: faker_1.faker.number.int({ min: 1, max: 10 }) }, (_, i) => i + 1).map(() => ({
17
+ resource: faker_1.faker.string.alpha(20),
18
+ type: faker_1.faker.helpers.arrayElement(["http"]),
19
+ x402Version: faker_1.faker.helpers.arrayElement(Object.values(coinbaseDeveloperPlatformAPIs_schemas_js_1.X402Version)),
20
+ accepts: faker_1.faker.helpers.arrayElement([
21
+ Array.from({ length: faker_1.faker.number.int({ min: 1, max: 10 }) }, (_, i) => i + 1).map(() => ({
22
+ scheme: faker_1.faker.helpers.arrayElement(["exact"]),
23
+ network: faker_1.faker.helpers.arrayElement(["base-sepolia", "base"]),
24
+ maxAmountRequired: faker_1.faker.string.alpha(20),
25
+ resource: faker_1.faker.string.alpha(20),
26
+ description: faker_1.faker.string.alpha(20),
27
+ mimeType: faker_1.faker.string.alpha(20),
28
+ outputSchema: faker_1.faker.helpers.arrayElement([{}, undefined]),
29
+ payTo: faker_1.faker.helpers.fromRegExp("^0x[a-fA-F0-9]{40}|[A-Za-z0-9][A-Za-z0-9-]{0,34}[A-Za-z0-9]$"),
30
+ maxTimeoutSeconds: faker_1.faker.number.int({ min: undefined, max: undefined }),
31
+ asset: faker_1.faker.helpers.fromRegExp("^0x[a-fA-F0-9]{40}|[A-Za-z0-9][A-Za-z0-9-]{0,34}[A-Za-z0-9]$"),
32
+ extra: faker_1.faker.helpers.arrayElement([{}, undefined]),
33
+ })),
34
+ undefined,
35
+ ]),
36
+ lastUpdated: `${faker_1.faker.date.past().toISOString().split(".")[0]}Z`,
37
+ metadata: faker_1.faker.helpers.arrayElement([{}, undefined]),
38
+ })),
39
+ pagination: {
40
+ limit: faker_1.faker.helpers.arrayElement([
41
+ faker_1.faker.number.int({ min: undefined, max: undefined }),
42
+ undefined,
43
+ ]),
44
+ offset: faker_1.faker.helpers.arrayElement([
45
+ faker_1.faker.number.int({ min: undefined, max: undefined }),
46
+ undefined,
47
+ ]),
48
+ total: faker_1.faker.helpers.arrayElement([
49
+ faker_1.faker.number.int({ min: undefined, max: undefined }),
50
+ undefined,
51
+ ]),
52
+ },
53
+ ...overrideResponse,
54
+ });
55
+ exports.getListX402DiscoveryResourcesResponseMock = getListX402DiscoveryResourcesResponseMock;
56
+ const getListX402DiscoveryResourcesMockHandler = (overrideResponse) => {
57
+ return msw_1.http.get("*/v2/x402/discovery/resources", async (info) => {
58
+ await (0, msw_1.delay)(0);
59
+ return new msw_1.HttpResponse(JSON.stringify(overrideResponse !== undefined
60
+ ? typeof overrideResponse === "function"
61
+ ? await overrideResponse(info)
62
+ : overrideResponse
63
+ : (0, exports.getListX402DiscoveryResourcesResponseMock)()), { status: 200, headers: { "Content-Type": "application/json" } });
64
+ });
65
+ };
66
+ exports.getListX402DiscoveryResourcesMockHandler = getListX402DiscoveryResourcesMockHandler;
67
+ const getX402FacilitatorMock = () => [(0, exports.getListX402DiscoveryResourcesMockHandler)()];
68
+ exports.getX402FacilitatorMock = getX402FacilitatorMock;
69
+ //# sourceMappingURL=x402-facilitator.msw.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"x402-facilitator.msw.js","sourceRoot":"","sources":["../../../../openapi-client/generated/x402-facilitator/x402-facilitator.msw.ts"],"names":[],"mappings":"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"}
@@ -47,6 +47,8 @@ __exportStar(require("./generated/solana-token-balances/solana-token-balances.js
47
47
  __exportStar(require("./generated/faucets/faucets.js"), exports);
48
48
  __exportStar(require("./generated/policy-engine/policy-engine.js"), exports);
49
49
  __exportStar(require("./generated/payments-alpha/payments-alpha.js"), exports);
50
+ __exportStar(require("./generated/x402-facilitator/x402-facilitator.js"), exports);
51
+ __exportStar(require("./generated/onramp/onramp.js"), exports);
50
52
  const cdpApiClient_js_1 = require("./cdpApiClient.js");
51
53
  const evm = __importStar(require("./generated/evm-accounts/evm-accounts.js"));
52
54
  const evmSmartAccounts = __importStar(require("./generated/evm-smart-accounts/evm-smart-accounts.js"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../openapi-client/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAqE;AACrE,2EAAyD;AACzD,uFAAqE;AACrE,qEAAmD;AACnD,uFAAqE;AACrE,iFAA+D;AAC/D,6FAA2E;AAC3E,iEAA+C;AAC/C,6EAA2D;AAC3D,+EAA6D;AAE7D,uDAA8C;AAC9C,8EAAgE;AAChE,uGAAyF;AACzF,6EAA+D;AAC/D,uGAAyF;AACzF,wEAA0D;AAC1D,uFAAyE;AACzE,qFAAuE;AACvE,uFAAyE;AACzE,gHAAkG;AAErF,QAAA,gBAAgB,GAAG;IAC9B,GAAG,GAAG;IACN,GAAG,gBAAgB;IACnB,GAAG,QAAQ;IACX,GAAG,gBAAgB;IACnB,GAAG,MAAM;IACT,GAAG,mBAAmB;IACtB,GAAG,OAAO;IACV,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,SAAS,EAAT,2BAAS;CACV,CAAC;AAEW,QAAA,iBAAiB,GAAG;IAC/B,GAAG,GAAG;IACN,GAAG,gBAAgB;IACnB,GAAG,QAAQ;IACX,GAAG,gBAAgB;IACnB,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;CAC3C,CAAC;AAEW,QAAA,oBAAoB,GAAG;IAClC,GAAG,MAAM;IACT,mBAAmB,EAAE,OAAO,CAAC,mBAAmB;CACjD,CAAC;AAEW,QAAA,sBAAsB,GAAG;IACpC,GAAG,QAAQ;CACZ,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../openapi-client/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAqE;AACrE,2EAAyD;AACzD,uFAAqE;AACrE,qEAAmD;AACnD,uFAAqE;AACrE,iFAA+D;AAC/D,6FAA2E;AAC3E,iEAA+C;AAC/C,6EAA2D;AAC3D,+EAA6D;AAC7D,mFAAiE;AACjE,+DAA6C;AAE7C,uDAA8C;AAC9C,8EAAgE;AAChE,uGAAyF;AACzF,6EAA+D;AAC/D,uGAAyF;AACzF,wEAA0D;AAC1D,uFAAyE;AACzE,qFAAuE;AACvE,uFAAyE;AACzE,gHAAkG;AAErF,QAAA,gBAAgB,GAAG;IAC9B,GAAG,GAAG;IACN,GAAG,gBAAgB;IACnB,GAAG,QAAQ;IACX,GAAG,gBAAgB;IACnB,GAAG,MAAM;IACT,GAAG,mBAAmB;IACtB,GAAG,OAAO;IACV,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,SAAS,EAAT,2BAAS;CACV,CAAC;AAEW,QAAA,iBAAiB,GAAG;IAC/B,GAAG,GAAG;IACN,GAAG,gBAAgB;IACnB,GAAG,QAAQ;IACX,GAAG,gBAAgB;IACnB,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;CAC3C,CAAC;AAEW,QAAA,oBAAoB,GAAG;IAClC,GAAG,MAAM;IACT,mBAAmB,EAAE,OAAO,CAAC,mBAAmB;CACjD,CAAC;AAEW,QAAA,sBAAsB,GAAG;IACpC,GAAG,QAAQ;CACZ,CAAC"}