@avaprotocol/sdk-js 2.4.1 → 2.4.3
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/CHANGELOG.md +16 -0
- package/dist/index.d.ts +20 -11
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1127 -80
- package/dist/index.mjs +1127 -80
- package/dist/models/node/factory.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @avaprotocol/sdk-js
|
|
2
2
|
|
|
3
|
+
## 2.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 52b44d6: Update Secret and Cancel, Delete Workflow responses
|
|
8
|
+
- Updated dependencies [52b44d6]
|
|
9
|
+
- @avaprotocol/types@2.2.16
|
|
10
|
+
|
|
11
|
+
## 2.4.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 6650be6: Update Cancel and Delete operation response
|
|
16
|
+
- Updated dependencies [6650be6]
|
|
17
|
+
- @avaprotocol/types@2.2.15
|
|
18
|
+
|
|
3
19
|
## 2.4.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import Step from "./models/step";
|
|
|
8
8
|
import NodeFactory from "./models/node/factory";
|
|
9
9
|
import TriggerFactory from "./models/trigger/factory";
|
|
10
10
|
import Secret from "./models/secret";
|
|
11
|
-
import { type WorkflowProps, type GetKeyResponse, type RequestOptions, type ClientOption, type SmartWallet, type GetWalletRequest, type GetExecutionsOptions, type GetWorkflowsOptions, type GetSignatureFormatResponse, type RunNodeWithInputsRequest, type RunNodeWithInputsResponse, type RunTriggerRequest, type RunTriggerResponse, type SecretProps, type PageInfo, type GetSecretsOptions, type SecretOptions, type TriggerDataProps, type SimulateWorkflowRequest, type ExecutionProps, type GetTokenMetadataRequest, type GetTokenMetadataResponse, type TimeoutConfig } from "@avaprotocol/types";
|
|
11
|
+
import { type WorkflowProps, type GetKeyResponse, type RequestOptions, type ClientOption, type SmartWallet, type GetWalletRequest, type GetExecutionsOptions, type GetWorkflowsOptions, type GetSignatureFormatResponse, type RunNodeWithInputsRequest, type RunNodeWithInputsResponse, type RunTriggerRequest, type RunTriggerResponse, type SecretProps, type PageInfo, type GetSecretsOptions, type SecretOptions, type TriggerDataProps, type SimulateWorkflowRequest, type ExecutionProps, type GetTokenMetadataRequest, type GetTokenMetadataResponse, type TimeoutConfig, type CreateSecretResponse, type UpdateSecretResponse, type DeleteSecretResponse, type CancelTaskResponse, type DeleteTaskResponse, type GetExecutionStatsResponse, type GetExecutionStatsOptions } from "@avaprotocol/types";
|
|
12
12
|
import { ExecutionStatus } from "@/grpc_codegen/avs_pb";
|
|
13
13
|
import { cleanGrpcErrorMessage } from "./utils";
|
|
14
14
|
declare class BaseClient {
|
|
@@ -202,6 +202,15 @@ declare class Client extends BaseClient {
|
|
|
202
202
|
* @returns {Promise<number>} - The count of executions
|
|
203
203
|
*/
|
|
204
204
|
getExecutionCount(workflows: string[], options?: RequestOptions): Promise<number>;
|
|
205
|
+
/**
|
|
206
|
+
* Get execution statistics for a specified time period
|
|
207
|
+
* @param {GetExecutionStatsOptions} options - Request options
|
|
208
|
+
* @param {string[]} [options.workflowIds] - Optional array of workflow IDs
|
|
209
|
+
* @param {number} [options.days] - Number of days to look back (default: 7)
|
|
210
|
+
* @param {string} [options.authKey] - The auth key for the request
|
|
211
|
+
* @returns {Promise<GetExecutionStatsResponse>} - Execution statistics
|
|
212
|
+
*/
|
|
213
|
+
getExecutionStats(options?: GetExecutionStatsOptions): Promise<GetExecutionStatsResponse>;
|
|
205
214
|
/**
|
|
206
215
|
* Get the status of an execution
|
|
207
216
|
* @param {string} workflowId - The workflow id (taskId)
|
|
@@ -235,16 +244,16 @@ declare class Client extends BaseClient {
|
|
|
235
244
|
* Cancel a workflow
|
|
236
245
|
* @param {string} id - The workflow id
|
|
237
246
|
* @param {RequestOptions} options - Request options
|
|
238
|
-
* @returns {Promise<
|
|
247
|
+
* @returns {Promise<CancelTaskResponse>} - The response from canceling the workflow
|
|
239
248
|
*/
|
|
240
|
-
cancelWorkflow(id: string, options?: RequestOptions): Promise<
|
|
249
|
+
cancelWorkflow(id: string, options?: RequestOptions): Promise<CancelTaskResponse>;
|
|
241
250
|
/**
|
|
242
251
|
* Delete a workflow
|
|
243
252
|
* @param {string} id - The workflow id
|
|
244
253
|
* @param {RequestOptions} options - Request options
|
|
245
|
-
* @returns {Promise<
|
|
254
|
+
* @returns {Promise<DeleteTaskResponse>} - The response from deleting the workflow
|
|
246
255
|
*/
|
|
247
|
-
deleteWorkflow(id: string, options?: RequestOptions): Promise<
|
|
256
|
+
deleteWorkflow(id: string, options?: RequestOptions): Promise<DeleteTaskResponse>;
|
|
248
257
|
/**
|
|
249
258
|
* Create a new secret
|
|
250
259
|
* @param {string} name - The name of the secret
|
|
@@ -253,9 +262,9 @@ declare class Client extends BaseClient {
|
|
|
253
262
|
* @param {string} [options.workflowId] - The workflow ID to associate the secret with
|
|
254
263
|
* @param {string} [options.orgId] - The organization ID to associate the secret with
|
|
255
264
|
* @param {string} [options.authKey] - The auth key for the request
|
|
256
|
-
* @returns {Promise<
|
|
265
|
+
* @returns {Promise<CreateSecretResponse>} - Structured response with creation details
|
|
257
266
|
*/
|
|
258
|
-
createSecret(name: string, value: string, options?: SecretOptions): Promise<
|
|
267
|
+
createSecret(name: string, value: string, options?: SecretOptions): Promise<CreateSecretResponse>;
|
|
259
268
|
/**
|
|
260
269
|
* Update a secret
|
|
261
270
|
* @param {string} name - The name of the secret
|
|
@@ -264,9 +273,9 @@ declare class Client extends BaseClient {
|
|
|
264
273
|
* @param {string} [options.workflowId] - The workflow ID to associate the secret with
|
|
265
274
|
* @param {string} [options.orgId] - The organization ID to associate the secret with
|
|
266
275
|
* @param {string} [options.authKey] - The auth key for the request
|
|
267
|
-
* @returns {Promise<
|
|
276
|
+
* @returns {Promise<UpdateSecretResponse>} - Structured response with update details
|
|
268
277
|
*/
|
|
269
|
-
updateSecret(name: string, value: string, options?: SecretOptions): Promise<
|
|
278
|
+
updateSecret(name: string, value: string, options?: SecretOptions): Promise<UpdateSecretResponse>;
|
|
270
279
|
/**
|
|
271
280
|
* Get the list of secrets
|
|
272
281
|
* @param {GetSecretsOptions} options - Request options
|
|
@@ -292,9 +301,9 @@ declare class Client extends BaseClient {
|
|
|
292
301
|
* @param {string} [options.workflowId] - The workflow ID to associate the secret with
|
|
293
302
|
* @param {string} [options.orgId] - The organization ID to associate the secret with
|
|
294
303
|
* @param {string} [options.authKey] - The auth key for the request
|
|
295
|
-
* @returns {Promise<
|
|
304
|
+
* @returns {Promise<DeleteSecretResponse>} - Structured response with deletion details
|
|
296
305
|
*/
|
|
297
|
-
deleteSecret(name: string, options?: SecretOptions): Promise<
|
|
306
|
+
deleteSecret(name: string, options?: SecretOptions): Promise<DeleteSecretResponse>;
|
|
298
307
|
/**
|
|
299
308
|
* Run a node with inputs for testing purposes
|
|
300
309
|
* @param {RunNodeWithInputsRequest} params - The parameters for running the node
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|