@avalabs/glacier-sdk 2.8.0-canary.5601e64.0 → 2.8.0-canary.5b6e5aa.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.
package/dist/index.d.ts
CHANGED
|
@@ -69,6 +69,14 @@ type AddressActivityMetadata = {
|
|
|
69
69
|
* Array of hexadecimal strings of the event signatures.
|
|
70
70
|
*/
|
|
71
71
|
eventSignatures?: Array<string>;
|
|
72
|
+
/**
|
|
73
|
+
* Whether to include traces in the webhook payload.
|
|
74
|
+
*/
|
|
75
|
+
includeTraces?: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Whether to include logs in the webhook payload.
|
|
78
|
+
*/
|
|
79
|
+
includeLogs?: boolean;
|
|
72
80
|
};
|
|
73
81
|
|
|
74
82
|
declare enum EventType {
|
|
@@ -116,6 +124,8 @@ type UpdateWebhookRequest = {
|
|
|
116
124
|
description?: string;
|
|
117
125
|
url?: string;
|
|
118
126
|
status?: WebhookStatusType;
|
|
127
|
+
includeTraces?: boolean;
|
|
128
|
+
includeLogs?: boolean;
|
|
119
129
|
};
|
|
120
130
|
|
|
121
131
|
declare enum WebhookStatus {
|
package/dist/index.js
CHANGED
|
@@ -7,6 +7,14 @@ type AddressActivityMetadata = {
|
|
|
7
7
|
* Array of hexadecimal strings of the event signatures.
|
|
8
8
|
*/
|
|
9
9
|
eventSignatures?: Array<string>;
|
|
10
|
+
/**
|
|
11
|
+
* Whether to include traces in the webhook payload.
|
|
12
|
+
*/
|
|
13
|
+
includeTraces?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Whether to include logs in the webhook payload.
|
|
16
|
+
*/
|
|
17
|
+
includeLogs?: boolean;
|
|
10
18
|
};
|
|
11
19
|
|
|
12
20
|
export { AddressActivityMetadata };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/glacier-sdk",
|
|
3
|
-
"version": "2.8.0-canary.
|
|
3
|
+
"version": "2.8.0-canary.5b6e5aa.0+5b6e5aa",
|
|
4
4
|
"description": "sdk for interacting with glacier-api",
|
|
5
5
|
"author": "Oliver Wang <oliver.wang@avalabs.org>",
|
|
6
6
|
"homepage": "https://github.com/ava-labs/avalanche-sdks#readme",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"bugs": {
|
|
30
30
|
"url": "https://github.com/ava-labs/avalanche-sdks/issues"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "5b6e5aa3efaa4047746d882f6e23db4d85a01755"
|
|
33
33
|
}
|