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

@basetime/a2w-api-ts

Package Overview
Dependencies
Maintainers
0
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@basetime/a2w-api-ts - npm Package Compare versions

Comparing version 0.1.18 to 0.1.19

3

dist/CampaignsEndpoint.d.ts

@@ -28,4 +28,5 @@ import { CampaignStats } from './CampaignStats';

* @param passId The ID of the pass.
* @param scanner The scanner to use.
*/
getPass: (campaignId: string, passId: string) => Promise<Pass>;
getPass: (campaignId: string, passId: string, scanner?: string) => Promise<Pass>;
/**

@@ -32,0 +33,0 @@ * Creates a pass bundle and returns the URL to the claims page.

@@ -70,5 +70,6 @@ "use strict";

* @param passId The ID of the pass.
* @param scanner The scanner to use.
*/
getPass = async (campaignId, passId) => {
const url = `${_CampaignsEndpoint.endpoint}/${campaignId}/passes/details/${passId}`;
getPass = async (campaignId, passId, scanner = "") => {
const url = `${_CampaignsEndpoint.endpoint}/${campaignId}/passes/details/${passId}?scanner=${scanner}`;
return await this.req.fetch(url, {

@@ -75,0 +76,0 @@ method: "GET"

@@ -36,5 +36,6 @@ // src/Endpoint.ts

* @param passId The ID of the pass.
* @param scanner The scanner to use.
*/
getPass = async (campaignId, passId) => {
const url = `${_CampaignsEndpoint.endpoint}/${campaignId}/passes/details/${passId}`;
getPass = async (campaignId, passId, scanner = "") => {
const url = `${_CampaignsEndpoint.endpoint}/${campaignId}/passes/details/${passId}?scanner=${scanner}`;
return await this.req.fetch(url, {

@@ -41,0 +42,0 @@ method: "GET"

{
"name": "@basetime/a2w-api-ts",
"version": "0.1.18",
"version": "0.1.19",
"private": false,

@@ -5,0 +5,0 @@ "description": "Client library that communicates with the addtowallet API.",

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