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

@aphro/codegen-api

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aphro/codegen-api - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

8

CHANGELOG.md
# @aphro/codegen-api
## 0.0.9
### Patch Changes
- graphql support, 'create table if not exists' for easier bootstrapping, @databases connection support
- Updated dependencies
- @aphro/schema-api@0.0.9
## 0.0.8

@@ -4,0 +12,0 @@

4

lib/index.d.ts

@@ -9,2 +9,6 @@ export * from './CodegenFile.js';

};
export declare type GlobalStep = {
new (nodes: Node[], edges: Edge[], schemaFileName: string): CodegenStep;
accepts: (nodes: Node[], edges: Edge[]) => boolean;
};
//# sourceMappingURL=index.d.ts.map

4

package.json
{
"name": "@aphro/codegen-api",
"version": "0.0.8",
"version": "0.0.9",
"main": "lib/index.js",

@@ -12,3 +12,3 @@ "type": "module",

"dependencies": {
"@aphro/schema-api": "0.0.8"
"@aphro/schema-api": "0.0.9"
},

@@ -15,0 +15,0 @@ "devDependencies": {

export * from './CodegenFile.js';
export { default as CodegenStep } from './CodegenStep.js';
import CodegenStep from './CodegenStep.js';
import { Node, Edge } from '@aphro/schema-api';
import { Node, Edge, SchemaFile } from '@aphro/schema-api';

@@ -10,1 +10,6 @@ export type Step = {

};
export type GlobalStep = {
new (nodes: Node[], edges: Edge[], schemaFileName: string): CodegenStep;
accepts: (nodes: Node[], edges: Edge[]) => boolean;
};

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