@aptly-as/types
Advanced tools
Comparing version 2.4.6 to 2.4.7
@@ -36,2 +36,3 @@ import { AptlyEmailType, AptlyProjectStatus } from '../enums/index.js'; | ||
paymentApp?: ID | AptlyAppSchema<ID, DATE> | null; | ||
invites?: AptlyProjectInviteSchema<ID, DATE>[]; | ||
created: DATE; | ||
@@ -98,3 +99,3 @@ } | ||
export type AptlyProjectNotify = AptlyProjectNotifySchema<string, string>; | ||
interface AptlyProjectNotifySchema<ID, DATE> { | ||
export interface AptlyProjectNotifySchema<ID, DATE> { | ||
_id: ID; | ||
@@ -112,2 +113,9 @@ user: AptlyUserSchema<ID, DATE> | ID; | ||
} | ||
export {}; | ||
export type AptlyProjectInvite = AptlyProjectInviteSchema<string, string>; | ||
export interface AptlyProjectInviteSchema<ID, DATE> { | ||
_id: ID; | ||
unit: ID; | ||
code: string; | ||
createdAt: DATE; | ||
createdBy: ID; | ||
} |
{ | ||
"name": "@aptly-as/types", | ||
"version": "2.4.6", | ||
"version": "2.4.7", | ||
"description": "Aptly types and enums", | ||
@@ -5,0 +5,0 @@ "type": "module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
107663
2884