Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

feat: rewrite of typescript client for new API #54

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "getindexify",
"version": "0.0.75",
"version": "0.1.5",
"description": "This is the TypeScript client for interacting with the Indexify service.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
3 changes: 1 addition & 2 deletions src/ExtractionGraph.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { IExtractionPolicy } from "./types";
import yaml from "yaml";

class ExtractionGraph {
constructor(
public readonly name: string,
public readonly extraction_policies: IExtractionPolicy[],
public readonly extraction_policies: any[],
public readonly id?: string,
public readonly namespace?: string
) {}
Loading