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

@doctadevs/types

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@doctadevs/types - npm Package Compare versions

Comparing version 0.0.30 to 0.0.31

dist/types/gender.d.ts

2

dist/index.d.ts
export * from './types/person';
export * from './types/tag';
export * from './types/gender';
export * from './types/pronoun';
export * from './types/discount-rule';

@@ -4,0 +6,0 @@ export * from './types/discount';

@@ -16,2 +16,4 @@ "use strict";

__exportStar(require("./types/tag"), exports);
__exportStar(require("./types/gender"), exports);
__exportStar(require("./types/pronoun"), exports);
// Entities

@@ -18,0 +20,0 @@ __exportStar(require("./types/discount-rule"), exports);

5

dist/types/person.d.ts

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

import { Gender } from './gender';
import { Pronoun } from './pronoun';
export declare type Person = {

@@ -7,4 +9,5 @@ id?: string;

email: string;
gender: string;
gender: Gender;
pronoun: Pronoun;
documentNumber: string;
};
// Generics
export * from './types/person';
export * from './types/tag';
export * from './types/gender';
export * from './types/pronoun';

@@ -5,0 +7,0 @@ // Entities

{
"name": "@doctadevs/types",
"version": "0.0.30",
"version": "0.0.31",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "types": "dist/index.d.ts",

export type DiscountRule = {
id: string;
discountId: string;
isCoupon?: boolean;
trainingCohortId?: string;
trainingTypeId?: string;
paymentMethodId?: string;
installments?: number;
forAlumni?: boolean;
studentDocumentNumber?: string;
modifierPercentage?: number;
modifierFixedAmount?: number;
};
id: string;
discountId: string;
isCoupon?: boolean;
trainingCohortId?: string;
trainingTypeId?: string;
paymentMethodId?: string;
installments?: number;
forAlumni?: boolean;
studentDocumentNumber?: string;
modifierPercentage?: number;
modifierFixedAmount?: number;
};

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

import { Gender } from './gender';
import { Pronoun } from './pronoun';
export type Person = {

@@ -7,4 +10,5 @@ id?: string;

email: string;
gender: string;
gender: Gender;
pronoun: Pronoun;
documentNumber: string;
};

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