npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@speakeasy-sdks/calendly

v0.0.3

Published

<div align="center"> <img src="https://user-images.githubusercontent.com/6267663/231164258-4232466d-cacc-4ec7-9b30-8a8fe4f3073d.svg" width="500" /> <h1>Typescript SDK</h1> <p>Integrate to save time and deliver insights</p> <a href="https://d

Downloads

5

Readme

SDK Installation

NPM

npm add @speakeasy-sdks/calendly

Yarn

yarn add @speakeasy-sdks/calendly

SDK Example Usage

import {
  ListScheduledEventsRequest,
  ListScheduledEventsResponse,
  ListScheduledEventsStatusEnum,
} from "@speakeasy-sdks/calendly/dist/sdk/models/operations";

import { AxiosError } from "axios";
import { Calendly } from "@speakeasy-sdks/calendly";
const sdk = new Calendly({
  security: {
    oauth2: "Bearer YOUR_ACCESS_TOKEN_HERE",
  },
});

const req: ListScheduledEventsRequest = {
  count: 5488.14,
  inviteeEmail: "[email protected]",
  maxStartTime: "provident",
  minStartTime: "distinctio",
  organization: "https://api.calendly.com/organizations/EBHAAFHDCAEQTSEZ",
  pageToken: "quibusdam",
  sort: "unde",
  status: ListScheduledEventsStatusEnum.Canceled,
  user: "https://api.calendly.com/users/EBHAAFHDCAEQTSEZ",
};

sdk.scheduledEvents.list(req).then((res: ListScheduledEventsResponse | AxiosError) => {
   // handle response
});

Available Resources and Operations

activityLog

  • list - List activity log entries

availability

  • get - Get User Availability Schedule
  • getAvailability - List User Availability Schedules
  • getBusyTimes - List User Busy Times

dataCompliance

  • createDeletionEvent - Delete Scheduled Event Data
  • deleteInviteeData - Delete Invitee Data

eventTypes

  • get - Get Event Type
  • getAvailableTimes - List Event Type Available Times
  • list - List User's Event Types

organizations

  • deleteMemberships - Remove User from Organization
  • getInvitations - Get Organization Invitation
  • inviteUser - Invite User to Organization
  • listInvitations - List Organization Invitations
  • listMemberships - List Organization Memberships
  • revokeInvite - Revoke User's Organization Invitation

routingForms

  • getSubmissions - List Routing Form Submissions
  • getSubmissionsByUuid - Get Routing Form Submission
  • getByUuid - Get Routing Form
  • list - List Routing Forms

scheduledEvents

  • cancel - Cancel Event
  • createNoShow - Create Invitee No Show
  • getEventByUuid - Get Event
  • getInvitees - List Event Invitees
  • getInviteesByUuid - Get Event Invitee
  • getNoShow - Get Invitee No Show
  • list - List Events
  • unmarkNoShow - Delete Invitee No Show

schedulingLinks

  • create - Create Single-Use Scheduling Link

shares

  • create - Create Share

users

  • get - Get user
  • getMemberships - Get Organization Membership
  • me - Get current user

webhooks

  • create - Create Webhook Subscription
  • delete - Delete Webhook Subscription
  • get - Get Webhook Subscription
  • list - List Webhook Subscriptions

Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release !

SDK Created by Speakeasy