@sylphx/sdk 0.10.3 → 0.10.4

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.
@@ -455,6 +455,8 @@ interface AccessTokenPayload {
455
455
  email_verified: boolean;
456
456
  app_id: string;
457
457
  role?: string;
458
+ /** Project session id when the token was minted from a BaaS auth session. */
459
+ sid?: string;
458
460
  iat: number;
459
461
  exp: number;
460
462
  }
@@ -1820,7 +1822,7 @@ declare function getEngagementLeaderboard(options: AuthenticatedFetchOptions & {
1820
1822
  interface DatabaseConnectionInfo {
1821
1823
  connectionString: string;
1822
1824
  databaseName: string;
1823
- roleName: string | null;
1825
+ roleName: string;
1824
1826
  status: 'provisioning' | 'ready' | 'suspended' | 'failed' | 'deleted';
1825
1827
  }
1826
1828
  /** Database status info */