@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
@@ -1084,7 +1084,7 @@ class PrimaryNetworkService {
1084
1084
  minDelegationCapacity,
1085
1085
  maxDelegationCapacity,
1086
1086
  minTimeRemaining,
1087
- maxTimeRemaining = 2147483647,
1087
+ maxTimeRemaining,
1088
1088
  minFeePercentage,
1089
1089
  maxFeePercentage,
1090
1090
  subnetId
@@ -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 };
@@ -5,6 +5,8 @@ type UpdateWebhookRequest = {
5
5
  description?: string;
6
6
  url?: string;
7
7
  status?: WebhookStatusType;
8
+ includeTraces?: boolean;
9
+ includeLogs?: boolean;
8
10
  };
9
11
 
10
12
  export { UpdateWebhookRequest };
@@ -91,7 +91,7 @@ class PrimaryNetworkService {
91
91
  minDelegationCapacity,
92
92
  maxDelegationCapacity,
93
93
  minTimeRemaining,
94
- maxTimeRemaining = 2147483647,
94
+ maxTimeRemaining,
95
95
  minFeePercentage,
96
96
  maxFeePercentage,
97
97
  subnetId
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avalabs/glacier-sdk",
3
- "version": "2.8.0-canary.5601e64.0+5601e64",
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": "5601e64f2768553e98696cee0d717f2d5b48bb0c"
32
+ "gitHead": "5b6e5aa3efaa4047746d882f6e23db4d85a01755"
33
33
  }