@abtnode/types 1.16.44-beta-20250601-083116-288e5ea5 → 1.16.44-beta-20250605-131649-6eaf56d9
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/lib/rpc_pb.d.ts +9 -0
- package/lib/type_pb.d.ts +4 -0
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -1271,10 +1271,19 @@ export type TRequestGetWebhookAttempts = {
|
|
1271
1271
|
input?: TRequestAttemptId;
|
1272
1272
|
paging?: type_pb.TPaging;
|
1273
1273
|
};
|
1274
|
+
export type TRequestAttempt = {
|
1275
|
+
eventId: string;
|
1276
|
+
webhookId: string;
|
1277
|
+
attemptId: string;
|
1278
|
+
teamDid: string;
|
1279
|
+
};
|
1274
1280
|
export type TResponseGetWebhookAttempts = {
|
1275
1281
|
list: type_pb.TWebhookAttemptWithEndpointEventState[];
|
1276
1282
|
paging?: type_pb.TPaging;
|
1277
1283
|
};
|
1284
|
+
export type TResponseGetWebhookAttempt = {
|
1285
|
+
data?: type_pb.TWebhookAttemptState;
|
1286
|
+
};
|
1278
1287
|
export type TRequestGetBlockletBackupSummary = {
|
1279
1288
|
did: string;
|
1280
1289
|
startTime: string;
|
package/lib/type_pb.d.ts
CHANGED
@@ -1394,6 +1394,8 @@ export type TWebhookAttemptState = {
|
|
1394
1394
|
retryCount: number;
|
1395
1395
|
createdAt: number;
|
1396
1396
|
updatedAt: number;
|
1397
|
+
triggeredBy: string;
|
1398
|
+
triggeredFrom: string;
|
1397
1399
|
};
|
1398
1400
|
export type TWebhookEventState = {
|
1399
1401
|
id: string;
|
@@ -1421,6 +1423,8 @@ export type TWebhookAttemptWithEndpointEventState = {
|
|
1421
1423
|
updatedAt: number;
|
1422
1424
|
endpoint?: TWebhookEndpointState;
|
1423
1425
|
event?: TWebhookEventState;
|
1426
|
+
triggeredBy: string;
|
1427
|
+
triggeredFrom: string;
|
1424
1428
|
};
|
1425
1429
|
export type TPassportQuery = {
|
1426
1430
|
role: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.44-beta-
|
3
|
+
"version": "1.16.44-beta-20250605-131649-6eaf56d9",
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
5
5
|
"keywords": [
|
6
6
|
"abtnode",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"bugs": {
|
37
37
|
"url": "https://github.com/ArcBlock/abt-node/issues"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "667899e10781e9fcc21c40c2a2f60f3fa2fecc88"
|
40
40
|
}
|