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

@coavmi/microservices-common

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coavmi/microservices-common - npm Package Compare versions

Comparing version 1.0.21 to 1.0.22

10

lib/cjs/pilot-licence/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PILOT_LICENCE_DELETED = exports.PILOT_LICENCE_FETCHED = exports.PILOT_LICENCE_UPDATED = exports.PILOT_LICENCE_CREATED = void 0;
exports.PILOT_LICENCE_CREATED = 'pilotLicence.created';
exports.PILOT_LICENCE_UPDATED = 'pilotLicence.updated';
exports.PILOT_LICENCE_FETCHED = 'pilotLicence.fetched';
exports.PILOT_LICENCE_DELETED = 'pilotLicence.deleted';
exports.PILOTRATING_DELETED = exports.PILOTRATING_FETCHED = exports.PILOTRATING_UPDATED = exports.PILOTRATING_CREATED = void 0;
exports.PILOTRATING_CREATED = 'pilotRating.created';
exports.PILOTRATING_UPDATED = 'pilotRating.updated';
exports.PILOTRATING_FETCHED = 'pilotRating.fetched';
exports.PILOTRATING_DELETED = 'pilotRating.deleted';
import { Base } from '../base';
export declare const PILOT_LICENCE_CREATED = "pilotLicence.created";
export declare const PILOT_LICENCE_UPDATED = "pilotLicence.updated";
export declare const PILOT_LICENCE_FETCHED = "pilotLicence.fetched";
export declare const PILOT_LICENCE_DELETED = "pilotLicence.deleted";
export interface PilotLicenceCreatedParams extends Base {
typeId: string;
type?: JSON;
export declare const PILOTRATING_CREATED = "pilotRating.created";
export declare const PILOTRATING_UPDATED = "pilotRating.updated";
export declare const PILOTRATING_FETCHED = "pilotRating.fetched";
export declare const PILOTRATING_DELETED = "pilotRating.deleted";
export interface PilotRatingCreatedParams extends Base {
typeId?: string;
userId?: string;
}
export interface PilotLicenceFetchedParams extends PilotLicenceCreatedParams {
export interface PilotRatingFetchedParams extends PilotRatingCreatedParams {
}
export interface PilotLicenceUpdatedParams extends PilotLicenceCreatedParams {
export interface PilotRatingUpdatedParams extends PilotRatingCreatedParams {
}
export interface PilotLicenceDeletedParams extends PilotLicenceCreatedParams {
export interface PilotRatingDeletedParams extends PilotRatingCreatedParams {
}
//# sourceMappingURL=index.d.ts.map

@@ -1,3 +0,3 @@

import { Base } from "../base";
import { CompaniesCreatedParams } from "./companies";
import { Base } from '../base';
import { CompaniesCreatedParams } from './companies';
export declare const USERS_CREATED = "users.created";

@@ -12,2 +12,3 @@ export declare const USERS_UPDATED = "users.updated";

export declare const USERS_TESTED = "users.tested";
export declare const USERS_GET_BY_ID = "users.getById";
export interface UsersCreatedParams extends Base {

@@ -33,2 +34,5 @@ email?: string;

}
export interface UsersGetByIdParams {
id: string;
}
export interface UsersUpdatedParams extends UsersCreatedParams {

@@ -35,0 +39,0 @@ }

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.USERS_TESTED = exports.USERS_DELETED = exports.USERS_UNVERIFIED = exports.USERS_FORGOT_PASSWORD_REQUESTED = exports.USERS_VERIFY_REQUESTED_EMAIL = exports.USERS_VERIFY_REQUESTED = exports.USERS_VERIFIED = exports.USERS_UPDATED = exports.USERS_CREATED = void 0;
exports.USERS_CREATED = "users.created";
exports.USERS_UPDATED = "users.updated";
exports.USERS_VERIFIED = "users.verified";
exports.USERS_VERIFY_REQUESTED = "users.verifyRequested";
exports.USERS_VERIFY_REQUESTED_EMAIL = "users.verifyRequestedEmail";
exports.USERS_FORGOT_PASSWORD_REQUESTED = "users.forgotPasswordRequested";
exports.USERS_UNVERIFIED = "users.unverified";
exports.USERS_DELETED = "users.deleted";
exports.USERS_TESTED = "users.tested";
exports.USERS_GET_BY_ID = exports.USERS_TESTED = exports.USERS_DELETED = exports.USERS_UNVERIFIED = exports.USERS_FORGOT_PASSWORD_REQUESTED = exports.USERS_VERIFY_REQUESTED_EMAIL = exports.USERS_VERIFY_REQUESTED = exports.USERS_VERIFIED = exports.USERS_UPDATED = exports.USERS_CREATED = void 0;
exports.USERS_CREATED = 'users.created';
exports.USERS_UPDATED = 'users.updated';
exports.USERS_VERIFIED = 'users.verified';
exports.USERS_VERIFY_REQUESTED = 'users.verifyRequested';
exports.USERS_VERIFY_REQUESTED_EMAIL = 'users.verifyRequestedEmail';
exports.USERS_FORGOT_PASSWORD_REQUESTED = 'users.forgotPasswordRequested';
exports.USERS_UNVERIFIED = 'users.unverified';
exports.USERS_DELETED = 'users.deleted';
exports.USERS_TESTED = 'users.tested';
exports.USERS_GET_BY_ID = 'users.getById';

@@ -1,4 +0,4 @@

export const PILOT_LICENCE_CREATED = 'pilotLicence.created';
export const PILOT_LICENCE_UPDATED = 'pilotLicence.updated';
export const PILOT_LICENCE_FETCHED = 'pilotLicence.fetched';
export const PILOT_LICENCE_DELETED = 'pilotLicence.deleted';
export const PILOTRATING_CREATED = 'pilotRating.created';
export const PILOTRATING_UPDATED = 'pilotRating.updated';
export const PILOTRATING_FETCHED = 'pilotRating.fetched';
export const PILOTRATING_DELETED = 'pilotRating.deleted';
import { Base } from '../base';
export declare const PILOT_LICENCE_CREATED = "pilotLicence.created";
export declare const PILOT_LICENCE_UPDATED = "pilotLicence.updated";
export declare const PILOT_LICENCE_FETCHED = "pilotLicence.fetched";
export declare const PILOT_LICENCE_DELETED = "pilotLicence.deleted";
export interface PilotLicenceCreatedParams extends Base {
typeId: string;
type?: JSON;
export declare const PILOTRATING_CREATED = "pilotRating.created";
export declare const PILOTRATING_UPDATED = "pilotRating.updated";
export declare const PILOTRATING_FETCHED = "pilotRating.fetched";
export declare const PILOTRATING_DELETED = "pilotRating.deleted";
export interface PilotRatingCreatedParams extends Base {
typeId?: string;
userId?: string;
}
export interface PilotLicenceFetchedParams extends PilotLicenceCreatedParams {
export interface PilotRatingFetchedParams extends PilotRatingCreatedParams {
}
export interface PilotLicenceUpdatedParams extends PilotLicenceCreatedParams {
export interface PilotRatingUpdatedParams extends PilotRatingCreatedParams {
}
export interface PilotLicenceDeletedParams extends PilotLicenceCreatedParams {
export interface PilotRatingDeletedParams extends PilotRatingCreatedParams {
}
//# sourceMappingURL=index.d.ts.map

@@ -1,3 +0,3 @@

import { Base } from "../base";
import { CompaniesCreatedParams } from "./companies";
import { Base } from '../base';
import { CompaniesCreatedParams } from './companies';
export declare const USERS_CREATED = "users.created";

@@ -12,2 +12,3 @@ export declare const USERS_UPDATED = "users.updated";

export declare const USERS_TESTED = "users.tested";
export declare const USERS_GET_BY_ID = "users.getById";
export interface UsersCreatedParams extends Base {

@@ -33,2 +34,5 @@ email?: string;

}
export interface UsersGetByIdParams {
id: string;
}
export interface UsersUpdatedParams extends UsersCreatedParams {

@@ -35,0 +39,0 @@ }

@@ -1,9 +0,10 @@

export const USERS_CREATED = "users.created";
export const USERS_UPDATED = "users.updated";
export const USERS_VERIFIED = "users.verified";
export const USERS_VERIFY_REQUESTED = "users.verifyRequested";
export const USERS_VERIFY_REQUESTED_EMAIL = "users.verifyRequestedEmail";
export const USERS_FORGOT_PASSWORD_REQUESTED = "users.forgotPasswordRequested";
export const USERS_UNVERIFIED = "users.unverified";
export const USERS_DELETED = "users.deleted";
export const USERS_TESTED = "users.tested";
export const USERS_CREATED = 'users.created';
export const USERS_UPDATED = 'users.updated';
export const USERS_VERIFIED = 'users.verified';
export const USERS_VERIFY_REQUESTED = 'users.verifyRequested';
export const USERS_VERIFY_REQUESTED_EMAIL = 'users.verifyRequestedEmail';
export const USERS_FORGOT_PASSWORD_REQUESTED = 'users.forgotPasswordRequested';
export const USERS_UNVERIFIED = 'users.unverified';
export const USERS_DELETED = 'users.deleted';
export const USERS_TESTED = 'users.tested';
export const USERS_GET_BY_ID = 'users.getById';
{
"name": "@coavmi/microservices-common",
"version": "1.0.21",
"version": "1.0.22",
"main": "./lib/cjs/index.js",

@@ -5,0 +5,0 @@ "_main": "index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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