import { createXcmAgent } from "@sodazone/ocelloids-client";

const agent = createXcmAgent({ apiKey: API_TOKEN });

agent.createSubscription({
  id: "my-subscription",
  args: {
    // ...
  },
  // configure the delivery channels
  channels: [
    {
      type: "webhook",
      url: "https://some.webhook"
    },
    {
      type: "websocket"
    }
  ]
});