@blocklet/server-js 1.17.4-beta-20251202-034514-637cd8e2 → 1.17.4-beta-20251203-225234-75da41dd

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/browser.d.ts CHANGED
@@ -454,6 +454,9 @@ declare class ABTNodeClient {
454
454
  verifyAccessKey(params: PartialDeep<ABTNodeClient.VerifyAccessKeyParams>): Promise<ABTNodeClient.ResponseAccessKey>;
455
455
  createWebHook(params: PartialDeep<ABTNodeClient.CreateWebHookParams>): Promise<ABTNodeClient.ResponseCreateWebHook>;
456
456
  deleteWebHook(params: PartialDeep<ABTNodeClient.DeleteWebHookParams>): Promise<ABTNodeClient.ResponseDeleteWebHook>;
457
+ updateWebHookState(
458
+ params: PartialDeep<ABTNodeClient.UpdateWebHookStateParams>
459
+ ): Promise<ABTNodeClient.ResponseCreateWebhookEndpoint>;
457
460
  createProject(params: PartialDeep<ABTNodeClient.CreateProjectParams>): Promise<ABTNodeClient.ResponseProject>;
458
461
  updateProject(params: PartialDeep<ABTNodeClient.UpdateProjectParams>): Promise<ABTNodeClient.ResponseProject>;
459
462
  deleteProject(params: PartialDeep<ABTNodeClient.DeleteProjectParams>): Promise<ABTNodeClient.GeneralResponse>;
@@ -2251,6 +2254,13 @@ declare namespace ABTNodeClient {
2251
2254
  tags: number[];
2252
2255
  }
2253
2256
 
2257
+ interface RequestUpdateWebHookStateInput {
2258
+ id: string;
2259
+ url: string;
2260
+ enabled: boolean;
2261
+ consecutiveFailures: number;
2262
+ }
2263
+
2254
2264
  interface RequestUpdateWebhookEndpointInput {
2255
2265
  teamDid: string;
2256
2266
  id: string;
@@ -2593,6 +2603,8 @@ declare namespace ABTNodeClient {
2593
2603
  defaultValue: string;
2594
2604
  value: string;
2595
2605
  type: string;
2606
+ enabled: boolean;
2607
+ consecutiveFailures: number;
2596
2608
  }
2597
2609
 
2598
2610
  interface WebhookEndpointStateInput {
@@ -3524,6 +3536,7 @@ declare namespace ABTNodeClient {
3524
3536
  verifyAccessKey: ABTNodeClient.ResponseAccessKey;
3525
3537
  createWebHook: ABTNodeClient.ResponseCreateWebHook;
3526
3538
  deleteWebHook: ABTNodeClient.ResponseDeleteWebHook;
3539
+ updateWebHookState: ABTNodeClient.ResponseCreateWebhookEndpoint;
3527
3540
  createProject: ABTNodeClient.ResponseProject;
3528
3541
  updateProject: ABTNodeClient.ResponseProject;
3529
3542
  deleteProject: ABTNodeClient.GeneralResponse;
@@ -5007,6 +5020,8 @@ declare namespace ABTNodeClient {
5007
5020
  defaultValue: string;
5008
5021
  value: string;
5009
5022
  type: string;
5023
+ enabled: boolean;
5024
+ consecutiveFailures: number;
5010
5025
  }
5011
5026
 
5012
5027
  interface WebHookSender {
@@ -5842,6 +5857,10 @@ declare namespace ABTNodeClient {
5842
5857
  input: ABTNodeClient.RequestDeleteWebHookInput;
5843
5858
  }
5844
5859
 
5860
+ interface UpdateWebHookStateParams {
5861
+ input: ABTNodeClient.RequestUpdateWebHookStateInput;
5862
+ }
5863
+
5845
5864
  interface CreateProjectParams {
5846
5865
  input: ABTNodeClient.RequestCreateProjectInput;
5847
5866
  }