@fluxbase/sdk 2026.2.2 → 2026.2.3-rc.10
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/dist/index.d.cts +10 -5
- package/dist/index.d.ts +10 -5
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -2744,16 +2744,21 @@ interface SearchKnowledgeBaseResponse {
|
|
|
2744
2744
|
count: number;
|
|
2745
2745
|
query: string;
|
|
2746
2746
|
}
|
|
2747
|
+
/**
|
|
2748
|
+
* Individual service health status
|
|
2749
|
+
*/
|
|
2750
|
+
interface ServiceHealth {
|
|
2751
|
+
status: string;
|
|
2752
|
+
message?: string;
|
|
2753
|
+
latency_ms?: number;
|
|
2754
|
+
}
|
|
2747
2755
|
/**
|
|
2748
2756
|
* System health status response
|
|
2749
2757
|
*/
|
|
2750
2758
|
interface HealthResponse {
|
|
2751
2759
|
status: string;
|
|
2752
|
-
services:
|
|
2753
|
-
|
|
2754
|
-
realtime: boolean;
|
|
2755
|
-
};
|
|
2756
|
-
timestamp: string;
|
|
2760
|
+
services: Record<string, ServiceHealth>;
|
|
2761
|
+
timestamp?: string;
|
|
2757
2762
|
}
|
|
2758
2763
|
/**
|
|
2759
2764
|
* Storage bucket information (admin API)
|
package/dist/index.d.ts
CHANGED
|
@@ -2744,16 +2744,21 @@ interface SearchKnowledgeBaseResponse {
|
|
|
2744
2744
|
count: number;
|
|
2745
2745
|
query: string;
|
|
2746
2746
|
}
|
|
2747
|
+
/**
|
|
2748
|
+
* Individual service health status
|
|
2749
|
+
*/
|
|
2750
|
+
interface ServiceHealth {
|
|
2751
|
+
status: string;
|
|
2752
|
+
message?: string;
|
|
2753
|
+
latency_ms?: number;
|
|
2754
|
+
}
|
|
2747
2755
|
/**
|
|
2748
2756
|
* System health status response
|
|
2749
2757
|
*/
|
|
2750
2758
|
interface HealthResponse {
|
|
2751
2759
|
status: string;
|
|
2752
|
-
services:
|
|
2753
|
-
|
|
2754
|
-
realtime: boolean;
|
|
2755
|
-
};
|
|
2756
|
-
timestamp: string;
|
|
2760
|
+
services: Record<string, ServiceHealth>;
|
|
2761
|
+
timestamp?: string;
|
|
2757
2762
|
}
|
|
2758
2763
|
/**
|
|
2759
2764
|
* Storage bucket information (admin API)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluxbase/sdk",
|
|
3
|
-
"version": "2026.2.
|
|
3
|
+
"version": "2026.2.3-rc.10",
|
|
4
4
|
"description": "Official TypeScript SDK for Fluxbase - Backend as a Service",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"cross-fetch": "^4.1.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"esbuild": ">=0.27.
|
|
63
|
+
"esbuild": ">=0.27.3"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
66
66
|
"esbuild": {
|
|
@@ -68,18 +68,18 @@
|
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@types/node": "^24.10.
|
|
71
|
+
"@types/node": "^24.10.13",
|
|
72
72
|
"@vitest/coverage-v8": "^4.0.18",
|
|
73
73
|
"docusaurus-plugin-typedoc": "^1.4.2",
|
|
74
|
-
"esbuild": "^0.27.
|
|
74
|
+
"esbuild": "^0.27.3",
|
|
75
75
|
"ts-node": "^10.9.2",
|
|
76
76
|
"tsup": "^8.5.1",
|
|
77
|
-
"typedoc": "^0.28.
|
|
78
|
-
"typedoc-plugin-markdown": "^4.
|
|
77
|
+
"typedoc": "^0.28.17",
|
|
78
|
+
"typedoc-plugin-markdown": "^4.10.0",
|
|
79
79
|
"typescript": "^5.9.3",
|
|
80
80
|
"vitest": "^4.0.18"
|
|
81
81
|
},
|
|
82
82
|
"engines": {
|
|
83
|
-
"node": ">=24.13.
|
|
83
|
+
"node": ">=24.13.1"
|
|
84
84
|
}
|
|
85
85
|
}
|