@superatomai/sdk-node 0.0.28 → 0.0.29

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.mts CHANGED
@@ -587,7 +587,7 @@ type CollectionOperation = 'getMany' | 'getOne' | 'query' | 'mutation' | 'update
587
587
  type CollectionHandler<TParams = any, TResult = any> = (params: TParams) => Promise<TResult> | TResult;
588
588
  type LLMProvider = 'anthropic' | 'groq' | 'gemini' | 'openai';
589
589
 
590
- type DatabaseType = 'postgresql' | 'mssql';
590
+ type DatabaseType = 'postgresql' | 'mssql' | 'snowflake' | 'mysql';
591
591
  interface SuperatomSDKConfig {
592
592
  url?: string;
593
593
  apiKey?: string;
package/dist/index.d.ts CHANGED
@@ -587,7 +587,7 @@ type CollectionOperation = 'getMany' | 'getOne' | 'query' | 'mutation' | 'update
587
587
  type CollectionHandler<TParams = any, TResult = any> = (params: TParams) => Promise<TResult> | TResult;
588
588
  type LLMProvider = 'anthropic' | 'groq' | 'gemini' | 'openai';
589
589
 
590
- type DatabaseType = 'postgresql' | 'mssql';
590
+ type DatabaseType = 'postgresql' | 'mssql' | 'snowflake' | 'mysql';
591
591
  interface SuperatomSDKConfig {
592
592
  url?: string;
593
593
  apiKey?: string;