@fluxbase/sdk 2026.2.7 → 2026.2.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/dist/index.d.cts CHANGED
@@ -670,6 +670,23 @@ interface OAuthLogoutResponse {
670
670
  /** Warning message if something failed but logout still proceeded */
671
671
  warning?: string;
672
672
  }
673
+ /**
674
+ * SAML Identity Provider configuration
675
+ */
676
+ interface SAMLProvider {
677
+ /** Unique provider identifier (slug name) */
678
+ id: string;
679
+ /** Display name of the provider */
680
+ name: string;
681
+ /** Whether the provider is enabled */
682
+ enabled: boolean;
683
+ /** Provider's entity ID (used for SP metadata) */
684
+ entity_id: string;
685
+ /** SSO endpoint URL */
686
+ sso_url: string;
687
+ /** Single Logout endpoint URL (optional) */
688
+ slo_url?: string;
689
+ }
673
690
  /**
674
691
  * Response containing list of SAML providers
675
692
  */
@@ -1743,26 +1760,9 @@ interface OAuthProviderPublic {
1743
1760
  authorize_url: string;
1744
1761
  }
1745
1762
  /**
1746
- * SAML Identity Provider configuration
1763
+ * Public SAML provider information (for auth config response)
1747
1764
  */
1748
- interface SAMLProvider {
1749
- /** Unique provider identifier (slug name) */
1750
- id: string;
1751
- /** Display name of the provider */
1752
- name: string;
1753
- /** Whether the provider is enabled */
1754
- enabled: boolean;
1755
- /** Provider's entity ID (used for SP metadata) */
1756
- entity_id: string;
1757
- /** SSO endpoint URL */
1758
- sso_url: string;
1759
- /** Single Logout endpoint URL (optional) */
1760
- slo_url?: string;
1761
- }
1762
- /**
1763
- * Public SAML provider information
1764
- */
1765
- interface SAMLProvider {
1765
+ interface SAMLProviderInfo {
1766
1766
  /** Provider identifier */
1767
1767
  provider: string;
1768
1768
  /** Display name for UI */
@@ -1796,7 +1796,7 @@ interface AuthConfig {
1796
1796
  /** Available OAuth providers for authentication */
1797
1797
  oauth_providers: OAuthProviderPublic[];
1798
1798
  /** Available SAML providers for enterprise SSO */
1799
- saml_providers: SAMLProvider[];
1799
+ saml_providers: SAMLProviderInfo[];
1800
1800
  /** CAPTCHA configuration */
1801
1801
  captcha: CaptchaConfig | null;
1802
1802
  }
package/dist/index.d.ts CHANGED
@@ -670,6 +670,23 @@ interface OAuthLogoutResponse {
670
670
  /** Warning message if something failed but logout still proceeded */
671
671
  warning?: string;
672
672
  }
673
+ /**
674
+ * SAML Identity Provider configuration
675
+ */
676
+ interface SAMLProvider {
677
+ /** Unique provider identifier (slug name) */
678
+ id: string;
679
+ /** Display name of the provider */
680
+ name: string;
681
+ /** Whether the provider is enabled */
682
+ enabled: boolean;
683
+ /** Provider's entity ID (used for SP metadata) */
684
+ entity_id: string;
685
+ /** SSO endpoint URL */
686
+ sso_url: string;
687
+ /** Single Logout endpoint URL (optional) */
688
+ slo_url?: string;
689
+ }
673
690
  /**
674
691
  * Response containing list of SAML providers
675
692
  */
@@ -1743,26 +1760,9 @@ interface OAuthProviderPublic {
1743
1760
  authorize_url: string;
1744
1761
  }
1745
1762
  /**
1746
- * SAML Identity Provider configuration
1763
+ * Public SAML provider information (for auth config response)
1747
1764
  */
1748
- interface SAMLProvider {
1749
- /** Unique provider identifier (slug name) */
1750
- id: string;
1751
- /** Display name of the provider */
1752
- name: string;
1753
- /** Whether the provider is enabled */
1754
- enabled: boolean;
1755
- /** Provider's entity ID (used for SP metadata) */
1756
- entity_id: string;
1757
- /** SSO endpoint URL */
1758
- sso_url: string;
1759
- /** Single Logout endpoint URL (optional) */
1760
- slo_url?: string;
1761
- }
1762
- /**
1763
- * Public SAML provider information
1764
- */
1765
- interface SAMLProvider {
1765
+ interface SAMLProviderInfo {
1766
1766
  /** Provider identifier */
1767
1767
  provider: string;
1768
1768
  /** Display name for UI */
@@ -1796,7 +1796,7 @@ interface AuthConfig {
1796
1796
  /** Available OAuth providers for authentication */
1797
1797
  oauth_providers: OAuthProviderPublic[];
1798
1798
  /** Available SAML providers for enterprise SSO */
1799
- saml_providers: SAMLProvider[];
1799
+ saml_providers: SAMLProviderInfo[];
1800
1800
  /** CAPTCHA configuration */
1801
1801
  captcha: CaptchaConfig | null;
1802
1802
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluxbase/sdk",
3
- "version": "2026.2.7",
3
+ "version": "2026.2.8",
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.11.0",
71
+ "@types/node": "^24.12.0",
72
72
  "@vitest/coverage-v8": "^4.0.18",
73
73
  "docusaurus-plugin-typedoc": "^1.4.2",
74
74
  "esbuild": "^0.27.3",