@syrtis-ai/syrtis-javascript-client 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # syrtis_javascript_client
2
+
3
+ Version: 0.0.8
4
+
5
+ Syrtis JavaScript/TypeScript client
6
+
7
+ ## Table of Contents
8
+
9
+ - [Suite Signature](#suite-signature)
10
+
11
+
12
+ # About us
13
+
14
+ [Syrtis AI](https://syrtis.ai) helps organizations turn artificial intelligence from an idea into reliable, measurable systems. We are a team of engineers and practitioners focused on implementing AI services inside real businesses — from strategy and architecture to deployment, integration, and long-term operations. Our goal is simple: deliver AI that works in production, fits your constraints, and earns its keep.
15
+
16
+ We build practical solutions that connect to existing tools, data, and processes, with an emphasis on security, performance, and governance. Whether it’s automating workflows, enhancing decision-making, or creating new product capabilities, Syrtis AI designs implementations that are maintainable, scalable, and aligned with business outcomes — not demos.
17
+
18
+ Syrtis AI promotes a culture of rigor and responsibility. Every delivery reflects a commitment to clear engineering, transparent communication, and trustworthy AI practices, so teams can adopt, operate, and evolve their AI services with confidence.
19
+
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Syrtis Client
3
+ * Main entry point for the Syrtis JavaScript/TypeScript client
4
+ */
5
+ export declare class SyrtisClient {
6
+ private baseUrl;
7
+ constructor(baseUrl: string);
8
+ /**
9
+ * Get the base URL of the Syrtis instance
10
+ */
11
+ getBaseUrl(): string;
12
+ }
13
+ export default SyrtisClient;
package/dist/index.js ADDED
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ /**
3
+ * Syrtis Client
4
+ * Main entry point for the Syrtis JavaScript/TypeScript client
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.SyrtisClient = void 0;
8
+ class SyrtisClient {
9
+ constructor(baseUrl) {
10
+ this.baseUrl = baseUrl;
11
+ }
12
+ /**
13
+ * Get the base URL of the Syrtis instance
14
+ */
15
+ getBaseUrl() {
16
+ return this.baseUrl;
17
+ }
18
+ }
19
+ exports.SyrtisClient = SyrtisClient;
20
+ exports.default = SyrtisClient;
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@syrtis-ai/syrtis-javascript-client",
3
+ "version": "0.0.8",
4
+ "description": "Syrtis JavaScript/TypeScript client",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "prepublishOnly": "npm run build",
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": [
13
+ "syrtis",
14
+ "client"
15
+ ],
16
+ "author": "",
17
+ "license": "MIT",
18
+ "devDependencies": {
19
+ "typescript": "^5.0.0"
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "type": "module",
25
+ "publishConfig": {
26
+ "access": "public"
27
+ }
28
+ }