Git Product home page Git Product logo

faraday-js's Introduction

@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));

faraday-js's People

Contributors

github-actions[bot] avatar hanakslr avatar zebapy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

suci1337

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.