@fluxbase/sdk 2026.2.4 → 2026.2.6

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 CHANGED
@@ -2960,19 +2960,15 @@ interface UpdateTableExportSyncConfig {
2960
2960
  include_indexes?: boolean;
2961
2961
  }
2962
2962
  /**
2963
- * Individual service health status
2964
- */
2965
- interface ServiceHealth {
2966
- status: string;
2967
- message?: string;
2968
- latency_ms?: number;
2969
- }
2970
- /**
2971
- * System health status response
2963
+ * System health status response from public /health endpoint
2964
+ * Services are represented as booleans indicating availability
2972
2965
  */
2973
2966
  interface HealthResponse {
2974
2967
  status: string;
2975
- services: Record<string, ServiceHealth>;
2968
+ services: {
2969
+ database: boolean;
2970
+ realtime: boolean;
2971
+ };
2976
2972
  timestamp?: string;
2977
2973
  }
2978
2974
  /**
package/dist/index.d.ts CHANGED
@@ -2960,19 +2960,15 @@ interface UpdateTableExportSyncConfig {
2960
2960
  include_indexes?: boolean;
2961
2961
  }
2962
2962
  /**
2963
- * Individual service health status
2964
- */
2965
- interface ServiceHealth {
2966
- status: string;
2967
- message?: string;
2968
- latency_ms?: number;
2969
- }
2970
- /**
2971
- * System health status response
2963
+ * System health status response from public /health endpoint
2964
+ * Services are represented as booleans indicating availability
2972
2965
  */
2973
2966
  interface HealthResponse {
2974
2967
  status: string;
2975
- services: Record<string, ServiceHealth>;
2968
+ services: {
2969
+ database: boolean;
2970
+ realtime: boolean;
2971
+ };
2976
2972
  timestamp?: string;
2977
2973
  }
2978
2974
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluxbase/sdk",
3
- "version": "2026.2.4",
3
+ "version": "2026.2.6",
4
4
  "description": "Official TypeScript SDK for Fluxbase - Backend as a Service",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -68,7 +68,7 @@
68
68
  }
69
69
  },
70
70
  "devDependencies": {
71
- "@types/node": "^24.10.14",
71
+ "@types/node": "^24.10.15",
72
72
  "@vitest/coverage-v8": "^4.0.18",
73
73
  "docusaurus-plugin-typedoc": "^1.4.2",
74
74
  "esbuild": "^0.27.3",
@@ -81,5 +81,8 @@
81
81
  },
82
82
  "engines": {
83
83
  "node": ">=24.14.0"
84
+ },
85
+ "optionalDependencies": {
86
+ "@rollup/rollup-darwin-arm64": "^4.59.0"
84
87
  }
85
88
  }