@abtnode/schema 1.16.47-beta-20250721-073316-a6de1fa3 → 1.16.47-beta-20250723-114212-8da08071

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
@@ -15,6 +15,15 @@ scalar Uint32
15
15
 
16
16
  scalar Uint64
17
17
 
18
+ input AigneConfigInput {
19
+ provider: String
20
+ model: String
21
+ key: String
22
+ url: String
23
+ accessKeyId: String
24
+ secretAccessKey: String
25
+ }
26
+
18
27
  input AutoBackupInput {
19
28
  enabled: Boolean
20
29
  }
@@ -496,6 +505,7 @@ input RequestBlockletSettingsInput {
496
505
  enableSessionHardening: Boolean
497
506
  invite: InviteSettingsInput
498
507
  gateway: BlockletGatewayInput
508
+ aigne: AigneConfigInput
499
509
  }
500
510
 
501
511
  input RequestCheckDomainsInput {
@@ -571,6 +581,13 @@ input RequestConnectByStudioInput {
571
581
  messageId: String
572
582
  }
573
583
 
584
+ input RequestConnectToAigneInput {
585
+ did: String
586
+ baseUrl: String
587
+ provider: String
588
+ model: String
589
+ }
590
+
574
591
  input RequestConnectToEndpointInput {
575
592
  did: String
576
593
  endpointId: String
@@ -804,6 +821,12 @@ input RequestDisconnectFromStoreInput {
804
821
  storeScope: String
805
822
  }
806
823
 
824
+ input RequestDisconnectToAigneInput {
825
+ did: String
826
+ url: String
827
+ key: String
828
+ }
829
+
807
830
  input RequestDomainDNSInput {
808
831
  teamDid: String
809
832
  domain: String
@@ -1438,6 +1461,10 @@ input RequestVerifyAccessKeyInput {
1438
1461
  componentDid: String
1439
1462
  }
1440
1463
 
1464
+ input RequestVerifyAigneConnectionInput {
1465
+ did: String
1466
+ }
1467
+
1441
1468
  input RequestVersionedBlockletInput {
1442
1469
  type: String
1443
1470
  did: String
@@ -1501,6 +1528,7 @@ input SessionConfigInput {
1501
1528
  email: LoginEmailSettingsInput
1502
1529
  phone: LoginPhoneSettingsInput
1503
1530
  salt: String
1531
+ enableBlacklist: Boolean
1504
1532
  }
1505
1533
 
1506
1534
  input SpaceGatewayInput {
@@ -1726,6 +1754,15 @@ type AccessKey {
1726
1754
  expireAt: Uint32
1727
1755
  }
1728
1756
 
1757
+ type AigneConfig {
1758
+ provider: String
1759
+ model: String
1760
+ key: String
1761
+ url: String
1762
+ accessKeyId: String
1763
+ secretAccessKey: String
1764
+ }
1765
+
1729
1766
  type AuditLog {
1730
1767
  id: String
1731
1768
  scope: String
@@ -2081,6 +2118,7 @@ type BlockletSettings {
2081
2118
  endpointList: [ConnectEndpoint!]
2082
2119
  gateway: Gateway
2083
2120
  enableSessionHardening: Boolean
2121
+ aigne: AigneConfig
2084
2122
  }
2085
2123
 
2086
2124
  type BlockletState {
@@ -2843,6 +2881,7 @@ type Requirement {
2843
2881
  os: Any
2844
2882
  cpu: Any
2845
2883
  fuels: [Fuel!]
2884
+ aigne: Boolean
2846
2885
  }
2847
2886
 
2848
2887
  type ResponseAccessKey {
@@ -3493,6 +3532,7 @@ type SessionConfig {
3493
3532
  email: LoginEmailSettings
3494
3533
  phone: LoginPhoneSettings
3495
3534
  salt: String
3535
+ enableBlacklist: Boolean
3496
3536
  }
3497
3537
 
3498
3538
  type SimpleBlockletMeta {
@@ -4043,6 +4083,9 @@ type Mutation {
4043
4083
  connectToEndpoint(input: RequestConnectToEndpointInput): ResponseConnectToEndpoint
4044
4084
  disconnectFromEndpoint(input: RequestDisconnectFromEndpointInput): GeneralResponse
4045
4085
  publishToEndpoint(input: RequestPublishToEndpointInput): ResponsePublishToEndpoint
4086
+ connectToAigne(input: RequestConnectToAigneInput): ResponseConnectToEndpoint
4087
+ disconnectToAigne(input: RequestDisconnectToAigneInput): GeneralResponse
4088
+ verifyAigneConnection(input: RequestVerifyAigneConnectionInput): GeneralResponse
4046
4089
  }
4047
4090
 
4048
4091
  type Query {
@@ -15,6 +15,15 @@ scalar Uint32
15
15
 
16
16
  scalar Uint64
17
17
 
18
+ input AigneConfigInput {
19
+ provider: String
20
+ model: String
21
+ key: String
22
+ url: String
23
+ accessKeyId: String
24
+ secretAccessKey: String
25
+ }
26
+
18
27
  input AutoBackupInput {
19
28
  enabled: Boolean
20
29
  }
@@ -496,6 +505,7 @@ input RequestBlockletSettingsInput {
496
505
  enableSessionHardening: Boolean
497
506
  invite: InviteSettingsInput
498
507
  gateway: BlockletGatewayInput
508
+ aigne: AigneConfigInput
499
509
  }
500
510
 
501
511
  input RequestCheckDomainsInput {
@@ -571,6 +581,13 @@ input RequestConnectByStudioInput {
571
581
  messageId: String
572
582
  }
573
583
 
584
+ input RequestConnectToAigneInput {
585
+ did: String
586
+ baseUrl: String
587
+ provider: String
588
+ model: String
589
+ }
590
+
574
591
  input RequestConnectToEndpointInput {
575
592
  did: String
576
593
  endpointId: String
@@ -804,6 +821,12 @@ input RequestDisconnectFromStoreInput {
804
821
  storeScope: String
805
822
  }
806
823
 
824
+ input RequestDisconnectToAigneInput {
825
+ did: String
826
+ url: String
827
+ key: String
828
+ }
829
+
807
830
  input RequestDomainDNSInput {
808
831
  teamDid: String
809
832
  domain: String
@@ -1438,6 +1461,10 @@ input RequestVerifyAccessKeyInput {
1438
1461
  componentDid: String
1439
1462
  }
1440
1463
 
1464
+ input RequestVerifyAigneConnectionInput {
1465
+ did: String
1466
+ }
1467
+
1441
1468
  input RequestVersionedBlockletInput {
1442
1469
  type: String
1443
1470
  did: String
@@ -1501,6 +1528,7 @@ input SessionConfigInput {
1501
1528
  email: LoginEmailSettingsInput
1502
1529
  phone: LoginPhoneSettingsInput
1503
1530
  salt: String
1531
+ enableBlacklist: Boolean
1504
1532
  }
1505
1533
 
1506
1534
  input SpaceGatewayInput {
@@ -1726,6 +1754,15 @@ type AccessKey {
1726
1754
  expireAt: Uint32
1727
1755
  }
1728
1756
 
1757
+ type AigneConfig {
1758
+ provider: String
1759
+ model: String
1760
+ key: String
1761
+ url: String
1762
+ accessKeyId: String
1763
+ secretAccessKey: String
1764
+ }
1765
+
1729
1766
  type AuditLog {
1730
1767
  id: String
1731
1768
  scope: String
@@ -2081,6 +2118,7 @@ type BlockletSettings {
2081
2118
  endpointList: [ConnectEndpoint!]
2082
2119
  gateway: Gateway
2083
2120
  enableSessionHardening: Boolean
2121
+ aigne: AigneConfig
2084
2122
  }
2085
2123
 
2086
2124
  type BlockletState {
@@ -2843,6 +2881,7 @@ type Requirement {
2843
2881
  os: Any
2844
2882
  cpu: Any
2845
2883
  fuels: [Fuel!]
2884
+ aigne: Boolean
2846
2885
  }
2847
2886
 
2848
2887
  type ResponseAccessKey {
@@ -3493,6 +3532,7 @@ type SessionConfig {
3493
3532
  email: LoginEmailSettings
3494
3533
  phone: LoginPhoneSettings
3495
3534
  salt: String
3535
+ enableBlacklist: Boolean
3496
3536
  }
3497
3537
 
3498
3538
  type SimpleBlockletMeta {
@@ -4049,6 +4089,9 @@ type Mutation {
4049
4089
  connectToEndpoint(input: RequestConnectToEndpointInput): ResponseConnectToEndpoint
4050
4090
  disconnectFromEndpoint(input: RequestDisconnectFromEndpointInput): GeneralResponse
4051
4091
  publishToEndpoint(input: RequestPublishToEndpointInput): ResponsePublishToEndpoint
4092
+ connectToAigne(input: RequestConnectToAigneInput): ResponseConnectToEndpoint
4093
+ disconnectToAigne(input: RequestDisconnectToAigneInput): GeneralResponse
4094
+ verifyAigneConnection(input: RequestVerifyAigneConnectionInput): GeneralResponse
4052
4095
  }
4053
4096
 
4054
4097
  type Query {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.47-beta-20250721-073316-a6de1fa3",
6
+ "version": "1.16.47-beta-20250723-114212-8da08071",
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": "2163d72cfb533e6dbcedd7082c45d7f3dbe3cd90",
16
+ "gitHead": "39a8ac5b8ca38755da47fd6f895d4fb0e19c0093",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }