npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@autoweb/domain-models

v1.0.21

Published

Domain models for AutoWeb Desktop - centralized type definitions

Readme

Floweb Domain Models

A professional domain model package for Floweb Desktop, providing centralized type definitions and schemas for both frontend and backend applications.

Overview

This package contains JSON Schema definitions that serve as the single source of truth for all domain objects in the Floweb ecosystem. The schemas are used to generate type-safe interfaces for TypeScript and Pydantic models for Python, ensuring consistency across the entire application stack.

Features

  • Single Source of Truth: All domain models defined in JSON Schema
  • Type Safety: Auto-generated TypeScript interfaces and Python models
  • Cross-Language Consistency: Guaranteed compatibility between frontend and backend
  • Version Control: Semantic versioning for model changes
  • Documentation: Auto-generated documentation from schemas

Domain Models

Core Models

  • Flow: Complete automation flow definitions with actions, edges, and variables
  • Performance Test: Load testing configurations and results
  • Action Configurations: 40+ action types for automation workflows
  • Environment: Environment and global variable management

Key Components

  • Actions: Click, Input, Navigate, Wait, API calls, Database operations, etc.
  • Variables: Flow parameters, environment variables, global variables
  • Results: Execution results, performance metrics, test outcomes
  • Configuration: Authentication, thresholds, timing, and other settings

Usage

TypeScript

import { Flow, PerformanceTest, Environment } from '@floweb/domain-models';

// Type-safe usage
const flow: Flow = {
  id: 'flow-123',
  name: 'My Automation Flow',
  actions: [...],
  // ... fully typed
};

Python

from floweb_domain_models import Flow, PerformanceTest, Environment

# Pydantic models with validation
flow = Flow(
    id="flow-123",
    name="My Automation Flow",
    actions=[...]
)

Development

Schema Validation

All schemas are validated against JSON Schema Draft 2020-12 specification.

Push the changes and update the npm package version

npm version patch npm publish

Code Generation

  • TypeScript: Generated using json-schema-to-typescript
  • Python: Generated using datamodel-code-generator

Testing

Cross-language validation ensures generated models match schema expectations.

Schema Structure

domain-models/
├── schemas/           # JSON Schema definitions
│   ├── flow.json
│   ├── performance-test.json
│   ├── action-configs.json
│   └── environment.json
├── types/            # Generated type definitions
├── examples/         # Sample data
└── docs/            # Generated documentations

Contributing

  1. Modify schemas in the schemas/ directory
  2. Run code generation scripts
  3. Update tests and examples
  4. Ensure cross-language compatibility

License

Copyright 2024 Floweb. All rights reserved.