import { createClient } from '@wix/sdk';
import { mediaCollections } from '@wix/media-collections';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { mediaCollections },
  // Include the auth strategy and host as relevant
});


async function delete(mediaCollectionId) {
  const response = await myWixClient.mediaCollections.delete(mediaCollectionId);
};