Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fdy/faraday-js

Package Overview
Dependencies
Maintainers
0
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fdy/faraday-js

OpenAPI client for @fdy/faraday-js

  • 0.1.182
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
85
increased by608.33%
Maintainers
0
Weekly downloads
 
Created
Source

@fdy/faraday-js

This is autogenerated Typescript client library to consume the Faraday API.

Installation

npm install @fdy/faraday-js --save

Usage

To create a simple script, initialize a new project, install the libraries, and run using tsx or your preffered Typescript compiler.

npm tsc --init
npm install @fdy/faraday-js

-- if using outside of the browser
npm install isomorphic-fetch

touch index.ts

-- populate file, and then run using
npx tsx ./index.ts

Example usage:

import { Configuration, FaradayClient } from "@fdy/faraday-js";
import "isomorphic-fetch";

const configuration = new Configuration({
  headers: {
    authorization: "Bearer YOUR_API_KEY",
  },
});

const faraday = new FaradayClient(configuration);

const testClient = async () => {
  // Create a dataset if you do not already have one.

  // Create a cohort
  const cohort = await faraday.cohorts.createCohort({
    name: "Customers",
    stream_name: "orders",
  });

  // Create a persona set
  const personaSet = await faraday.personaSets.createPersonaSet({
    name: "Customers",
    cohort_id: cohort.id,
  });

  // Create an outcome
  const outcome = await faraday.outcomes.createOutcome({
    attainment_cohort_id: cohort.id,
    name: "Likely Customers",
  });

  // Create a scope
  const scope = await faraday.scopes.createScope({
    name: "Customers Scores",
    preview: true,
    population: {
      cohort_ids: [cohort.id],
    },
    payload: {
      persona_set_ids: [personaSet.id],
    },
  });
};

testClient().catch((err) => console.log(err));

FAQs

Package last updated on 10 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc