0.0.1 • Published 8 months ago

@assetval/address-history v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

AddressHistory

This is the Veritas AddressHistory Schema workspace.

Installation

yarn add @assetval/addresshistory

Usage

As a Class (Front End)

import { AddressHistory } from '@assetval/addresshistory';

const addresshistory = new AddressHistory();

As Schema (Back End)

import { {AddressHistory}Schema, AddressHistory } from '@assetval/addresshistory';
import { Model } from 'mongoose';

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

As Validation (Back End)

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

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

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

License

MIT

Authors

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