@avalabs/glacier-sdk 2.8.0-alpha.172 → 2.8.0-alpha.173
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,10 @@ 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;
|
|
72
76
|
};
|
|
73
77
|
|
|
74
78
|
declare enum EventType {
|
|
@@ -116,6 +120,7 @@ type UpdateWebhookRequest = {
|
|
|
116
120
|
description?: string;
|
|
117
121
|
url?: string;
|
|
118
122
|
status?: WebhookStatusType;
|
|
123
|
+
includeTraces?: boolean;
|
|
119
124
|
};
|
|
120
125
|
|
|
121
126
|
declare enum WebhookStatus {
|
|
@@ -7,6 +7,10 @@ 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;
|
|
10
14
|
};
|
|
11
15
|
|
|
12
16
|
export { AddressActivityMetadata };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/glacier-sdk",
|
|
3
|
-
"version": "2.8.0-alpha.
|
|
3
|
+
"version": "2.8.0-alpha.173",
|
|
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": "5ca16fafcf312c5072be841ae48bb2fc4d53ec97"
|
|
33
33
|
}
|