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

aidly

Package Overview
Dependencies
Maintainers
0
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aidly - npm Package Compare versions

Comparing version 1.11.0 to 1.12.0

1

dist/index.d.ts

@@ -83,2 +83,3 @@ import type { Prettify } from './types';

DeepPrettify,
Protocols,
ExtractRouteParams,

@@ -85,0 +86,0 @@ } from './types';

@@ -33,4 +33,20 @@ import { phones } from './phoneRegExp';

| Float64Array;
export type Protocols =
| 'http'
| 'https'
| 'ws'
| 'wss'
| 'ftp'
| 'ftps'
| 'sftp'
| 'file'
| 'data'
| 'telnet'
| 'mailto'
| 'ssh'
| 'git';
export type ExtractRouteParams<S extends string> = string extends S
? Record<string, string>
: S extends `${Protocols}://${infer P}`
? ExtractRouteParams<P>
: S extends `${infer P}?${infer _Q}`

@@ -37,0 +53,0 @@ ? ExtractRouteParams<P>

2

package.json
{
"name": "aidly",
"version": "1.11.0",
"version": "1.12.0",
"description": "Tool library.",

@@ -5,0 +5,0 @@ "sideEffects": false,

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