class Multiwoven::Integrations::Destination::Airtable::Client

def create_stream(table, base_id, base_name)

def create_stream(table, base_id, base_name)
  {
    name: "#{base_name}/#{SchemaHelper.clean_name(table["name"])}",
    action: "create",
    method: HTTP_POST,
    url: "#{AIRTABLE_URL_BASE}#{base_id}/#{table["id"]}",
    json_schema: SchemaHelper.get_json_schema(table),
    supported_sync_modes: %w[incremental],
    batch_support: true,
    batch_size: 10
  }.with_indifferent_access
end