@abtnode/schema 1.16.38-beta-20250115-235439-bb5a1c1b → 1.16.38-beta-20250118-033334-2da05ae8

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 CHANGED
@@ -167,6 +167,7 @@ input GatewayInput {
167
167
  blockPolicy: BlockPolicyInput
168
168
  proxyPolicy: ProxyPolicyInput
169
169
  cacheEnabled: Boolean
170
+ wafPolicy: WAFPolicyInput
170
171
  }
171
172
 
172
173
  input HashFileInput {
@@ -1307,6 +1308,14 @@ input UserSortInput {
1307
1308
  lastLoginAt: Uint32
1308
1309
  }
1309
1310
 
1311
+ input WAFPolicyInput {
1312
+ enabled: Boolean
1313
+ mode: String
1314
+ inboundAnomalyScoreThreshold: Uint32
1315
+ outboundAnomalyScoreThreshold: Uint32
1316
+ logLevel: Uint32
1317
+ }
1318
+
1310
1319
  input WebHookParamInput {
1311
1320
  name: String
1312
1321
  description: String
@@ -1910,6 +1919,7 @@ type Gateway {
1910
1919
  blockPolicy: BlockPolicy
1911
1920
  proxyPolicy: ProxyPolicy
1912
1921
  cacheEnabled: Boolean
1922
+ wafPolicy: WAFPolicy
1913
1923
  }
1914
1924
 
1915
1925
  type GeneralResponse {
@@ -2014,6 +2024,7 @@ type NodeRouting {
2014
2024
  cacheEnabled: Boolean
2015
2025
  blockPolicy: BlockPolicy
2016
2026
  proxyPolicy: ProxyPolicy
2027
+ wafPolicy: WAFPolicy
2017
2028
  }
2018
2029
 
2019
2030
  type NodeRuntimeConfig {
@@ -2909,6 +2920,14 @@ type UserSession {
2909
2920
  updatedAt: Uint32
2910
2921
  }
2911
2922
 
2923
+ type WAFPolicy {
2924
+ enabled: Boolean
2925
+ mode: String
2926
+ inboundAnomalyScoreThreshold: Uint32
2927
+ outboundAnomalyScoreThreshold: Uint32
2928
+ logLevel: Uint32
2929
+ }
2930
+
2912
2931
  type WalletInfo {
2913
2932
  did: String
2914
2933
  pk: String
@@ -167,6 +167,7 @@ input GatewayInput {
167
167
  blockPolicy: BlockPolicyInput
168
168
  proxyPolicy: ProxyPolicyInput
169
169
  cacheEnabled: Boolean
170
+ wafPolicy: WAFPolicyInput
170
171
  }
171
172
 
172
173
  input HashFileInput {
@@ -1307,6 +1308,14 @@ input UserSortInput {
1307
1308
  lastLoginAt: Uint32
1308
1309
  }
1309
1310
 
1311
+ input WAFPolicyInput {
1312
+ enabled: Boolean
1313
+ mode: String
1314
+ inboundAnomalyScoreThreshold: Uint32
1315
+ outboundAnomalyScoreThreshold: Uint32
1316
+ logLevel: Uint32
1317
+ }
1318
+
1310
1319
  input WebHookParamInput {
1311
1320
  name: String
1312
1321
  description: String
@@ -1910,6 +1919,7 @@ type Gateway {
1910
1919
  blockPolicy: BlockPolicy
1911
1920
  proxyPolicy: ProxyPolicy
1912
1921
  cacheEnabled: Boolean
1922
+ wafPolicy: WAFPolicy
1913
1923
  }
1914
1924
 
1915
1925
  type GeneralResponse {
@@ -2014,6 +2024,7 @@ type NodeRouting {
2014
2024
  cacheEnabled: Boolean
2015
2025
  blockPolicy: BlockPolicy
2016
2026
  proxyPolicy: ProxyPolicy
2027
+ wafPolicy: WAFPolicy
2017
2028
  }
2018
2029
 
2019
2030
  type NodeRuntimeConfig {
@@ -2909,6 +2920,14 @@ type UserSession {
2909
2920
  updatedAt: Uint32
2910
2921
  }
2911
2922
 
2923
+ type WAFPolicy {
2924
+ enabled: Boolean
2925
+ mode: String
2926
+ inboundAnomalyScoreThreshold: Uint32
2927
+ outboundAnomalyScoreThreshold: Uint32
2928
+ logLevel: Uint32
2929
+ }
2930
+
2912
2931
  type WalletInfo {
2913
2932
  did: String
2914
2933
  pk: String
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.38-beta-20250115-235439-bb5a1c1b",
6
+ "version": "1.16.38-beta-20250118-033334-2da05ae8",
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": "d340d9ee0f1e860cc1ac8ed05e5793765896660a",
16
+ "gitHead": "55a983304e72e5e54d6425acd0e2dad1f710aad3",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }