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.8.26 to 1.8.27

2

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

@@ -26,3 +26,3 @@ 'use strict';

var CmsSessionData = zod.z.object({
projectApiKey: zod.z.string().describe("Customer project token, stored in CMS"),
projectApiKey: zod.z.string().describe("Customer project token, stored in CMS").nullish(),
projectId: zod.z.string().describe("The ID of the project"),

@@ -29,0 +29,0 @@ organizationId: zod.z.string().describe("The ID of the organization"),

@@ -26,3 +26,3 @@ 'use strict';

var CmsSessionData = zod.z.object({
projectApiKey: zod.z.string().describe("Customer project token, stored in CMS"),
projectApiKey: zod.z.string().describe("Customer project token, stored in CMS").nullish(),
projectId: zod.z.string().describe("The ID of the project"),

@@ -29,0 +29,0 @@ organizationId: zod.z.string().describe("The ID of the organization"),

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

var CmsSessionData = z.object({
projectApiKey: z.string().describe("Customer project token, stored in CMS"),
projectApiKey: z.string().describe("Customer project token, stored in CMS").nullish(),
projectId: z.string().describe("The ID of the project"),

@@ -27,0 +27,0 @@ organizationId: z.string().describe("The ID of the organization"),

@@ -47,3 +47,3 @@ import { z } from "zod";

export declare const CmsSessionData: z.ZodObject<{
projectApiKey: z.ZodString;
projectApiKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
projectId: z.ZodString;

@@ -71,6 +71,6 @@ organizationId: z.ZodString;

}, "strip", z.ZodTypeAny, {
projectApiKey: string;
projectId: string;
organizationId: string;
storeSharedVC: boolean;
projectApiKey?: string | null | undefined;
host?: string | null | undefined;

@@ -85,5 +85,5 @@ verificationMode?: "full_verification" | "sandbox" | null | undefined;

}, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
host?: string | null | undefined;

@@ -113,3 +113,3 @@ verificationMode?: "full_verification" | "sandbox" | null | undefined;

cmsInfo: z.ZodOptional<z.ZodObject<{
projectApiKey: z.ZodString;
projectApiKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
projectId: z.ZodString;

@@ -137,6 +137,6 @@ organizationId: z.ZodString;

}, "strip", z.ZodTypeAny, {
projectApiKey: string;
projectId: string;
organizationId: string;
storeSharedVC: boolean;
projectApiKey?: string | null | undefined;
host?: string | null | undefined;

@@ -151,5 +151,5 @@ verificationMode?: "full_verification" | "sandbox" | null | undefined;

}, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
host?: string | null | undefined;

@@ -173,6 +173,6 @@ verificationMode?: "full_verification" | "sandbox" | null | undefined;

cmsInfo?: {
projectApiKey: string;
projectId: string;
organizationId: string;
storeSharedVC: boolean;
projectApiKey?: string | null | undefined;
host?: string | null | undefined;

@@ -195,5 +195,5 @@ verificationMode?: "full_verification" | "sandbox" | null | undefined;

cmsInfo?: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
host?: string | null | undefined;

@@ -440,3 +440,3 @@ verificationMode?: "full_verification" | "sandbox" | null | undefined;

cmsSessionData: z.ZodObject<Pick<{
projectApiKey: z.ZodString;
projectApiKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
projectId: z.ZodString;

@@ -464,9 +464,9 @@ organizationId: z.ZodString;

}, "projectApiKey" | "projectId" | "organizationId">, "strip", z.ZodTypeAny, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
}, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
}>;

@@ -476,5 +476,5 @@ internalCall: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -484,5 +484,5 @@ internalCall: boolean;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -489,0 +489,0 @@ internalCall?: boolean | undefined;

@@ -236,3 +236,3 @@ import { z } from "zod";

cmsSessionData: z.ZodObject<Pick<{
projectApiKey: z.ZodString;
projectApiKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
projectId: z.ZodString;

@@ -260,9 +260,9 @@ organizationId: z.ZodString;

}, "projectApiKey" | "projectId" | "organizationId">, "strip", z.ZodTypeAny, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
}, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
}>;

@@ -272,5 +272,5 @@ internalCall: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -280,5 +280,5 @@ internalCall: boolean;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -309,5 +309,5 @@ internalCall?: boolean | undefined;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -338,5 +338,5 @@ internalCall: boolean;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -343,0 +343,0 @@ internalCall?: boolean | undefined;

@@ -116,3 +116,3 @@ import { z } from "zod";

cmsSessionData: z.ZodObject<Pick<{
projectApiKey: z.ZodString;
projectApiKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
projectId: z.ZodString;

@@ -140,9 +140,9 @@ organizationId: z.ZodString;

}, "projectApiKey" | "projectId" | "organizationId">, "strip", z.ZodTypeAny, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
}, {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
}>;

@@ -152,5 +152,5 @@ internalCall: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -160,5 +160,5 @@ internalCall: boolean;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -180,5 +180,5 @@ internalCall?: boolean | undefined;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -200,5 +200,5 @@ internalCall: boolean;

cmsSessionData: {
projectApiKey: string;
projectId: string;
organizationId: string;
projectApiKey?: string | null | undefined;
};

@@ -205,0 +205,0 @@ internalCall?: boolean | undefined;

{
"name": "@nexeraprotocol/nexera-id-schemas",
"version": "1.8.26",
"version": "1.8.27",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/nexeraprotocol-nexera-id-schemas.cjs.js",

{
"name": "@nexeraprotocol/nexera-id-schemas",
"version": "1.8.26",
"version": "1.8.27",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/nexeraprotocol-nexera-id-schemas.cjs.js",

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