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

@assetval/confirmation

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@assetval/confirmation

AssetVal's confirmation workspace

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
0
Weekly downloads
 
Created
Source

Confirmation

This is the Veritas Confirmation Schema workspace.

Installation

yarn add @assetval/confirmation

Usage

As a Class (Front End)

import { Confirmation } from '@assetval/confirmation';

const confirmation = new Confirmation();

As Schema (Back End)

import { {Confirmation}Schema, Confirmation } from '@assetval/confirmation';
import { Model } from 'mongoose';

export const {Confirmation}Model = model<Confirmation>('{confirmation}es', {Confirmation}Schema);

As Validation (Back End)

import { {Confirmation}ValidationSchema } from '@assetval/confirmation';
import { z } from 'zod';
import { MagikRoutes } from '../middleware/RouterManager.js';

const ProfileRoute = MagikRoutes.getRouter('/profile');

ProfileRoute.post('/updateConfirmation', {
  auth: 'ensureAuthenticated',
  validationSchema: z.object({
    body: {Confirmation}ValidationSchema
  }),
  route: async (req, res): Promise<void> => {
    // Do something
  }
});

License

MIT

Authors

  • Abourass

Contributing

Download the Schema repository and make sure you have the following installed:

  • asdf
  • NodeJS (ASDF)
  • PNPM (Corepack / Node / ASDF)
  • NX

Then run the following commands:

pnpm install

FAQs

Package last updated on 30 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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