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
6
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.5.1 to 1.5.2

9

lib/generate-php-sdk/generate-php-sdk.js

@@ -42,3 +42,10 @@ import axios from "axios";

resource_name: name,
resource_properties: properties,
resource_properties:
// TODO: remove this special case when nextlove openapi generator is fixed
name === "ActionAttempt"
? {
...properties,
result: { type: "object", nullable: true },
}
: properties,
required_property_names,

@@ -45,0 +52,0 @@ });

2

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

@@ -110,3 +110,3 @@ export class PhpClient {

" if ($time_waiting > 20.0) {",
' throw new Exception("Timed out waiting for access code to be created");',
' throw new Exception("Timed out waiting for action attempt to be ready");',
" }",

@@ -113,0 +113,0 @@ " $time_waiting += 0.4;",

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

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

@@ -54,3 +54,10 @@ import axios from "axios"

resource_name: name,
resource_properties: properties,
resource_properties:
// TODO: remove this special case when nextlove openapi generator is fixed
name === "ActionAttempt"
? {
...properties,
result: { type: "object", nullable: true },
}
: properties,
required_property_names,

@@ -57,0 +64,0 @@ })

@@ -170,3 +170,3 @@ export type PhpClientMethodParameter = {

" if ($time_waiting > 20.0) {",
' throw new Exception("Timed out waiting for access code to be created");',
' throw new Exception("Timed out waiting for action attempt to be ready");',
" }",

@@ -173,0 +173,0 @@ " $time_waiting += 0.4;",

Sorry, the diff of this file is not supported yet

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