@abtnode/types 1.16.47-beta-20250721-130532-61549a96 → 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/rpc_pb.d.ts CHANGED
@@ -904,6 +904,7 @@ export type TRequestBlockletSettings = {
904
904
  enableSessionHardening: boolean;
905
905
  invite?: type_pb.TInviteSettings;
906
906
  gateway?: type_pb.TBlockletGateway;
907
+ aigne?: type_pb.TAigneConfig;
907
908
  };
908
909
  export type TRequestGetLauncherSession = {
909
910
  launcherSessionId: string;
@@ -1371,6 +1372,20 @@ export type TRequestConnectToEndpoint = {
1371
1372
  endpointId: string;
1372
1373
  projectId: string;
1373
1374
  };
1375
+ export type TRequestConnectToAigne = {
1376
+ did: string;
1377
+ baseUrl: string;
1378
+ provider: string;
1379
+ model: string;
1380
+ };
1381
+ export type TRequestDisconnectToAigne = {
1382
+ did: string;
1383
+ url: string;
1384
+ key: string;
1385
+ };
1386
+ export type TRequestVerifyAigneConnection = {
1387
+ did: string;
1388
+ };
1374
1389
  export type TResponseConnectToEndpoint = {
1375
1390
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
1376
1391
  url: string;
package/lib/type_pb.d.ts CHANGED
@@ -416,6 +416,7 @@ export type TBlockletSettings = {
416
416
  endpointList: TConnectEndpoint[];
417
417
  gateway?: TGateway;
418
418
  enableSessionHardening: boolean;
419
+ aigne?: TAigneConfig;
419
420
  };
420
421
  export type TBlockletMetaService = {
421
422
  name: string;
@@ -478,6 +479,7 @@ export type TRequirement = {
478
479
  os?: Record<string, any>;
479
480
  cpu?: Record<string, any>;
480
481
  fuels: TFuel[];
482
+ aigne: boolean;
481
483
  };
482
484
  export type TFuel = {
483
485
  endpoint: string;
@@ -1089,6 +1091,14 @@ export type TBlockletGateway = {
1089
1091
  wafPolicy?: TWAFPolicy;
1090
1092
  teamDid: string;
1091
1093
  };
1094
+ export type TAigneConfig = {
1095
+ provider: string;
1096
+ model: string;
1097
+ key: string;
1098
+ url: string;
1099
+ accessKeyId: string;
1100
+ secretAccessKey: string;
1101
+ };
1092
1102
  export type TDelegationState = {
1093
1103
  delegated: boolean;
1094
1104
  };
@@ -1169,6 +1179,7 @@ export type TSessionConfig = {
1169
1179
  email?: TLoginEmailSettings;
1170
1180
  phone?: TLoginPhoneSettings;
1171
1181
  salt: string;
1182
+ enableBlacklist: boolean;
1172
1183
  };
1173
1184
  export type TFederatedConfigDetail = {
1174
1185
  appId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.47-beta-20250721-130532-61549a96",
3
+ "version": "1.16.47-beta-20250723-114212-8da08071",
4
4
  "description": "Typescript definitions generated from protobuf",
5
5
  "keywords": [
6
6
  "abtnode",
@@ -36,5 +36,5 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/ArcBlock/abt-node/issues"
38
38
  },
39
- "gitHead": "78041763148c9b98245c28ff176ff0fc9acbd071"
39
+ "gitHead": "39a8ac5b8ca38755da47fd6f895d4fb0e19c0093"
40
40
  }