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

@nexeraprotocol/nexera-id-schemas

Package Overview
Dependencies
Maintainers
1
Versions
385
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexeraprotocol/nexera-id-schemas - npm Package Compare versions

Comparing version 1.4.2 to 1.5.0

8

api/dist/nexeraprotocol-nexera-id-schemas-api.cjs.dev.js

@@ -93,3 +93,9 @@ 'use strict';

durationMs: zod.z.number(),
url: zod.z.string()
url: zod.z.string(),
error: zod.z.object({
message: zod.z.string(),
stack: zod.z.string().optional(),
cause: zod.z.string(),
code: zod.z.string()
}).optional()
});

@@ -96,0 +102,0 @@

@@ -93,3 +93,9 @@ 'use strict';

durationMs: zod.z.number(),
url: zod.z.string()
url: zod.z.string(),
error: zod.z.object({
message: zod.z.string(),
stack: zod.z.string().optional(),
cause: zod.z.string(),
code: zod.z.string()
}).optional()
});

@@ -96,0 +102,0 @@

@@ -89,5 +89,11 @@ import { z } from 'zod';

durationMs: z.number(),
url: z.string()
url: z.string(),
error: z.object({
message: z.string(),
stack: z.string().optional(),
cause: z.string(),
code: z.string()
}).optional()
});
export { ApiSessionDataSchema, CmsSessionDataSchema, LogDataSchema, LogDataTopicSchema, LogDataTopics, RequestLoggerSchema };

@@ -324,2 +324,18 @@ import { z } from "zod";

url: z.ZodString;
error: z.ZodOptional<z.ZodObject<{
message: z.ZodString;
stack: z.ZodOptional<z.ZodString>;
cause: z.ZodString;
code: z.ZodString;
}, "strip", z.ZodTypeAny, {
code: string;
message: string;
cause: string;
stack?: string | undefined;
}, {
code: string;
message: string;
cause: string;
stack?: string | undefined;
}>>;
}, "strip", z.ZodTypeAny, {

@@ -331,2 +347,8 @@ path: string;

url: string;
error?: {
code: string;
message: string;
cause: string;
stack?: string | undefined;
} | undefined;
}, {

@@ -338,3 +360,9 @@ path: string;

url: string;
error?: {
code: string;
message: string;
cause: string;
stack?: string | undefined;
} | undefined;
}>;
export type RequestLogger = z.infer<typeof RequestLoggerSchema>;

3

dist/package.json
{
"name": "@nexeraprotocol/nexera-id-schemas",
"version": "1.4.2",
"version": "1.5.0",
"description": "",

@@ -26,2 +26,3 @@ "main": "dist/nexeraprotocol-nexera-id-schemas.cjs.js",

"generate-zod:IDScanPassport": "cat schemas/IDScanPassport.json | jq '.properties.credentialSubject' > schemas/IDScanPassport-credentialSubject.json && json-schema-to-zod -s ./schemas/IDScanPassport-credentialSubject.json -t ./src/compliance/vc-schemas/IDScanPassportCredentialSubjectSchema.ts --name IDScanPassportCredentialSubjectSchema",
"generate-schemas-ts": "./scripts/generate-schemas-ts.sh",
"prepare:release": "sed -i '8d' package.json",

@@ -28,0 +29,0 @@ "prepare:release:mac": "sed -i '' '8d' package.json",

{
"name": "@nexeraprotocol/nexera-id-schemas",
"version": "1.4.2",
"version": "1.5.0",
"description": "",

@@ -71,2 +71,3 @@ "main": "dist/nexeraprotocol-nexera-id-schemas.cjs.js",

"generate-zod:IDScanPassport": "cat schemas/IDScanPassport.json | jq '.properties.credentialSubject' > schemas/IDScanPassport-credentialSubject.json && json-schema-to-zod -s ./schemas/IDScanPassport-credentialSubject.json -t ./src/compliance/vc-schemas/IDScanPassportCredentialSubjectSchema.ts --name IDScanPassportCredentialSubjectSchema",
"generate-schemas-ts": "./scripts/generate-schemas-ts.sh",
"prepare:release": "sed -i '8d' package.json",

@@ -73,0 +74,0 @@ "prepare:release:mac": "sed -i '' '8d' package.json",

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