@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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2918 -2790
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2896 -2768
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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;
|