@n8n/api-types 1.17.0 → 1.17.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.
@@ -11,7 +11,7 @@ export interface AiGatewayUsageEntry {
11
11
  provider: string;
12
12
  model: string;
13
13
  timestamp: number;
14
- creditsDeducted: number;
14
+ cost: number;
15
15
  inputTokens?: number;
16
16
  outputTokens?: number;
17
17
  }
@@ -204,7 +204,7 @@ export interface FrontendSettings {
204
204
  };
205
205
  aiGateway?: {
206
206
  enabled: boolean;
207
- creditsQuota: number;
207
+ budget: number;
208
208
  };
209
209
  ai: {
210
210
  allowSendingParameterValues: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/api-types",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "src/index.ts",
6
6
  "types": "dist/index.d.ts",
@@ -10,14 +10,14 @@
10
10
  "LICENSE_EE.md"
11
11
  ],
12
12
  "devDependencies": {
13
- "@n8n/typescript-config": "1.4.0",
14
- "@n8n/config": "2.16.0"
13
+ "@n8n/config": "2.16.0",
14
+ "@n8n/typescript-config": "1.4.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "xss": "1.0.15",
18
18
  "zod": "3.25.67",
19
- "@n8n/permissions": "0.56.0",
20
- "n8n-workflow": "2.17.0"
19
+ "n8n-workflow": "2.17.0",
20
+ "@n8n/permissions": "0.56.0"
21
21
  },
22
22
  "license": "SEE LICENSE IN LICENSE.md",
23
23
  "homepage": "https://n8n.io",