@abtnode/schema 1.16.38 → 1.16.39-beta-20250209-032436-5ceca2cb
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 +20 -0
- package/lib/schema.graphqls +20 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -19,6 +19,14 @@ input AutoBackupInput {
|
|
19
19
|
enabled: Boolean
|
20
20
|
}
|
21
21
|
|
22
|
+
input AutoBlockPolicyInput {
|
23
|
+
enabled: Boolean
|
24
|
+
windowSize: Uint32
|
25
|
+
windowQuota: Uint32
|
26
|
+
blockDuration: Uint32
|
27
|
+
statusCodes: [Uint32!]
|
28
|
+
}
|
29
|
+
|
22
30
|
input AutoCheckUpdateInput {
|
23
31
|
enabled: Boolean
|
24
32
|
}
|
@@ -26,6 +34,7 @@ input AutoCheckUpdateInput {
|
|
26
34
|
input BlockPolicyInput {
|
27
35
|
enabled: Boolean
|
28
36
|
blacklist: [String!]
|
37
|
+
autoBlocking: AutoBlockPolicyInput
|
29
38
|
}
|
30
39
|
|
31
40
|
input BlockletAccessPolicyInput {
|
@@ -636,6 +645,7 @@ input RequestGetAuditLogsInput {
|
|
636
645
|
paging: PagingInput
|
637
646
|
scope: String
|
638
647
|
category: String
|
648
|
+
actionOrContent: String
|
639
649
|
}
|
640
650
|
|
641
651
|
input RequestGetBlockletAccessPoliciesInput {
|
@@ -1367,6 +1377,7 @@ type AuditLogActor {
|
|
1367
1377
|
did: String
|
1368
1378
|
role: String
|
1369
1379
|
fullName: String
|
1380
|
+
avatar: String
|
1370
1381
|
}
|
1371
1382
|
|
1372
1383
|
type AuditLogEnv {
|
@@ -1383,6 +1394,14 @@ type AutoBackup {
|
|
1383
1394
|
enabled: Boolean
|
1384
1395
|
}
|
1385
1396
|
|
1397
|
+
type AutoBlockPolicy {
|
1398
|
+
enabled: Boolean
|
1399
|
+
windowSize: Uint32
|
1400
|
+
windowQuota: Uint32
|
1401
|
+
blockDuration: Uint32
|
1402
|
+
statusCodes: [Uint32!]
|
1403
|
+
}
|
1404
|
+
|
1386
1405
|
type AutoCheckUpdate {
|
1387
1406
|
enabled: Boolean
|
1388
1407
|
}
|
@@ -1405,6 +1424,7 @@ type Backup {
|
|
1405
1424
|
type BlockPolicy {
|
1406
1425
|
enabled: Boolean
|
1407
1426
|
blacklist: [String!]
|
1427
|
+
autoBlocking: AutoBlockPolicy
|
1408
1428
|
}
|
1409
1429
|
|
1410
1430
|
type BlockletAccessPolicy {
|
package/lib/schema.graphqls
CHANGED
@@ -19,6 +19,14 @@ input AutoBackupInput {
|
|
19
19
|
enabled: Boolean
|
20
20
|
}
|
21
21
|
|
22
|
+
input AutoBlockPolicyInput {
|
23
|
+
enabled: Boolean
|
24
|
+
windowSize: Uint32
|
25
|
+
windowQuota: Uint32
|
26
|
+
blockDuration: Uint32
|
27
|
+
statusCodes: [Uint32!]
|
28
|
+
}
|
29
|
+
|
22
30
|
input AutoCheckUpdateInput {
|
23
31
|
enabled: Boolean
|
24
32
|
}
|
@@ -26,6 +34,7 @@ input AutoCheckUpdateInput {
|
|
26
34
|
input BlockPolicyInput {
|
27
35
|
enabled: Boolean
|
28
36
|
blacklist: [String!]
|
37
|
+
autoBlocking: AutoBlockPolicyInput
|
29
38
|
}
|
30
39
|
|
31
40
|
input BlockletAccessPolicyInput {
|
@@ -636,6 +645,7 @@ input RequestGetAuditLogsInput {
|
|
636
645
|
paging: PagingInput
|
637
646
|
scope: String
|
638
647
|
category: String
|
648
|
+
actionOrContent: String
|
639
649
|
}
|
640
650
|
|
641
651
|
input RequestGetBlockletAccessPoliciesInput {
|
@@ -1367,6 +1377,7 @@ type AuditLogActor {
|
|
1367
1377
|
did: String
|
1368
1378
|
role: String
|
1369
1379
|
fullName: String
|
1380
|
+
avatar: String
|
1370
1381
|
}
|
1371
1382
|
|
1372
1383
|
type AuditLogEnv {
|
@@ -1383,6 +1394,14 @@ type AutoBackup {
|
|
1383
1394
|
enabled: Boolean
|
1384
1395
|
}
|
1385
1396
|
|
1397
|
+
type AutoBlockPolicy {
|
1398
|
+
enabled: Boolean
|
1399
|
+
windowSize: Uint32
|
1400
|
+
windowQuota: Uint32
|
1401
|
+
blockDuration: Uint32
|
1402
|
+
statusCodes: [Uint32!]
|
1403
|
+
}
|
1404
|
+
|
1386
1405
|
type AutoCheckUpdate {
|
1387
1406
|
enabled: Boolean
|
1388
1407
|
}
|
@@ -1405,6 +1424,7 @@ type Backup {
|
|
1405
1424
|
type BlockPolicy {
|
1406
1425
|
enabled: Boolean
|
1407
1426
|
blacklist: [String!]
|
1427
|
+
autoBlocking: AutoBlockPolicy
|
1408
1428
|
}
|
1409
1429
|
|
1410
1430
|
type BlockletAccessPolicy {
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.16.
|
6
|
+
"version": "1.16.39-beta-20250209-032436-5ceca2cb",
|
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": "949581a46cec2ebfb656a42632ca550ed3b0ba70",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|