@moonpay/platform-sdk-core 1.5.0 → 1.6.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.
package/dist/index.cjs CHANGED
@@ -111,8 +111,8 @@ async function apiFetch(ctx, path, options) {
111
111
  // src/api/get-assets.ts
112
112
  async function getAssets(ctx, params = {}) {
113
113
  const searchParams = new URLSearchParams();
114
- if (params.verified != null)
115
- searchParams.set("verified", String(params.verified));
114
+ if (params.source)
115
+ searchParams.set("source", params.source);
116
116
  if (params.code)
117
117
  searchParams.set("code", params.code);
118
118
  if (params.cursor)