@abtnode/types 1.16.37 → 1.16.38-beta-20250110-003414-d3c1bfbd

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
@@ -930,6 +930,8 @@ export type TRequestCreateRelease = {
930
930
  blockletHomepage: string;
931
931
  blockletVideos: string[];
932
932
  blockletRepository: string;
933
+ contentType: string;
934
+ blockletDocker?: type_pb.TBlockletDocker;
933
935
  };
934
936
  export type TResponseRelease = {
935
937
  code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
package/lib/type_pb.d.ts CHANGED
@@ -1089,6 +1089,8 @@ export type TRelease = {
1089
1089
  blockletHomepage: string;
1090
1090
  blockletVideos: string[];
1091
1091
  blockletRepository: string;
1092
+ contentType: string;
1093
+ blockletDocker?: TBlockletDocker;
1092
1094
  };
1093
1095
  export type TBlockletResource = {
1094
1096
  exportApi: string;
@@ -1147,3 +1149,26 @@ export type TBlockletSecurityRule = {
1147
1149
  accessPolicy?: TBlockletAccessPolicy;
1148
1150
  responseHeaderPolicy?: TBlockletResponseHeaderPolicy;
1149
1151
  };
1152
+ export type TDockerRunKeyValuePair = {
1153
+ key: string;
1154
+ value: string;
1155
+ path: string;
1156
+ type: string;
1157
+ name: string;
1158
+ prefix: string;
1159
+ protocol: string;
1160
+ };
1161
+ export type TDockerEnvKeyValuePair = {
1162
+ key: string;
1163
+ value: string;
1164
+ description: string;
1165
+ secure: boolean;
1166
+ shared: boolean;
1167
+ required: boolean;
1168
+ custom: string;
1169
+ };
1170
+ export type TBlockletDocker = {
1171
+ dockerImage: string;
1172
+ dockerArgs: TDockerRunKeyValuePair[];
1173
+ dockerEnvs: TDockerEnvKeyValuePair[];
1174
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.37",
3
+ "version": "1.16.38-beta-20250110-003414-d3c1bfbd",
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": "3e06fd31ca113b7555c3eec22c9087e256b92f44"
39
+ "gitHead": "56883ef3e5f208f18c3fe4eedfb664be8e2b4fa7"
40
40
  }