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

lightrail-client

Package Overview
Dependencies
Maintainers
4
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightrail-client - npm Package Compare versions

Comparing version 4.1.4-beta to 4.1.4

3

dist/params/contacts/DetachContactFromValueParams.d.ts
import { LightrailResponse } from "../LightrailResponse";
import { Value } from "../../model";
export interface DetachContactFromValueParams {
valueId?: string;
code?: string;
valueId: string;
}
export interface DetachContactFromValueResponse extends LightrailResponse<Value> {
}

@@ -140,3 +140,3 @@ "use strict";

const resp = yield lightrail.request("GET", `transactions/${encodeURIComponent(transactionId)}`);
if (requestUtils_1.isSuccessStatus(resp.status)) {
if (requestUtils_1.isSuccessStatus(resp.status) || resp.status === 404) {
return requestUtils_1.formatResponse(resp);

@@ -152,3 +152,3 @@ }

const resp = yield lightrail.request("GET", `transactions/${encodeURIComponent(transactionId)}/chain`);
if (requestUtils_1.isSuccessStatus(resp.status)) {
if (requestUtils_1.isSuccessStatus(resp.status) || resp.status === 404) {
return requestUtils_1.formatResponse(resp);

@@ -155,0 +155,0 @@ }

{
"name": "lightrail-client",
"version": "4.1.4-beta",
"version": "4.1.4",
"description": "A Javascript and Typescript client for Lightrail",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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