@blocklet/server-js 1.17.4-beta-20251201-225048-b1682a09 → 1.17.4-beta-20251202-122551-267b614d

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.
@@ -11782,6 +11782,57 @@
11782
11782
  "enumValues": null,
11783
11783
  "possibleTypes": null
11784
11784
  },
11785
+ {
11786
+ "kind": "INPUT_OBJECT",
11787
+ "name": "RequestUpdateWebHookStateInput",
11788
+ "description": null,
11789
+ "fields": null,
11790
+ "inputFields": [
11791
+ {
11792
+ "name": "id",
11793
+ "description": null,
11794
+ "type": {
11795
+ "kind": "SCALAR",
11796
+ "name": "String",
11797
+ "ofType": null
11798
+ },
11799
+ "defaultValue": null
11800
+ },
11801
+ {
11802
+ "name": "url",
11803
+ "description": null,
11804
+ "type": {
11805
+ "kind": "SCALAR",
11806
+ "name": "String",
11807
+ "ofType": null
11808
+ },
11809
+ "defaultValue": null
11810
+ },
11811
+ {
11812
+ "name": "enabled",
11813
+ "description": null,
11814
+ "type": {
11815
+ "kind": "SCALAR",
11816
+ "name": "Boolean",
11817
+ "ofType": null
11818
+ },
11819
+ "defaultValue": null
11820
+ },
11821
+ {
11822
+ "name": "consecutiveFailures",
11823
+ "description": null,
11824
+ "type": {
11825
+ "kind": "SCALAR",
11826
+ "name": "Uint32",
11827
+ "ofType": null
11828
+ },
11829
+ "defaultValue": null
11830
+ }
11831
+ ],
11832
+ "interfaces": null,
11833
+ "enumValues": null,
11834
+ "possibleTypes": null
11835
+ },
11785
11836
  {
11786
11837
  "kind": "INPUT_OBJECT",
11787
11838
  "name": "RequestUpdateWebhookEndpointInput",
@@ -14530,6 +14581,26 @@
14530
14581
  "ofType": null
14531
14582
  },
14532
14583
  "defaultValue": null
14584
+ },
14585
+ {
14586
+ "name": "enabled",
14587
+ "description": null,
14588
+ "type": {
14589
+ "kind": "SCALAR",
14590
+ "name": "Boolean",
14591
+ "ofType": null
14592
+ },
14593
+ "defaultValue": null
14594
+ },
14595
+ {
14596
+ "name": "consecutiveFailures",
14597
+ "description": null,
14598
+ "type": {
14599
+ "kind": "SCALAR",
14600
+ "name": "Uint32",
14601
+ "ofType": null
14602
+ },
14603
+ "defaultValue": null
14533
14604
  }
14534
14605
  ],
14535
14606
  "interfaces": null,
@@ -34781,6 +34852,30 @@
34781
34852
  },
34782
34853
  "isDeprecated": false,
34783
34854
  "deprecationReason": null
34855
+ },
34856
+ {
34857
+ "name": "enabled",
34858
+ "description": null,
34859
+ "args": [],
34860
+ "type": {
34861
+ "kind": "SCALAR",
34862
+ "name": "Boolean",
34863
+ "ofType": null
34864
+ },
34865
+ "isDeprecated": false,
34866
+ "deprecationReason": null
34867
+ },
34868
+ {
34869
+ "name": "consecutiveFailures",
34870
+ "description": null,
34871
+ "args": [],
34872
+ "type": {
34873
+ "kind": "SCALAR",
34874
+ "name": "Uint32",
34875
+ "ofType": null
34876
+ },
34877
+ "isDeprecated": false,
34878
+ "deprecationReason": null
34784
34879
  }
34785
34880
  ],
34786
34881
  "inputFields": null,
@@ -38816,6 +38911,29 @@
38816
38911
  "isDeprecated": false,
38817
38912
  "deprecationReason": null
38818
38913
  },
38914
+ {
38915
+ "name": "updateWebHookState",
38916
+ "description": null,
38917
+ "args": [
38918
+ {
38919
+ "name": "input",
38920
+ "description": null,
38921
+ "type": {
38922
+ "kind": "INPUT_OBJECT",
38923
+ "name": "RequestUpdateWebHookStateInput",
38924
+ "ofType": null
38925
+ },
38926
+ "defaultValue": null
38927
+ }
38928
+ ],
38929
+ "type": {
38930
+ "kind": "OBJECT",
38931
+ "name": "ResponseCreateWebhookEndpoint",
38932
+ "ofType": null
38933
+ },
38934
+ "isDeprecated": false,
38935
+ "deprecationReason": null
38936
+ },
38819
38937
  {
38820
38938
  "name": "createProject",
38821
38939
  "description": null,
package/dist/types.js CHANGED
@@ -221,6 +221,7 @@
221
221
  * // verifyAccessKey,
222
222
  * // createWebHook,
223
223
  * // deleteWebHook,
224
+ * // updateWebHookState,
224
225
  * // createProject,
225
226
  * // updateProject,
226
227
  * // deleteProject,
@@ -2781,6 +2782,17 @@
2781
2782
  * @property {Array<...ABTNodeClient.null>} tags
2782
2783
  */
2783
2784
 
2785
+ /**
2786
+ * Structure of ABTNodeClient.RequestUpdateWebHookStateInput
2787
+ *
2788
+ * @memberof ABTNodeClient
2789
+ * @typedef {object} ABTNodeClient.RequestUpdateWebHookStateInput
2790
+ * @property {string} id
2791
+ * @property {string} url
2792
+ * @property {boolean} enabled
2793
+ * @property {number} consecutiveFailures
2794
+ */
2795
+
2784
2796
  /**
2785
2797
  * Structure of ABTNodeClient.RequestUpdateWebhookEndpointInput
2786
2798
  *
@@ -3291,6 +3303,8 @@
3291
3303
  * @property {string} defaultValue
3292
3304
  * @property {string} value
3293
3305
  * @property {string} type
3306
+ * @property {boolean} enabled
3307
+ * @property {number} consecutiveFailures
3294
3308
  */
3295
3309
 
3296
3310
  /**
@@ -4574,6 +4588,7 @@
4574
4588
  * @property {...ABTNodeClient.ResponseAccessKey} verifyAccessKey
4575
4589
  * @property {...ABTNodeClient.ResponseCreateWebHook} createWebHook
4576
4590
  * @property {...ABTNodeClient.ResponseDeleteWebHook} deleteWebHook
4591
+ * @property {...ABTNodeClient.ResponseCreateWebhookEndpoint} updateWebHookState
4577
4592
  * @property {...ABTNodeClient.ResponseProject} createProject
4578
4593
  * @property {...ABTNodeClient.ResponseProject} updateProject
4579
4594
  * @property {...ABTNodeClient.GeneralResponse} deleteProject
@@ -7301,6 +7316,8 @@
7301
7316
  * @property {string} defaultValue
7302
7317
  * @property {string} value
7303
7318
  * @property {string} type
7319
+ * @property {boolean} enabled
7320
+ * @property {number} consecutiveFailures
7304
7321
  */
7305
7322
 
7306
7323
  /**
@@ -9847,6 +9864,19 @@
9847
9864
  * @property {...ABTNodeClient.RequestDeleteWebHookInput} input
9848
9865
  */
9849
9866
 
9867
+ /**
9868
+ * Structure of ABTNodeClient.UpdateWebHookStateParams
9869
+ *
9870
+ * Checkout the following snippet for the format of UpdateWebHookStateParams:
9871
+ * ```json
9872
+ {}
9873
+ * ```
9874
+ *
9875
+ * @memberof ABTNodeClient
9876
+ * @typedef {object} ABTNodeClient.UpdateWebHookStateParams
9877
+ * @property {...ABTNodeClient.RequestUpdateWebHookStateInput} input
9878
+ */
9879
+
9850
9880
  /**
9851
9881
  * Structure of ABTNodeClient.CreateProjectParams
9852
9882
  *
@@ -12323,6 +12353,16 @@
12323
12353
  * @returns {Promise<ABTNodeClient.ResponseDeleteWebHook>} Checkout {@link ABTNodeClient.ResponseDeleteWebHook} for resolved data format
12324
12354
  */
12325
12355
 
12356
+ /**
12357
+ * updateWebHookState
12358
+ *
12359
+ * @name ABTNodeClient#updateWebHookState
12360
+ * @param {ABTNodeClient.UpdateWebHookStateParams} params
12361
+ * @function
12362
+ * @memberof ABTNodeClient
12363
+ * @returns {Promise<ABTNodeClient.ResponseCreateWebhookEndpoint>} Checkout {@link ABTNodeClient.ResponseCreateWebhookEndpoint} for resolved data format
12364
+ */
12365
+
12326
12366
  /**
12327
12367
  * createProject
12328
12368
  *