@tiger16601/n8n-nodes-fastgpt 1.1.10 → 1.1.11
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.
|
@@ -25,7 +25,7 @@ exports.appOperations = [
|
|
|
25
25
|
request: {
|
|
26
26
|
method: "GET",
|
|
27
27
|
// NEW: 获取应用总体数据统计端点(商业版)
|
|
28
|
-
url: "/
|
|
28
|
+
url: "/proApi/core/app/logs/getTotalData",
|
|
29
29
|
},
|
|
30
30
|
output: {
|
|
31
31
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -43,7 +43,7 @@ exports.appOperations = [
|
|
|
43
43
|
request: {
|
|
44
44
|
method: "POST",
|
|
45
45
|
// NEW: 获取应用图表数据端点(商业版)
|
|
46
|
-
url: "/
|
|
46
|
+
url: "/proApi/core/app/logs/getChartData",
|
|
47
47
|
},
|
|
48
48
|
output: {
|
|
49
49
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -25,7 +25,7 @@ exports.dataOperations = [
|
|
|
25
25
|
request: {
|
|
26
26
|
method: "POST",
|
|
27
27
|
// FIX: 更新为V2版本API
|
|
28
|
-
url: "/
|
|
28
|
+
url: "/core/dataset/data/v2/list",
|
|
29
29
|
},
|
|
30
30
|
output: {
|
|
31
31
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -41,7 +41,7 @@ exports.dataOperations = [
|
|
|
41
41
|
routing: {
|
|
42
42
|
request: {
|
|
43
43
|
method: "GET",
|
|
44
|
-
url: "/
|
|
44
|
+
url: "/core/dataset/data/detail",
|
|
45
45
|
},
|
|
46
46
|
output: {
|
|
47
47
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -58,7 +58,7 @@ exports.dataOperations = [
|
|
|
58
58
|
request: {
|
|
59
59
|
method: "DELETE",
|
|
60
60
|
// FIX: 更新为删除单条数据API
|
|
61
|
-
url: "/
|
|
61
|
+
url: "/core/dataset/data/delete",
|
|
62
62
|
},
|
|
63
63
|
output: {
|
|
64
64
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -75,7 +75,7 @@ exports.dataOperations = [
|
|
|
75
75
|
request: {
|
|
76
76
|
method: "PUT",
|
|
77
77
|
// FIX: 更新为修改单条数据API
|
|
78
|
-
url: "/
|
|
78
|
+
url: "/core/dataset/data/update",
|
|
79
79
|
},
|
|
80
80
|
output: {
|
|
81
81
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -93,7 +93,7 @@ exports.dataOperations = [
|
|
|
93
93
|
request: {
|
|
94
94
|
method: "POST",
|
|
95
95
|
// NEW: 使用pushData端点
|
|
96
|
-
url: "/
|
|
96
|
+
url: "/core/dataset/data/pushData",
|
|
97
97
|
},
|
|
98
98
|
output: {
|
|
99
99
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -386,6 +386,7 @@ const completeOperations = [
|
|
|
386
386
|
// NEW: 每页数量 - 用于获取数据列表
|
|
387
387
|
{
|
|
388
388
|
displayName: "每页数量",
|
|
389
|
+
description: "每页数量,最大 30",
|
|
389
390
|
name: "dataPageSize",
|
|
390
391
|
type: "number",
|
|
391
392
|
default: 30,
|
|
@@ -106,7 +106,7 @@ exports.datasetOperations = [
|
|
|
106
106
|
request: {
|
|
107
107
|
method: "POST",
|
|
108
108
|
// NEW: 使用proApi商业版端点
|
|
109
|
-
url: "/
|
|
109
|
+
url: "/proApi/core/dataset/collection/create/externalFileUrl",
|
|
110
110
|
},
|
|
111
111
|
output: {
|
|
112
112
|
postReceive: [GenericFunctions_1.sendErrorPostReceive],
|
|
@@ -337,6 +337,7 @@ const completeOperations = [
|
|
|
337
337
|
},
|
|
338
338
|
{
|
|
339
339
|
displayName: "名称",
|
|
340
|
+
description: "集合名,建议就用文件名",
|
|
340
341
|
name: "datasetName",
|
|
341
342
|
type: "string",
|
|
342
343
|
default: "",
|