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

@scalar/oas-utils

Package Overview
Dependencies
Maintainers
8
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scalar/oas-utils - npm Package Compare versions

Comparing version 0.2.14 to 0.2.15

8

CHANGELOG.md
# @scalar/oas-utils
## 0.2.15
### Patch Changes
- 1dab515: feat: revamp address bar
- Updated dependencies [5e060b1]
- @scalar/themes@0.9.15
## 0.2.14

@@ -4,0 +12,0 @@

4

dist/entities/workspace/spec/request-examples.d.ts

@@ -71,2 +71,3 @@ import { z } from 'zod';

uid: z.ZodDefault<z.ZodOptional<z.ZodString>>;
url: z.ZodDefault<z.ZodOptional<z.ZodString>>;
requestUid: z.ZodString;

@@ -550,2 +551,3 @@ name: z.ZodDefault<z.ZodOptional<z.ZodString>>;

name: string;
url: string;
parameters: {

@@ -650,2 +652,3 @@ path: {

name?: string | undefined;
url?: string | undefined;
parameters?: {

@@ -753,2 +756,3 @@ path?: {

name: string;
url: string;
parameters: {

@@ -755,0 +759,0 @@ path: {

@@ -26,2 +26,3 @@ import { z } from 'zod';

uid: nanoidSchema,
url: z.string().optional().default(''),
requestUid: z.string().min(7),

@@ -28,0 +29,0 @@ name: z.string().optional().default('Name'),

2

dist/helpers/index.js

@@ -18,2 +18,2 @@ export { concatenateUrlAndPath } from './concatenateUrlAndPath.js';

export { defaultStateFactory, ssrState } from './ssrState.js';
export { camelToTitleWords } from './string.js';
export { camelToTitleWords, capitalize } from './string.js';

@@ -10,2 +10,7 @@ /**

export declare const camelToTitleWords: (camelStr: string) => string;
/**
* Capitalize first letter
* You should normally do this in css, only use this if you have to
*/
export declare const capitalize: (str: string) => string;
//# sourceMappingURL=string.d.ts.map

@@ -13,3 +13,8 @@ /**

.trim();
/**
* Capitalize first letter
* You should normally do this in css, only use this if you have to
*/
const capitalize = (str) => str[0].toUpperCase() + str.slice(1);
export { camelToTitleWords };
export { camelToTitleWords, capitalize };

@@ -19,3 +19,3 @@ {

],
"version": "0.2.14",
"version": "0.2.15",
"engines": {

@@ -94,3 +94,3 @@ "node": ">=18"

"zod": "^3.22.4",
"@scalar/themes": "0.9.14"
"@scalar/themes": "0.9.15"
},

@@ -107,3 +107,3 @@ "devDependencies": {

"vitest": "^1.6.0",
"@scalar/build-tooling": "0.1.9"
"@scalar/build-tooling": "0.1.10"
},

@@ -110,0 +110,0 @@ "scripts": {

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