New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

anyonecandesign-types

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anyonecandesign-types - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

26

dist/index.d.ts

@@ -8,2 +8,12 @@ export type DatabaseResource<T = unknown> = T & {

};
export type Organization = DatabaseResource<{
name: string;
memberUserIds: string[];
administratorUserIds: string[];
}>;
export type OrganizationInvitation = DatabaseResource<{
email: string;
organizationId: string;
acceptedAt: string;
}>;
export type User = DatabaseResource<{

@@ -27,10 +37,2 @@ email: string;

}>;
export type RevisionFile = {
path: string;
content: string;
};
export type RevisionImplicitFile = {
path: string;
type: 'shadcn';
};
export type Email = DatabaseResource<{

@@ -46,1 +48,9 @@ to: string;

export type ProjectStatus = 'prompting' | 'building' | 'deploying' | 'done';
export type RevisionFile = {
path: string;
content: string;
};
export type RevisionImplicitFile = {
path: string;
type: 'shadcn';
};
{
"name": "anyonecandesign-types",
"version": "0.0.0",
"version": "0.0.1",
"description": "TypeScript types for anyonecandesign.com",

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

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