3 Commits
1.1.1 ... 1.1.3

Author SHA1 Message Date
1f73b2b509 Update package.json 2025-05-28 21:02:51 -03:00
f8e0710aca Update index.ts 2025-05-28 21:02:49 -03:00
2f3425a58a Update package.json 2025-05-28 20:57:32 -03:00
2 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "tribufu", "name": "tribufu",
"version": "1.1.1", "version": "1.1.3",
"description": "Tribufu JS SDK", "description": "Tribufu JS SDK",
"repository": "https://github.com/tribufu/tribufu-js", "repository": "https://github.com/tribufu/tribufu-js",
"author": "Tribufu <contact@Tribufu.com>", "author": "Tribufu <contact@Tribufu.com>",

View File

@@ -2,11 +2,15 @@
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
import { Configuration } from "./runtime"; import { Configuration } from "./runtime";
import { JavaScriptRuntime } from "./node";
import { TRIBUFU_API_URL, TRIBUFU_VERSION } from "./constants"; import { TRIBUFU_API_URL, TRIBUFU_VERSION } from "./constants";
import { TribufuGeneratedApi } from "./apis/TribufuGeneratedApi"; import { TribufuGeneratedApi } from "./apis/TribufuGeneratedApi";
import { JavaScriptRuntime } from "./node";
export * from "./apis";
export * from "./constants"; export * from "./constants";
export * from "./models";
export * from "./node";
export * from "./runtime";
export * from "./singletion"; export * from "./singletion";
/** /**