@abtnode/schema 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/index.js +28 -0
- package/lib/schema.graphqls +28 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -435,6 +435,13 @@ input RequestAddUploadEndpointInput {
|
|
435
435
|
scope: String
|
436
436
|
}
|
437
437
|
|
438
|
+
input RequestAttemptInput {
|
439
|
+
eventId: String
|
440
|
+
webhookId: String
|
441
|
+
attemptId: String
|
442
|
+
teamDid: String
|
443
|
+
}
|
444
|
+
|
438
445
|
input RequestAttemptIdInput {
|
439
446
|
eventId: String
|
440
447
|
webhookId: String
|
@@ -3169,6 +3176,10 @@ type ResponseGetUsersCountPerRole {
|
|
3169
3176
|
counts: [KeyValue!]
|
3170
3177
|
}
|
3171
3178
|
|
3179
|
+
type ResponseGetWebhookAttempt {
|
3180
|
+
data: WebhookAttemptState
|
3181
|
+
}
|
3182
|
+
|
3172
3183
|
type ResponseGetWebhookAttempts {
|
3173
3184
|
list: [WebhookAttemptWithEndpointEventState!]
|
3174
3185
|
paging: Paging
|
@@ -3680,6 +3691,20 @@ type WebHookSender {
|
|
3680
3691
|
params: [WebHookParam!]
|
3681
3692
|
}
|
3682
3693
|
|
3694
|
+
type WebhookAttemptState {
|
3695
|
+
id: String
|
3696
|
+
eventId: String
|
3697
|
+
webhookId: String
|
3698
|
+
status: String
|
3699
|
+
responseStatus: Uint32
|
3700
|
+
responseBody: Any
|
3701
|
+
retryCount: Uint32
|
3702
|
+
createdAt: Uint32
|
3703
|
+
updatedAt: Uint32
|
3704
|
+
triggeredBy: String
|
3705
|
+
triggeredFrom: String
|
3706
|
+
}
|
3707
|
+
|
3683
3708
|
type WebhookAttemptWithEndpointEventState {
|
3684
3709
|
id: String
|
3685
3710
|
eventId: String
|
@@ -3692,6 +3717,8 @@ type WebhookAttemptWithEndpointEventState {
|
|
3692
3717
|
updatedAt: Uint32
|
3693
3718
|
endpoint: WebhookEndpointState
|
3694
3719
|
event: WebhookEventState
|
3720
|
+
triggeredBy: String
|
3721
|
+
triggeredFrom: String
|
3695
3722
|
}
|
3696
3723
|
|
3697
3724
|
type WebhookEndpointState {
|
@@ -3992,6 +4019,7 @@ type Mutation {
|
|
3992
4019
|
createWebhookEndpoint(input: RequestCreateWebhookEndpointInput): ResponseCreateWebhookEndpoint
|
3993
4020
|
updateWebhookEndpoint(input: RequestUpdateWebhookEndpointInput): ResponseUpdateWebhookEndpoint
|
3994
4021
|
deleteWebhookEndpoint(input: RequestDeleteWebhookEndpointInput): ResponseDeleteWebhookEndpoint
|
4022
|
+
retryWebhookAttempt(input: RequestAttemptInput): ResponseGetWebhookAttempt
|
3995
4023
|
addUploadEndpoint(input: RequestAddUploadEndpointInput): GeneralResponse
|
3996
4024
|
deleteUploadEndpoint(input: RequestDeleteUploadEndpointInput): GeneralResponse
|
3997
4025
|
connectToEndpoint(input: RequestConnectToEndpointInput): ResponseConnectToEndpoint
|
package/lib/schema.graphqls
CHANGED
@@ -435,6 +435,13 @@ input RequestAddUploadEndpointInput {
|
|
435
435
|
scope: String
|
436
436
|
}
|
437
437
|
|
438
|
+
input RequestAttemptInput {
|
439
|
+
eventId: String
|
440
|
+
webhookId: String
|
441
|
+
attemptId: String
|
442
|
+
teamDid: String
|
443
|
+
}
|
444
|
+
|
438
445
|
input RequestAttemptIdInput {
|
439
446
|
eventId: String
|
440
447
|
webhookId: String
|
@@ -3169,6 +3176,10 @@ type ResponseGetUsersCountPerRole {
|
|
3169
3176
|
counts: [KeyValue!]
|
3170
3177
|
}
|
3171
3178
|
|
3179
|
+
type ResponseGetWebhookAttempt {
|
3180
|
+
data: WebhookAttemptState
|
3181
|
+
}
|
3182
|
+
|
3172
3183
|
type ResponseGetWebhookAttempts {
|
3173
3184
|
list: [WebhookAttemptWithEndpointEventState!]
|
3174
3185
|
paging: Paging
|
@@ -3680,6 +3691,20 @@ type WebHookSender {
|
|
3680
3691
|
params: [WebHookParam!]
|
3681
3692
|
}
|
3682
3693
|
|
3694
|
+
type WebhookAttemptState {
|
3695
|
+
id: String
|
3696
|
+
eventId: String
|
3697
|
+
webhookId: String
|
3698
|
+
status: String
|
3699
|
+
responseStatus: Uint32
|
3700
|
+
responseBody: Any
|
3701
|
+
retryCount: Uint32
|
3702
|
+
createdAt: Uint32
|
3703
|
+
updatedAt: Uint32
|
3704
|
+
triggeredBy: String
|
3705
|
+
triggeredFrom: String
|
3706
|
+
}
|
3707
|
+
|
3683
3708
|
type WebhookAttemptWithEndpointEventState {
|
3684
3709
|
id: String
|
3685
3710
|
eventId: String
|
@@ -3692,6 +3717,8 @@ type WebhookAttemptWithEndpointEventState {
|
|
3692
3717
|
updatedAt: Uint32
|
3693
3718
|
endpoint: WebhookEndpointState
|
3694
3719
|
event: WebhookEventState
|
3720
|
+
triggeredBy: String
|
3721
|
+
triggeredFrom: String
|
3695
3722
|
}
|
3696
3723
|
|
3697
3724
|
type WebhookEndpointState {
|
@@ -3994,6 +4021,7 @@ type Mutation {
|
|
3994
4021
|
createWebhookEndpoint(input: RequestCreateWebhookEndpointInput): ResponseCreateWebhookEndpoint
|
3995
4022
|
updateWebhookEndpoint(input: RequestUpdateWebhookEndpointInput): ResponseUpdateWebhookEndpoint
|
3996
4023
|
deleteWebhookEndpoint(input: RequestDeleteWebhookEndpointInput): ResponseDeleteWebhookEndpoint
|
4024
|
+
retryWebhookAttempt(input: RequestAttemptInput): ResponseGetWebhookAttempt
|
3997
4025
|
addUploadEndpoint(input: RequestAddUploadEndpointInput): GeneralResponse
|
3998
4026
|
deleteUploadEndpoint(input: RequestDeleteUploadEndpointInput): GeneralResponse
|
3999
4027
|
connectToEndpoint(input: RequestConnectToEndpointInput): ResponseConnectToEndpoint
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.16.44-beta-
|
6
|
+
"version": "1.16.44-beta-20250605-131649-6eaf56d9",
|
7
7
|
"description": "",
|
8
8
|
"main": "lib/index.js",
|
9
9
|
"files": [
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"keywords": [],
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
15
15
|
"license": "Apache-2.0",
|
16
|
-
"gitHead": "
|
16
|
+
"gitHead": "667899e10781e9fcc21c40c2a2f60f3fa2fecc88",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|