@naturali/sdk 0.80.0 → 0.80.1

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
@@ -7713,6 +7713,20 @@ type ListAiProvidersResponses = {
7713
7713
  name?: string;
7714
7714
  provider?: 'openai' | 'anthropic' | 'google' | 'xai' | 'groq' | 'ollama' | 'azure' | 'bedrock' | 'vertex' | 'gateway' | 'custom';
7715
7715
  default_model?: string;
7716
+ /**
7717
+ * Secret ID containing API credentials, or null when the record links none.
7718
+ */
7719
+ secret_id?: string | null;
7720
+ /**
7721
+ * Custom base URL for the provider. Absent when the record sets none.
7722
+ */
7723
+ base_url?: string;
7724
+ /**
7725
+ * Additional provider-specific configuration. Absent when the record sets none.
7726
+ */
7727
+ config?: {
7728
+ [key: string]: unknown;
7729
+ };
7716
7730
  project_id?: string;
7717
7731
  created_at?: Date;
7718
7732
  updated_at?: Date;
package/dist/index.d.mts CHANGED
@@ -7713,6 +7713,20 @@ type ListAiProvidersResponses = {
7713
7713
  name?: string;
7714
7714
  provider?: 'openai' | 'anthropic' | 'google' | 'xai' | 'groq' | 'ollama' | 'azure' | 'bedrock' | 'vertex' | 'gateway' | 'custom';
7715
7715
  default_model?: string;
7716
+ /**
7717
+ * Secret ID containing API credentials, or null when the record links none.
7718
+ */
7719
+ secret_id?: string | null;
7720
+ /**
7721
+ * Custom base URL for the provider. Absent when the record sets none.
7722
+ */
7723
+ base_url?: string;
7724
+ /**
7725
+ * Additional provider-specific configuration. Absent when the record sets none.
7726
+ */
7727
+ config?: {
7728
+ [key: string]: unknown;
7729
+ };
7716
7730
  project_id?: string;
7717
7731
  created_at?: Date;
7718
7732
  updated_at?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturali/sdk",
3
- "version": "0.80.0",
3
+ "version": "0.80.1",
4
4
  "description": "TypeScript SDK for the naturali.ai API, generated from its OpenAPI specs",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -37,7 +37,7 @@
37
37
  "tsx": "^4.23.1",
38
38
  "typescript": "~6.0.3",
39
39
  "vitest": "^4.1.10",
40
- "@naturali/api": "0.80.0"
40
+ "@naturali/api": "0.80.1"
41
41
  },
42
42
  "scripts": {
43
43
  "generate": "tsx scripts/generate.ts",