0.0.2-alpha.5 • Published 11 months ago

@hdml/schemas v0.0.2-alpha.5

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
11 months ago

@hdml/schemas

The @hdml/schemas package is a part of the HDML-Utilities monorepo and provides TypeScript types generated by the FlatBuffers tool. These types define the HyperData object model, facilitating consistent data handling and transfer across the HDML ecosystem.

Features

  • FlatBuffers-based: Uses FlatBuffers to ensure efficient and compact serialization and deserialization of data.
  • TypeScript support: Provides strongly typed interfaces for the HyperData object model.
  • Automated updates: Types are auto-generated from FlatBuffers schemas during the build process, ensuring synchronization with the latest schema definitions.

Installation

To include @hdml/schemas in your project, install it using npm or yarn:

npm install @hdml/schemas
# or
yarn add @hdml/schemas

Usage

Import the generated types into your TypeScript project to leverage the HyperData object model:

import { HDOM } from "@hdml/types";
import { ConnectorTypesEnum } from "@hdml/schemas";
import { serialize, deserialize } from "@hdml/buffer";

const hdom: HDOM = {
  includes: [],
  connections: [
    {
      name: "",
      description: null,
      options: {
        connector: ConnectorTypesEnum.Postgres,
        parameters: {
          host: "",
          user: "",
          password: "",
          ssl: false,
        },
      },
    },
  ],
  models: [],
  frames: [],
};
const buf = serialize(hdom);
const struct = deserialize(buf);

Schema Compilation

The @hdml/schemas package is the target for FlatBuffers schema compilation. The schemas are maintained in a separate repository, HDML-Schemas, which is included in the monorepo as a git submodule. This structure ensures a clean separation of schema definitions and their generated outputs.

Development Workflow

  • Update schemas: Make necessary changes to the FlatBuffers schemas in the HDML-Schemas repository.
  • Remap commit: After updating the schemas, remap the corresponding commit from the HDML-Schemas repository to the monorepo by updating the git submodule reference.
  • Compile schemas: Run the build process in the monorepo to generate updated TypeScript types from the schemas.
  • Use updated types: The latest types are now available in the @hdml/schemas package for use in your projects.

License

Apache License Version 2.0

0.0.2-alpha.0

12 months ago

0.0.2-alpha.2

12 months ago

0.0.2-alpha.1

12 months ago

0.0.2-alpha.4

12 months ago

0.0.2-alpha.3

12 months ago

0.0.2-alpha.5

11 months ago

0.0.1-alpha.8

1 year ago

0.0.1-alpha.9

1 year ago

0.0.1-alpha.6

1 year ago

0.0.1-alpha.7

1 year ago

0.0.1-alpha.4

1 year ago

0.0.1-alpha.5

1 year ago

0.0.1-alpha.2

1 year ago

0.0.1-alpha.3

1 year ago

0.0.1-alpha.1

1 year ago

0.0.1-alpha.0

1 year ago

0.0.0

1 year ago

0.0.0-alpha.1

1 year ago

0.0.0-alpha.0

1 year ago