@n8n/api-types 0.29.0 → 0.30.0

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.
@@ -1,5 +1,5 @@
1
1
  import type { INodeTypeDescription } from 'n8n-workflow';
2
- export interface CommunityNodeAttributes {
2
+ export type CommunityNodeType = {
3
3
  authorGithubUrl: string;
4
4
  authorName: string;
5
5
  checksum: string;
@@ -12,10 +12,8 @@ export interface CommunityNodeAttributes {
12
12
  createdAt: string;
13
13
  updatedAt: string;
14
14
  npmVersion: string;
15
- }
16
- export interface CommunityNodeData {
17
- id: number;
18
- attributes: CommunityNodeAttributes & {
19
- nodeDescription: INodeTypeDescription;
20
- };
21
- }
15
+ isOfficialNode: boolean;
16
+ companyName?: string;
17
+ nodeDescription: INodeTypeDescription;
18
+ isInstalled: boolean;
19
+ };
@@ -187,4 +187,7 @@ export interface FrontendSettings {
187
187
  dashboard: boolean;
188
188
  dateRanges: InsightsDateRange[];
189
189
  };
190
+ evaluation: {
191
+ quota: number;
192
+ };
190
193
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/api-types",
3
- "version": "0.29.0",
3
+ "version": "0.30.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "src/index.ts",
6
6
  "types": "dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "xss": "1.0.15",
18
18
  "zod": "3.24.1",
19
19
  "zod-class": "0.0.16",
20
- "n8n-workflow": "1.92.0",
20
+ "n8n-workflow": "1.93.0",
21
21
  "@n8n/permissions": "0.25.0"
22
22
  },
23
23
  "license": "SEE LICENSE IN LICENSE.md",