New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@raycast/utils

Package Overview
Dependencies
Maintainers
8
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@raycast/utils - npm Package Compare versions

Comparing version 1.12.2 to 1.12.3

1

dist/oauth/providers.d.ts

@@ -13,2 +13,3 @@ import { OAuthService } from "./OAuthService";

onAuthorize?: (params: OnAuthorizeParams) => void;
bodyEncoding?: "json" | "url-encoded";
};

@@ -15,0 +16,0 @@ export type ProviderWithDefaultClientOptions = BaseProviderOptions & Partial<ClientOptions>;

16

dist/oauth/providers.js

@@ -45,6 +45,7 @@ "use strict";

tokenUrl: options.tokenUrl ?? "https://asana.oauth.raycast.com/token",
refreshTokenUrl: options.refreshTokenUrl,
refreshTokenUrl: options.refreshTokenUrl ?? "https://asana.oauth.raycast.com/refresh-token",
scope: options.scope,
personalAccessToken: options.personalAccessToken,
onAuthorize: options.onAuthorize,
bodyEncoding: options.bodyEncoding
});

@@ -63,6 +64,7 @@ exports.asanaService = asanaService;

tokenUrl: options.tokenUrl ?? "https://github.oauth.raycast.com/token",
refreshTokenUrl: options.refreshTokenUrl,
refreshTokenUrl: options.refreshTokenUrl ?? "https://github.oauth.raycast.com/refresh-token",
scope: options.scope,
personalAccessToken: options.personalAccessToken,
onAuthorize: options.onAuthorize,
bodyEncoding: options.bodyEncoding
});

@@ -84,3 +86,3 @@ exports.githubService = githubService;

personalAccessToken: options.personalAccessToken,
bodyEncoding: "url-encoded",
bodyEncoding: options.bodyEncoding ?? "url-encoded",
onAuthorize: options.onAuthorize,

@@ -104,2 +106,3 @@ });

onAuthorize: options.onAuthorize,
bodyEncoding: options.bodyEncoding
});

@@ -118,2 +121,3 @@ exports.jiraService = jiraService;

tokenUrl: options.tokenUrl ?? "https://linear.oauth.raycast.com/token",
refreshTokenUrl: options.refreshTokenUrl ?? "https://linear.oauth.raycast.com/refresh-token",
scope: options.scope,

@@ -124,2 +128,3 @@ extraParameters: {

onAuthorize: options.onAuthorize,
bodyEncoding: options.bodyEncoding
});

@@ -138,2 +143,3 @@ exports.linearService = linearService;

tokenUrl: options.tokenUrl ?? "https://slack.oauth.raycast.com/token",
refreshTokenUrl: options.tokenUrl ?? "https://slack.oauth.raycast.com/refresh-token",
scope: "",

@@ -144,3 +150,3 @@ extraParameters: {

personalAccessToken: options.personalAccessToken,
bodyEncoding: "url-encoded",
bodyEncoding: options.tokenUrl ? options.bodyEncoding ?? "url-encoded" : "json",
onAuthorize: options.onAuthorize,

@@ -163,5 +169,5 @@ });

personalAccessToken: options.personalAccessToken,
bodyEncoding: "url-encoded",
bodyEncoding: options.bodyEncoding ?? "url-encoded",
onAuthorize: options.onAuthorize,
});
exports.zoomService = zoomService;
{
"name": "@raycast/utils",
"version": "1.12.2",
"version": "1.12.3",
"description": "Set of utilities to streamline building Raycast extensions",

@@ -5,0 +5,0 @@ "author": "Raycast Technologies Ltd.",

Sorry, the diff of this file is not supported yet

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