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

@seamapi/nextlove-sdk-generator

Package Overview
Dependencies
Maintainers
5
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seamapi/nextlove-sdk-generator - npm Package Compare versions

Comparing version 1.12.0 to 1.13.0

4

lib/generate-php-sdk/utils/generate-seam-client.js

@@ -26,7 +26,7 @@ export const generateSeamClient = ({ resource_clients, resource_object_names, }) => {

public function __construct(
$api_key,
$api_key = null,
$endpoint = "https://connect.getseam.com",
$throw_http_errors = false
) {
$this->api_key = $api_key;
$this->api_key = $api_key ?: (getenv('SEAM_API_KEY') ?: null);
$seam_sdk_version = PackageVersion::get();

@@ -33,0 +33,0 @@ $this->client = new HTTPClient([

{
"name": "@seamapi/nextlove-sdk-generator",
"version": "1.12.0",
"version": "1.13.0",
"description": "Utilities for building NextLove SDK Generators",

@@ -5,0 +5,0 @@ "type": "module",

@@ -39,7 +39,7 @@ import type { PhpClient } from "./php-client.js"

public function __construct(
$api_key,
$api_key = null,
$endpoint = "https://connect.getseam.com",
$throw_http_errors = false
) {
$this->api_key = $api_key;
$this->api_key = $api_key ?: (getenv('SEAM_API_KEY') ?: null);
$seam_sdk_version = PackageVersion::get();

@@ -46,0 +46,0 @@ $this->client = new HTTPClient([

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