@avaprotocol/sdk-js 2.4.0 → 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 +24 -0
- package/dist/index.d.ts +22 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5755 -5880
- package/dist/index.mjs +5757 -5879
- package/dist/models/node/contractRead.d.ts.map +1 -1
- package/dist/models/node/contractRead.js +27 -17
- package/dist/models/node/contractWrite.d.ts.map +1 -1
- package/dist/models/node/contractWrite.js +11 -52
- package/dist/models/node/factory.d.ts.map +1 -1
- package/dist/models/node/loop.d.ts.map +1 -1
- package/dist/models/node/loop.js +3 -0
- package/dist/models/step.d.ts.map +1 -1
- package/dist/models/step.js +103 -66
- package/dist/models/trigger/event.d.ts.map +1 -1
- package/dist/models/trigger/event.js +32 -6
- package/dist/models/trigger/factory.d.ts.map +1 -1
- package/dist/models/trigger/factory.js +7 -38
- package/dist/utils.d.ts +6 -0
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +49 -23
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
19
|
+
## 2.4.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 264c1c8: Renovated ContractRead and ContractWrite
|
|
24
|
+
- Updated dependencies [264c1c8]
|
|
25
|
+
- @avaprotocol/types@2.2.14
|
|
26
|
+
|
|
3
27
|
## 2.4.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -8,8 +8,9 @@ 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
|
+
import { cleanGrpcErrorMessage } from "./utils";
|
|
13
14
|
declare class BaseClient {
|
|
14
15
|
readonly endpoint: string;
|
|
15
16
|
readonly rpcClient: AggregatorClient;
|
|
@@ -201,6 +202,15 @@ declare class Client extends BaseClient {
|
|
|
201
202
|
* @returns {Promise<number>} - The count of executions
|
|
202
203
|
*/
|
|
203
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>;
|
|
204
214
|
/**
|
|
205
215
|
* Get the status of an execution
|
|
206
216
|
* @param {string} workflowId - The workflow id (taskId)
|
|
@@ -234,16 +244,16 @@ declare class Client extends BaseClient {
|
|
|
234
244
|
* Cancel a workflow
|
|
235
245
|
* @param {string} id - The workflow id
|
|
236
246
|
* @param {RequestOptions} options - Request options
|
|
237
|
-
* @returns {Promise<
|
|
247
|
+
* @returns {Promise<CancelTaskResponse>} - The response from canceling the workflow
|
|
238
248
|
*/
|
|
239
|
-
cancelWorkflow(id: string, options?: RequestOptions): Promise<
|
|
249
|
+
cancelWorkflow(id: string, options?: RequestOptions): Promise<CancelTaskResponse>;
|
|
240
250
|
/**
|
|
241
251
|
* Delete a workflow
|
|
242
252
|
* @param {string} id - The workflow id
|
|
243
253
|
* @param {RequestOptions} options - Request options
|
|
244
|
-
* @returns {Promise<
|
|
254
|
+
* @returns {Promise<DeleteTaskResponse>} - The response from deleting the workflow
|
|
245
255
|
*/
|
|
246
|
-
deleteWorkflow(id: string, options?: RequestOptions): Promise<
|
|
256
|
+
deleteWorkflow(id: string, options?: RequestOptions): Promise<DeleteTaskResponse>;
|
|
247
257
|
/**
|
|
248
258
|
* Create a new secret
|
|
249
259
|
* @param {string} name - The name of the secret
|
|
@@ -252,9 +262,9 @@ declare class Client extends BaseClient {
|
|
|
252
262
|
* @param {string} [options.workflowId] - The workflow ID to associate the secret with
|
|
253
263
|
* @param {string} [options.orgId] - The organization ID to associate the secret with
|
|
254
264
|
* @param {string} [options.authKey] - The auth key for the request
|
|
255
|
-
* @returns {Promise<
|
|
265
|
+
* @returns {Promise<CreateSecretResponse>} - Structured response with creation details
|
|
256
266
|
*/
|
|
257
|
-
createSecret(name: string, value: string, options?: SecretOptions): Promise<
|
|
267
|
+
createSecret(name: string, value: string, options?: SecretOptions): Promise<CreateSecretResponse>;
|
|
258
268
|
/**
|
|
259
269
|
* Update a secret
|
|
260
270
|
* @param {string} name - The name of the secret
|
|
@@ -263,9 +273,9 @@ declare class Client extends BaseClient {
|
|
|
263
273
|
* @param {string} [options.workflowId] - The workflow ID to associate the secret with
|
|
264
274
|
* @param {string} [options.orgId] - The organization ID to associate the secret with
|
|
265
275
|
* @param {string} [options.authKey] - The auth key for the request
|
|
266
|
-
* @returns {Promise<
|
|
276
|
+
* @returns {Promise<UpdateSecretResponse>} - Structured response with update details
|
|
267
277
|
*/
|
|
268
|
-
updateSecret(name: string, value: string, options?: SecretOptions): Promise<
|
|
278
|
+
updateSecret(name: string, value: string, options?: SecretOptions): Promise<UpdateSecretResponse>;
|
|
269
279
|
/**
|
|
270
280
|
* Get the list of secrets
|
|
271
281
|
* @param {GetSecretsOptions} options - Request options
|
|
@@ -291,9 +301,9 @@ declare class Client extends BaseClient {
|
|
|
291
301
|
* @param {string} [options.workflowId] - The workflow ID to associate the secret with
|
|
292
302
|
* @param {string} [options.orgId] - The organization ID to associate the secret with
|
|
293
303
|
* @param {string} [options.authKey] - The auth key for the request
|
|
294
|
-
* @returns {Promise<
|
|
304
|
+
* @returns {Promise<DeleteSecretResponse>} - Structured response with deletion details
|
|
295
305
|
*/
|
|
296
|
-
deleteSecret(name: string, options?: SecretOptions): Promise<
|
|
306
|
+
deleteSecret(name: string, options?: SecretOptions): Promise<DeleteSecretResponse>;
|
|
297
307
|
/**
|
|
298
308
|
* Run a node with inputs for testing purposes
|
|
299
309
|
* @param {RunNodeWithInputsRequest} params - The parameters for running the node
|
|
@@ -335,7 +345,7 @@ declare class Client extends BaseClient {
|
|
|
335
345
|
}
|
|
336
346
|
export * from "./models/node/factory";
|
|
337
347
|
export * from "./models/trigger/factory";
|
|
338
|
-
export { Client, Workflow, Edge, Execution, Step, NodeFactory, TriggerFactory, Secret, };
|
|
348
|
+
export { Client, Workflow, Edge, Execution, Step, NodeFactory, TriggerFactory, Secret, cleanGrpcErrorMessage, };
|
|
339
349
|
export type { TokenMetadata, GetTokenMetadataRequest, GetTokenMetadataResponse, TokenSource, } from "@avaprotocol/types";
|
|
340
350
|
export { TimeoutPresets, type TimeoutConfig, type TimeoutError, } from "@avaprotocol/types";
|
|
341
351
|
//# sourceMappingURL=index.d.ts.map
|
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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"}
|