@yuntijs/arcadia-bff-sdk 1.2.35 → 1.2.37
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/cjs/index.d.ts +170 -0
- package/dist/cjs/sdk.d.ts +691 -3
- package/dist/cjs/sdk.js +259 -0
- package/dist/cjs/taro.d.ts +124 -0
- package/dist/esm/index.d.ts +170 -0
- package/dist/esm/sdk.d.ts +691 -3
- package/dist/esm/sdk.js +97 -15
- package/dist/esm/taro.d.ts +124 -0
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.js
CHANGED
|
@@ -45,8 +45,10 @@ __export(sdk_exports, {
|
|
|
45
45
|
CreateOrUpdateAgentPromptDocument: () => CreateOrUpdateAgentPromptDocument,
|
|
46
46
|
CreatePluginDocument: () => CreatePluginDocument,
|
|
47
47
|
CreateRagDocument: () => CreateRagDocument,
|
|
48
|
+
CreateRerankerDocument: () => CreateRerankerDocument,
|
|
48
49
|
CreateVersionedDatasetDocument: () => CreateVersionedDatasetDocument,
|
|
49
50
|
CreateWorkerDocument: () => CreateWorkerDocument,
|
|
51
|
+
CreateWorkflowDocument: () => CreateWorkflowDocument,
|
|
50
52
|
DataProcessDetailsDocument: () => DataProcessDetailsDocument,
|
|
51
53
|
DataProcessLogInfoByFileNameDocument: () => DataProcessLogInfoByFileNameDocument,
|
|
52
54
|
DataProcessRetryDocument: () => DataProcessRetryDocument,
|
|
@@ -62,8 +64,10 @@ __export(sdk_exports, {
|
|
|
62
64
|
DeleteModelsDocument: () => DeleteModelsDocument,
|
|
63
65
|
DeletePluginDocument: () => DeletePluginDocument,
|
|
64
66
|
DeleteRagDocument: () => DeleteRagDocument,
|
|
67
|
+
DeleteRerankersDocument: () => DeleteRerankersDocument,
|
|
65
68
|
DeleteVersionedDatasetsDocument: () => DeleteVersionedDatasetsDocument,
|
|
66
69
|
DeleteWorkersDocument: () => DeleteWorkersDocument,
|
|
70
|
+
DeleteWorkflowDocument: () => DeleteWorkflowDocument,
|
|
67
71
|
GetAgentDocument: () => GetAgentDocument,
|
|
68
72
|
GetAgentLatestReleaseInEachPlatformDocument: () => GetAgentLatestReleaseInEachPlatformDocument,
|
|
69
73
|
GetAgentReleaseHistoryDocument: () => GetAgentReleaseHistoryDocument,
|
|
@@ -79,8 +83,10 @@ __export(sdk_exports, {
|
|
|
79
83
|
GetModelServiceDocument: () => GetModelServiceDocument,
|
|
80
84
|
GetPluginDocument: () => GetPluginDocument,
|
|
81
85
|
GetRagDocument: () => GetRagDocument,
|
|
86
|
+
GetRerankerDocument: () => GetRerankerDocument,
|
|
82
87
|
GetVersionedDatasetDocument: () => GetVersionedDatasetDocument,
|
|
83
88
|
GetWorkerDocument: () => GetWorkerDocument,
|
|
89
|
+
GetWorkflowDocument: () => GetWorkflowDocument,
|
|
84
90
|
ListAgentPromptDocument: () => ListAgentPromptDocument,
|
|
85
91
|
ListAgentsDocument: () => ListAgentsDocument,
|
|
86
92
|
ListDatasetsDocument: () => ListDatasetsDocument,
|
|
@@ -96,8 +102,10 @@ __export(sdk_exports, {
|
|
|
96
102
|
ListPluginsDocument: () => ListPluginsDocument,
|
|
97
103
|
ListRagDocument: () => ListRagDocument,
|
|
98
104
|
ListRayClustersDocument: () => ListRayClustersDocument,
|
|
105
|
+
ListRerankersDocument: () => ListRerankersDocument,
|
|
99
106
|
ListVersionedDatasetsDocument: () => ListVersionedDatasetsDocument,
|
|
100
107
|
ListWorkersDocument: () => ListWorkersDocument,
|
|
108
|
+
ListWorkflowsDocument: () => ListWorkflowsDocument,
|
|
101
109
|
ReleaseAgentDocument: () => ReleaseAgentDocument,
|
|
102
110
|
UpdateAgentDocument: () => UpdateAgentDocument,
|
|
103
111
|
UpdateAgentKnowledgeBaseDocument: () => UpdateAgentKnowledgeBaseDocument,
|
|
@@ -112,8 +120,10 @@ __export(sdk_exports, {
|
|
|
112
120
|
UpdateModelServiceDocument: () => UpdateModelServiceDocument,
|
|
113
121
|
UpdatePluginDocument: () => UpdatePluginDocument,
|
|
114
122
|
UpdateRagDocument: () => UpdateRagDocument,
|
|
123
|
+
UpdateRerankerDocument: () => UpdateRerankerDocument,
|
|
115
124
|
UpdateVersionedDatasetDocument: () => UpdateVersionedDatasetDocument,
|
|
116
125
|
UpdateWorkerDocument: () => UpdateWorkerDocument,
|
|
126
|
+
UpdateWorkflowDocument: () => UpdateWorkflowDocument,
|
|
117
127
|
getSdk: () => getSdk,
|
|
118
128
|
getSdkWithHooks: () => getSdkWithHooks
|
|
119
129
|
});
|
|
@@ -1474,6 +1484,7 @@ var CreateModelServiceDocument = import_graphql_tag.default`
|
|
|
1474
1484
|
apiType
|
|
1475
1485
|
llmModels
|
|
1476
1486
|
embeddingModels
|
|
1487
|
+
rerankingModels
|
|
1477
1488
|
creationTimestamp
|
|
1478
1489
|
updateTimestamp
|
|
1479
1490
|
status
|
|
@@ -1500,6 +1511,7 @@ var UpdateModelServiceDocument = import_graphql_tag.default`
|
|
|
1500
1511
|
apiType
|
|
1501
1512
|
llmModels
|
|
1502
1513
|
embeddingModels
|
|
1514
|
+
rerankingModels
|
|
1503
1515
|
creationTimestamp
|
|
1504
1516
|
updateTimestamp
|
|
1505
1517
|
status
|
|
@@ -1533,6 +1545,7 @@ var GetModelServiceDocument = import_graphql_tag.default`
|
|
|
1533
1545
|
apiType
|
|
1534
1546
|
llmModels
|
|
1535
1547
|
embeddingModels
|
|
1548
|
+
rerankingModels
|
|
1536
1549
|
creationTimestamp
|
|
1537
1550
|
updateTimestamp
|
|
1538
1551
|
status
|
|
@@ -1564,6 +1577,7 @@ var ListModelServicesDocument = import_graphql_tag.default`
|
|
|
1564
1577
|
apiType
|
|
1565
1578
|
llmModels
|
|
1566
1579
|
embeddingModels
|
|
1580
|
+
rerankingModels
|
|
1567
1581
|
creationTimestamp
|
|
1568
1582
|
updateTimestamp
|
|
1569
1583
|
status
|
|
@@ -2080,6 +2094,101 @@ var ListRayClustersDocument = import_graphql_tag.default`
|
|
|
2080
2094
|
}
|
|
2081
2095
|
}
|
|
2082
2096
|
`;
|
|
2097
|
+
var CreateRerankerDocument = import_graphql_tag.default`
|
|
2098
|
+
mutation createReranker($input: CreateRerankerInput!) {
|
|
2099
|
+
Reranker {
|
|
2100
|
+
createReranker(input: $input) {
|
|
2101
|
+
name
|
|
2102
|
+
namespace
|
|
2103
|
+
labels
|
|
2104
|
+
annotations
|
|
2105
|
+
displayName
|
|
2106
|
+
description
|
|
2107
|
+
baseUrl
|
|
2108
|
+
models
|
|
2109
|
+
type
|
|
2110
|
+
provider
|
|
2111
|
+
updateTimestamp
|
|
2112
|
+
status
|
|
2113
|
+
message
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
2116
|
+
}
|
|
2117
|
+
`;
|
|
2118
|
+
var UpdateRerankerDocument = import_graphql_tag.default`
|
|
2119
|
+
mutation updateReranker($input: UpdateRerankerInput) {
|
|
2120
|
+
Reranker {
|
|
2121
|
+
updateReranker(input: $input) {
|
|
2122
|
+
name
|
|
2123
|
+
namespace
|
|
2124
|
+
labels
|
|
2125
|
+
annotations
|
|
2126
|
+
displayName
|
|
2127
|
+
description
|
|
2128
|
+
baseUrl
|
|
2129
|
+
models
|
|
2130
|
+
type
|
|
2131
|
+
provider
|
|
2132
|
+
updateTimestamp
|
|
2133
|
+
status
|
|
2134
|
+
message
|
|
2135
|
+
}
|
|
2136
|
+
}
|
|
2137
|
+
}
|
|
2138
|
+
`;
|
|
2139
|
+
var DeleteRerankersDocument = import_graphql_tag.default`
|
|
2140
|
+
mutation deleteRerankers($input: DeleteCommonInput!) {
|
|
2141
|
+
Reranker {
|
|
2142
|
+
deleteRerankers(input: $input)
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
2145
|
+
`;
|
|
2146
|
+
var ListRerankersDocument = import_graphql_tag.default`
|
|
2147
|
+
query listRerankers($input: ListCommonInput!) {
|
|
2148
|
+
Reranker {
|
|
2149
|
+
listRerankers(input: $input) {
|
|
2150
|
+
totalCount
|
|
2151
|
+
hasNextPage
|
|
2152
|
+
nodes {
|
|
2153
|
+
... on Reranker {
|
|
2154
|
+
name
|
|
2155
|
+
namespace
|
|
2156
|
+
labels
|
|
2157
|
+
annotations
|
|
2158
|
+
displayName
|
|
2159
|
+
description
|
|
2160
|
+
baseUrl
|
|
2161
|
+
models
|
|
2162
|
+
type
|
|
2163
|
+
provider
|
|
2164
|
+
updateTimestamp
|
|
2165
|
+
status
|
|
2166
|
+
message
|
|
2167
|
+
}
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
}
|
|
2171
|
+
}
|
|
2172
|
+
`;
|
|
2173
|
+
var GetRerankerDocument = import_graphql_tag.default`
|
|
2174
|
+
query getReranker($name: String!, $namespace: String!) {
|
|
2175
|
+
Reranker {
|
|
2176
|
+
getReranker(name: $name, namespace: $namespace) {
|
|
2177
|
+
name
|
|
2178
|
+
namespace
|
|
2179
|
+
labels
|
|
2180
|
+
annotations
|
|
2181
|
+
displayName
|
|
2182
|
+
description
|
|
2183
|
+
baseUrl
|
|
2184
|
+
models
|
|
2185
|
+
type
|
|
2186
|
+
provider
|
|
2187
|
+
updateTimestamp
|
|
2188
|
+
}
|
|
2189
|
+
}
|
|
2190
|
+
}
|
|
2191
|
+
`;
|
|
2083
2192
|
var CreateVersionedDatasetDocument = import_graphql_tag.default`
|
|
2084
2193
|
mutation createVersionedDataset($input: CreateVersionedDatasetInput!) {
|
|
2085
2194
|
VersionedDataset {
|
|
@@ -2391,6 +2500,104 @@ var DeleteWorkersDocument = import_graphql_tag.default`
|
|
|
2391
2500
|
}
|
|
2392
2501
|
}
|
|
2393
2502
|
`;
|
|
2503
|
+
var ListWorkflowsDocument = import_graphql_tag.default`
|
|
2504
|
+
query listWorkflows($input: ListCommonInput!) {
|
|
2505
|
+
Workflow {
|
|
2506
|
+
listWorkflows(input: $input) {
|
|
2507
|
+
totalCount
|
|
2508
|
+
hasNextPage
|
|
2509
|
+
nodes {
|
|
2510
|
+
__typename
|
|
2511
|
+
... on Workflow {
|
|
2512
|
+
id
|
|
2513
|
+
creationTimestamp
|
|
2514
|
+
name
|
|
2515
|
+
namespace
|
|
2516
|
+
labels
|
|
2517
|
+
annotations
|
|
2518
|
+
creator
|
|
2519
|
+
displayName
|
|
2520
|
+
description
|
|
2521
|
+
icon
|
|
2522
|
+
status
|
|
2523
|
+
updateTimestamp
|
|
2524
|
+
graph
|
|
2525
|
+
}
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
`;
|
|
2531
|
+
var GetWorkflowDocument = import_graphql_tag.default`
|
|
2532
|
+
query getWorkflow($name: String!, $namespace: String!) {
|
|
2533
|
+
Workflow {
|
|
2534
|
+
getWorkflow(name: $name, namespace: $namespace) {
|
|
2535
|
+
id
|
|
2536
|
+
creationTimestamp
|
|
2537
|
+
name
|
|
2538
|
+
namespace
|
|
2539
|
+
labels
|
|
2540
|
+
annotations
|
|
2541
|
+
creator
|
|
2542
|
+
displayName
|
|
2543
|
+
description
|
|
2544
|
+
icon
|
|
2545
|
+
status
|
|
2546
|
+
updateTimestamp
|
|
2547
|
+
graph
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
`;
|
|
2552
|
+
var CreateWorkflowDocument = import_graphql_tag.default`
|
|
2553
|
+
mutation createWorkflow($input: CreateWorkflowInput!) {
|
|
2554
|
+
Workflow {
|
|
2555
|
+
createWorkflow(input: $input) {
|
|
2556
|
+
id
|
|
2557
|
+
creationTimestamp
|
|
2558
|
+
name
|
|
2559
|
+
namespace
|
|
2560
|
+
labels
|
|
2561
|
+
annotations
|
|
2562
|
+
creator
|
|
2563
|
+
displayName
|
|
2564
|
+
description
|
|
2565
|
+
icon
|
|
2566
|
+
status
|
|
2567
|
+
updateTimestamp
|
|
2568
|
+
graph
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
`;
|
|
2573
|
+
var UpdateWorkflowDocument = import_graphql_tag.default`
|
|
2574
|
+
mutation updateWorkflow($input: UpdateWorkflowInput!) {
|
|
2575
|
+
Workflow {
|
|
2576
|
+
updateWorkflow(input: $input) {
|
|
2577
|
+
id
|
|
2578
|
+
creationTimestamp
|
|
2579
|
+
name
|
|
2580
|
+
namespace
|
|
2581
|
+
labels
|
|
2582
|
+
annotations
|
|
2583
|
+
creator
|
|
2584
|
+
displayName
|
|
2585
|
+
description
|
|
2586
|
+
icon
|
|
2587
|
+
status
|
|
2588
|
+
updateTimestamp
|
|
2589
|
+
graph
|
|
2590
|
+
}
|
|
2591
|
+
}
|
|
2592
|
+
}
|
|
2593
|
+
`;
|
|
2594
|
+
var DeleteWorkflowDocument = import_graphql_tag.default`
|
|
2595
|
+
mutation deleteWorkflow($input: DeleteCommonInput!) {
|
|
2596
|
+
Workflow {
|
|
2597
|
+
deleteWorkflow(input: $input)
|
|
2598
|
+
}
|
|
2599
|
+
}
|
|
2600
|
+
`;
|
|
2394
2601
|
var defaultWrapper = (action, _operationName, _operationType, variables) => action();
|
|
2395
2602
|
function getSdk(client, withWrapper = defaultWrapper) {
|
|
2396
2603
|
return {
|
|
@@ -2619,6 +2826,21 @@ function getSdk(client, withWrapper = defaultWrapper) {
|
|
|
2619
2826
|
listRayClusters(variables, requestHeaders) {
|
|
2620
2827
|
return withWrapper((wrappedRequestHeaders) => client.request(ListRayClustersDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listRayClusters", "query", variables);
|
|
2621
2828
|
},
|
|
2829
|
+
createReranker(variables, requestHeaders) {
|
|
2830
|
+
return withWrapper((wrappedRequestHeaders) => client.request(CreateRerankerDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "createReranker", "mutation", variables);
|
|
2831
|
+
},
|
|
2832
|
+
updateReranker(variables, requestHeaders) {
|
|
2833
|
+
return withWrapper((wrappedRequestHeaders) => client.request(UpdateRerankerDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "updateReranker", "mutation", variables);
|
|
2834
|
+
},
|
|
2835
|
+
deleteRerankers(variables, requestHeaders) {
|
|
2836
|
+
return withWrapper((wrappedRequestHeaders) => client.request(DeleteRerankersDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "deleteRerankers", "mutation", variables);
|
|
2837
|
+
},
|
|
2838
|
+
listRerankers(variables, requestHeaders) {
|
|
2839
|
+
return withWrapper((wrappedRequestHeaders) => client.request(ListRerankersDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listRerankers", "query", variables);
|
|
2840
|
+
},
|
|
2841
|
+
getReranker(variables, requestHeaders) {
|
|
2842
|
+
return withWrapper((wrappedRequestHeaders) => client.request(GetRerankerDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getReranker", "query", variables);
|
|
2843
|
+
},
|
|
2622
2844
|
createVersionedDataset(variables, requestHeaders) {
|
|
2623
2845
|
return withWrapper((wrappedRequestHeaders) => client.request(CreateVersionedDatasetDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "createVersionedDataset", "mutation", variables);
|
|
2624
2846
|
},
|
|
@@ -2648,6 +2870,21 @@ function getSdk(client, withWrapper = defaultWrapper) {
|
|
|
2648
2870
|
},
|
|
2649
2871
|
deleteWorkers(variables, requestHeaders) {
|
|
2650
2872
|
return withWrapper((wrappedRequestHeaders) => client.request(DeleteWorkersDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "deleteWorkers", "mutation", variables);
|
|
2873
|
+
},
|
|
2874
|
+
listWorkflows(variables, requestHeaders) {
|
|
2875
|
+
return withWrapper((wrappedRequestHeaders) => client.request(ListWorkflowsDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "listWorkflows", "query", variables);
|
|
2876
|
+
},
|
|
2877
|
+
getWorkflow(variables, requestHeaders) {
|
|
2878
|
+
return withWrapper((wrappedRequestHeaders) => client.request(GetWorkflowDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "getWorkflow", "query", variables);
|
|
2879
|
+
},
|
|
2880
|
+
createWorkflow(variables, requestHeaders) {
|
|
2881
|
+
return withWrapper((wrappedRequestHeaders) => client.request(CreateWorkflowDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "createWorkflow", "mutation", variables);
|
|
2882
|
+
},
|
|
2883
|
+
updateWorkflow(variables, requestHeaders) {
|
|
2884
|
+
return withWrapper((wrappedRequestHeaders) => client.request(UpdateWorkflowDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "updateWorkflow", "mutation", variables);
|
|
2885
|
+
},
|
|
2886
|
+
deleteWorkflow(variables, requestHeaders) {
|
|
2887
|
+
return withWrapper((wrappedRequestHeaders) => client.request(DeleteWorkflowDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "deleteWorkflow", "mutation", variables);
|
|
2651
2888
|
}
|
|
2652
2889
|
};
|
|
2653
2890
|
}
|
|
@@ -2773,6 +3010,12 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2773
3010
|
useListRayClusters(variables, config) {
|
|
2774
3011
|
return (0, import_useSWR.default)(genKey("ListRayClusters", variables), () => sdk.listRayClusters(variables), config);
|
|
2775
3012
|
},
|
|
3013
|
+
useListRerankers(variables, config) {
|
|
3014
|
+
return (0, import_useSWR.default)(genKey("ListRerankers", variables), () => sdk.listRerankers(variables), config);
|
|
3015
|
+
},
|
|
3016
|
+
useGetReranker(variables, config) {
|
|
3017
|
+
return (0, import_useSWR.default)(genKey("GetReranker", variables), () => sdk.getReranker(variables), config);
|
|
3018
|
+
},
|
|
2776
3019
|
useGetVersionedDataset(variables, config) {
|
|
2777
3020
|
return (0, import_useSWR.default)(genKey("GetVersionedDataset", variables), () => sdk.getVersionedDataset(variables), config);
|
|
2778
3021
|
},
|
|
@@ -2784,6 +3027,12 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2784
3027
|
},
|
|
2785
3028
|
useGetWorker(variables, config) {
|
|
2786
3029
|
return (0, import_useSWR.default)(genKey("GetWorker", variables), () => sdk.getWorker(variables), config);
|
|
3030
|
+
},
|
|
3031
|
+
useListWorkflows(variables, config) {
|
|
3032
|
+
return (0, import_useSWR.default)(genKey("ListWorkflows", variables), () => sdk.listWorkflows(variables), config);
|
|
3033
|
+
},
|
|
3034
|
+
useGetWorkflow(variables, config) {
|
|
3035
|
+
return (0, import_useSWR.default)(genKey("GetWorkflow", variables), () => sdk.getWorkflow(variables), config);
|
|
2787
3036
|
}
|
|
2788
3037
|
};
|
|
2789
3038
|
}
|
|
@@ -2805,8 +3054,10 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2805
3054
|
CreateOrUpdateAgentPromptDocument,
|
|
2806
3055
|
CreatePluginDocument,
|
|
2807
3056
|
CreateRagDocument,
|
|
3057
|
+
CreateRerankerDocument,
|
|
2808
3058
|
CreateVersionedDatasetDocument,
|
|
2809
3059
|
CreateWorkerDocument,
|
|
3060
|
+
CreateWorkflowDocument,
|
|
2810
3061
|
DataProcessDetailsDocument,
|
|
2811
3062
|
DataProcessLogInfoByFileNameDocument,
|
|
2812
3063
|
DataProcessRetryDocument,
|
|
@@ -2822,8 +3073,10 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2822
3073
|
DeleteModelsDocument,
|
|
2823
3074
|
DeletePluginDocument,
|
|
2824
3075
|
DeleteRagDocument,
|
|
3076
|
+
DeleteRerankersDocument,
|
|
2825
3077
|
DeleteVersionedDatasetsDocument,
|
|
2826
3078
|
DeleteWorkersDocument,
|
|
3079
|
+
DeleteWorkflowDocument,
|
|
2827
3080
|
GetAgentDocument,
|
|
2828
3081
|
GetAgentLatestReleaseInEachPlatformDocument,
|
|
2829
3082
|
GetAgentReleaseHistoryDocument,
|
|
@@ -2839,8 +3092,10 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2839
3092
|
GetModelServiceDocument,
|
|
2840
3093
|
GetPluginDocument,
|
|
2841
3094
|
GetRagDocument,
|
|
3095
|
+
GetRerankerDocument,
|
|
2842
3096
|
GetVersionedDatasetDocument,
|
|
2843
3097
|
GetWorkerDocument,
|
|
3098
|
+
GetWorkflowDocument,
|
|
2844
3099
|
ListAgentPromptDocument,
|
|
2845
3100
|
ListAgentsDocument,
|
|
2846
3101
|
ListDatasetsDocument,
|
|
@@ -2856,8 +3111,10 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2856
3111
|
ListPluginsDocument,
|
|
2857
3112
|
ListRagDocument,
|
|
2858
3113
|
ListRayClustersDocument,
|
|
3114
|
+
ListRerankersDocument,
|
|
2859
3115
|
ListVersionedDatasetsDocument,
|
|
2860
3116
|
ListWorkersDocument,
|
|
3117
|
+
ListWorkflowsDocument,
|
|
2861
3118
|
ReleaseAgentDocument,
|
|
2862
3119
|
UpdateAgentDocument,
|
|
2863
3120
|
UpdateAgentKnowledgeBaseDocument,
|
|
@@ -2872,8 +3129,10 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
2872
3129
|
UpdateModelServiceDocument,
|
|
2873
3130
|
UpdatePluginDocument,
|
|
2874
3131
|
UpdateRagDocument,
|
|
3132
|
+
UpdateRerankerDocument,
|
|
2875
3133
|
UpdateVersionedDatasetDocument,
|
|
2876
3134
|
UpdateWorkerDocument,
|
|
3135
|
+
UpdateWorkflowDocument,
|
|
2877
3136
|
getSdk,
|
|
2878
3137
|
getSdkWithHooks
|
|
2879
3138
|
});
|
package/dist/cjs/taro.d.ts
CHANGED
|
@@ -284,6 +284,22 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
284
284
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
285
285
|
input: import("./sdk").ListCommonInput;
|
|
286
286
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
287
|
+
createReranker(variables: import("./sdk").Exact<{
|
|
288
|
+
input: import("./sdk").CreateRerankerInput;
|
|
289
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
290
|
+
updateReranker(variables?: import("./sdk").Exact<{
|
|
291
|
+
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
292
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
293
|
+
deleteRerankers(variables: import("./sdk").Exact<{
|
|
294
|
+
input: import("./sdk").DeleteCommonInput;
|
|
295
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
296
|
+
listRerankers(variables: import("./sdk").Exact<{
|
|
297
|
+
input: import("./sdk").ListCommonInput;
|
|
298
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|
|
299
|
+
getReranker(variables: import("./sdk").Exact<{
|
|
300
|
+
name: string;
|
|
301
|
+
namespace: string;
|
|
302
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRerankerQuery>;
|
|
287
303
|
createVersionedDataset(variables: import("./sdk").Exact<{
|
|
288
304
|
input: import("./sdk").CreateVersionedDatasetInput;
|
|
289
305
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateVersionedDatasetMutation>;
|
|
@@ -318,6 +334,22 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
318
334
|
deleteWorkers(variables?: import("./sdk").Exact<{
|
|
319
335
|
input?: import("./sdk").InputMaybe<import("./sdk").DeleteCommonInput> | undefined;
|
|
320
336
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteWorkersMutation>;
|
|
337
|
+
listWorkflows(variables: import("./sdk").Exact<{
|
|
338
|
+
input: import("./sdk").ListCommonInput;
|
|
339
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListWorkflowsQuery>;
|
|
340
|
+
getWorkflow(variables: import("./sdk").Exact<{
|
|
341
|
+
name: string;
|
|
342
|
+
namespace: string;
|
|
343
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWorkflowQuery>;
|
|
344
|
+
createWorkflow(variables: import("./sdk").Exact<{
|
|
345
|
+
input: import("./sdk").CreateWorkflowInput;
|
|
346
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateWorkflowMutation>;
|
|
347
|
+
updateWorkflow(variables: import("./sdk").Exact<{
|
|
348
|
+
input: import("./sdk").UpdateWorkflowInput;
|
|
349
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateWorkflowMutation>;
|
|
350
|
+
deleteWorkflow(variables: import("./sdk").Exact<{
|
|
351
|
+
input: import("./sdk").DeleteCommonInput;
|
|
352
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteWorkflowMutation>;
|
|
321
353
|
};
|
|
322
354
|
/**
|
|
323
355
|
* 初始化 sdk 实例 (包含 hooks)
|
|
@@ -465,6 +497,13 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
465
497
|
useListRayClusters(variables: import("./sdk").Exact<{
|
|
466
498
|
input: import("./sdk").ListCommonInput;
|
|
467
499
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError>;
|
|
500
|
+
useListRerankers(variables: import("./sdk").Exact<{
|
|
501
|
+
input: import("./sdk").ListCommonInput;
|
|
502
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRerankersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRerankersQuery, import("graphql-request/src/types").ClientError>;
|
|
503
|
+
useGetReranker(variables: import("./sdk").Exact<{
|
|
504
|
+
name: string;
|
|
505
|
+
namespace: string;
|
|
506
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetRerankerQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetRerankerQuery, import("graphql-request/src/types").ClientError>;
|
|
468
507
|
useGetVersionedDataset(variables: import("./sdk").Exact<{
|
|
469
508
|
name: string;
|
|
470
509
|
namespace: string;
|
|
@@ -481,6 +520,13 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
481
520
|
name: string;
|
|
482
521
|
namespace: string;
|
|
483
522
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWorkerQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWorkerQuery, import("graphql-request/src/types").ClientError>;
|
|
523
|
+
useListWorkflows(variables: import("./sdk").Exact<{
|
|
524
|
+
input: import("./sdk").ListCommonInput;
|
|
525
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListWorkflowsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListWorkflowsQuery, import("graphql-request/src/types").ClientError>;
|
|
526
|
+
useGetWorkflow(variables: import("./sdk").Exact<{
|
|
527
|
+
name: string;
|
|
528
|
+
namespace: string;
|
|
529
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWorkflowQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWorkflowQuery, import("graphql-request/src/types").ClientError>;
|
|
484
530
|
createAgent(variables: import("./sdk").Exact<{
|
|
485
531
|
input: import("./sdk").CreateAgentMetadataInput;
|
|
486
532
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateAgentMutation>;
|
|
@@ -733,6 +779,22 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
733
779
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
734
780
|
input: import("./sdk").ListCommonInput;
|
|
735
781
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
782
|
+
createReranker(variables: import("./sdk").Exact<{
|
|
783
|
+
input: import("./sdk").CreateRerankerInput;
|
|
784
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
785
|
+
updateReranker(variables?: import("./sdk").Exact<{
|
|
786
|
+
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
787
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
788
|
+
deleteRerankers(variables: import("./sdk").Exact<{
|
|
789
|
+
input: import("./sdk").DeleteCommonInput;
|
|
790
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
791
|
+
listRerankers(variables: import("./sdk").Exact<{
|
|
792
|
+
input: import("./sdk").ListCommonInput;
|
|
793
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|
|
794
|
+
getReranker(variables: import("./sdk").Exact<{
|
|
795
|
+
name: string;
|
|
796
|
+
namespace: string;
|
|
797
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRerankerQuery>;
|
|
736
798
|
createVersionedDataset(variables: import("./sdk").Exact<{
|
|
737
799
|
input: import("./sdk").CreateVersionedDatasetInput;
|
|
738
800
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateVersionedDatasetMutation>;
|
|
@@ -767,6 +829,22 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
767
829
|
deleteWorkers(variables?: import("./sdk").Exact<{
|
|
768
830
|
input?: import("./sdk").InputMaybe<import("./sdk").DeleteCommonInput> | undefined;
|
|
769
831
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteWorkersMutation>;
|
|
832
|
+
listWorkflows(variables: import("./sdk").Exact<{
|
|
833
|
+
input: import("./sdk").ListCommonInput;
|
|
834
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListWorkflowsQuery>;
|
|
835
|
+
getWorkflow(variables: import("./sdk").Exact<{
|
|
836
|
+
name: string;
|
|
837
|
+
namespace: string;
|
|
838
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWorkflowQuery>;
|
|
839
|
+
createWorkflow(variables: import("./sdk").Exact<{
|
|
840
|
+
input: import("./sdk").CreateWorkflowInput;
|
|
841
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateWorkflowMutation>;
|
|
842
|
+
updateWorkflow(variables: import("./sdk").Exact<{
|
|
843
|
+
input: import("./sdk").UpdateWorkflowInput;
|
|
844
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateWorkflowMutation>;
|
|
845
|
+
deleteWorkflow(variables: import("./sdk").Exact<{
|
|
846
|
+
input: import("./sdk").DeleteCommonInput;
|
|
847
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteWorkflowMutation>;
|
|
770
848
|
};
|
|
771
849
|
/**
|
|
772
850
|
* hook 的方式获取 sdk 实例
|
|
@@ -914,6 +992,13 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
914
992
|
useListRayClusters(variables: import("./sdk").Exact<{
|
|
915
993
|
input: import("./sdk").ListCommonInput;
|
|
916
994
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError>;
|
|
995
|
+
useListRerankers(variables: import("./sdk").Exact<{
|
|
996
|
+
input: import("./sdk").ListCommonInput;
|
|
997
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRerankersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRerankersQuery, import("graphql-request/src/types").ClientError>;
|
|
998
|
+
useGetReranker(variables: import("./sdk").Exact<{
|
|
999
|
+
name: string;
|
|
1000
|
+
namespace: string;
|
|
1001
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetRerankerQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetRerankerQuery, import("graphql-request/src/types").ClientError>;
|
|
917
1002
|
useGetVersionedDataset(variables: import("./sdk").Exact<{
|
|
918
1003
|
name: string;
|
|
919
1004
|
namespace: string;
|
|
@@ -930,6 +1015,13 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
930
1015
|
name: string;
|
|
931
1016
|
namespace: string;
|
|
932
1017
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWorkerQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWorkerQuery, import("graphql-request/src/types").ClientError>;
|
|
1018
|
+
useListWorkflows(variables: import("./sdk").Exact<{
|
|
1019
|
+
input: import("./sdk").ListCommonInput;
|
|
1020
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListWorkflowsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListWorkflowsQuery, import("graphql-request/src/types").ClientError>;
|
|
1021
|
+
useGetWorkflow(variables: import("./sdk").Exact<{
|
|
1022
|
+
name: string;
|
|
1023
|
+
namespace: string;
|
|
1024
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetWorkflowQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetWorkflowQuery, import("graphql-request/src/types").ClientError>;
|
|
933
1025
|
createAgent(variables: import("./sdk").Exact<{
|
|
934
1026
|
input: import("./sdk").CreateAgentMetadataInput;
|
|
935
1027
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateAgentMutation>;
|
|
@@ -1182,6 +1274,22 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1182
1274
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
1183
1275
|
input: import("./sdk").ListCommonInput;
|
|
1184
1276
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
1277
|
+
createReranker(variables: import("./sdk").Exact<{
|
|
1278
|
+
input: import("./sdk").CreateRerankerInput;
|
|
1279
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRerankerMutation>;
|
|
1280
|
+
updateReranker(variables?: import("./sdk").Exact<{
|
|
1281
|
+
input?: import("./sdk").InputMaybe<import("./sdk").UpdateRerankerInput> | undefined;
|
|
1282
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRerankerMutation>;
|
|
1283
|
+
deleteRerankers(variables: import("./sdk").Exact<{
|
|
1284
|
+
input: import("./sdk").DeleteCommonInput;
|
|
1285
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRerankersMutation>;
|
|
1286
|
+
listRerankers(variables: import("./sdk").Exact<{
|
|
1287
|
+
input: import("./sdk").ListCommonInput;
|
|
1288
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRerankersQuery>;
|
|
1289
|
+
getReranker(variables: import("./sdk").Exact<{
|
|
1290
|
+
name: string;
|
|
1291
|
+
namespace: string;
|
|
1292
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRerankerQuery>;
|
|
1185
1293
|
createVersionedDataset(variables: import("./sdk").Exact<{
|
|
1186
1294
|
input: import("./sdk").CreateVersionedDatasetInput;
|
|
1187
1295
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateVersionedDatasetMutation>;
|
|
@@ -1216,4 +1324,20 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1216
1324
|
deleteWorkers(variables?: import("./sdk").Exact<{
|
|
1217
1325
|
input?: import("./sdk").InputMaybe<import("./sdk").DeleteCommonInput> | undefined;
|
|
1218
1326
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteWorkersMutation>;
|
|
1327
|
+
listWorkflows(variables: import("./sdk").Exact<{
|
|
1328
|
+
input: import("./sdk").ListCommonInput;
|
|
1329
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListWorkflowsQuery>;
|
|
1330
|
+
getWorkflow(variables: import("./sdk").Exact<{
|
|
1331
|
+
name: string;
|
|
1332
|
+
namespace: string;
|
|
1333
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetWorkflowQuery>;
|
|
1334
|
+
createWorkflow(variables: import("./sdk").Exact<{
|
|
1335
|
+
input: import("./sdk").CreateWorkflowInput;
|
|
1336
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateWorkflowMutation>;
|
|
1337
|
+
updateWorkflow(variables: import("./sdk").Exact<{
|
|
1338
|
+
input: import("./sdk").UpdateWorkflowInput;
|
|
1339
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateWorkflowMutation>;
|
|
1340
|
+
deleteWorkflow(variables: import("./sdk").Exact<{
|
|
1341
|
+
input: import("./sdk").DeleteCommonInput;
|
|
1342
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteWorkflowMutation>;
|
|
1219
1343
|
};
|