@abtnode/schema 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/index.js +56 -0
- package/lib/schema.graphqls +56 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -41,6 +41,12 @@ input BlockletAccessPolicyQueryInput {
|
|
41
41
|
search: String
|
42
42
|
}
|
43
43
|
|
44
|
+
input BlockletDockerInput {
|
45
|
+
dockerImage: String
|
46
|
+
dockerArgs: [DockerRunKeyValuePairInput!]
|
47
|
+
dockerEnvs: [DockerEnvKeyValuePairInput!]
|
48
|
+
}
|
49
|
+
|
44
50
|
input BlockletResponseHeaderPolicyInput {
|
45
51
|
id: String
|
46
52
|
name: String
|
@@ -131,6 +137,26 @@ input ConnectedAccountInfoInput {
|
|
131
137
|
extraData: Any
|
132
138
|
}
|
133
139
|
|
140
|
+
input DockerEnvKeyValuePairInput {
|
141
|
+
key: String
|
142
|
+
value: String
|
143
|
+
description: String
|
144
|
+
secure: Boolean
|
145
|
+
shared: Boolean
|
146
|
+
required: Boolean
|
147
|
+
custom: String
|
148
|
+
}
|
149
|
+
|
150
|
+
input DockerRunKeyValuePairInput {
|
151
|
+
key: String
|
152
|
+
value: String
|
153
|
+
path: String
|
154
|
+
type: String
|
155
|
+
name: String
|
156
|
+
prefix: String
|
157
|
+
protocol: String
|
158
|
+
}
|
159
|
+
|
134
160
|
input DownloadTokenInput {
|
135
161
|
did: String
|
136
162
|
token: String
|
@@ -475,6 +501,8 @@ input RequestCreateReleaseInput {
|
|
475
501
|
blockletHomepage: String
|
476
502
|
blockletVideos: [String!]
|
477
503
|
blockletRepository: String
|
504
|
+
contentType: String
|
505
|
+
blockletDocker: BlockletDockerInput
|
478
506
|
}
|
479
507
|
|
480
508
|
input RequestCreateRoleInput {
|
@@ -1411,6 +1439,12 @@ type BlockletDist {
|
|
1411
1439
|
integrity: String
|
1412
1440
|
}
|
1413
1441
|
|
1442
|
+
type BlockletDocker {
|
1443
|
+
dockerImage: String
|
1444
|
+
dockerArgs: [DockerRunKeyValuePair!]
|
1445
|
+
dockerEnvs: [DockerEnvKeyValuePair!]
|
1446
|
+
}
|
1447
|
+
|
1414
1448
|
type BlockletEngine {
|
1415
1449
|
name: String
|
1416
1450
|
displayName: String
|
@@ -1796,6 +1830,26 @@ type DiskInfo {
|
|
1796
1830
|
blocklets: Float32
|
1797
1831
|
}
|
1798
1832
|
|
1833
|
+
type DockerEnvKeyValuePair {
|
1834
|
+
key: String
|
1835
|
+
value: String
|
1836
|
+
description: String
|
1837
|
+
secure: Boolean
|
1838
|
+
shared: Boolean
|
1839
|
+
required: Boolean
|
1840
|
+
custom: String
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
type DockerRunKeyValuePair {
|
1844
|
+
key: String
|
1845
|
+
value: String
|
1846
|
+
path: String
|
1847
|
+
type: String
|
1848
|
+
name: String
|
1849
|
+
prefix: String
|
1850
|
+
protocol: String
|
1851
|
+
}
|
1852
|
+
|
1799
1853
|
type Environment {
|
1800
1854
|
name: String
|
1801
1855
|
description: String
|
@@ -2176,6 +2230,8 @@ type Release {
|
|
2176
2230
|
blockletHomepage: String
|
2177
2231
|
blockletVideos: [String!]
|
2178
2232
|
blockletRepository: String
|
2233
|
+
contentType: String
|
2234
|
+
blockletDocker: BlockletDocker
|
2179
2235
|
}
|
2180
2236
|
|
2181
2237
|
type ReleaseComponent {
|
package/lib/schema.graphqls
CHANGED
@@ -41,6 +41,12 @@ input BlockletAccessPolicyQueryInput {
|
|
41
41
|
search: String
|
42
42
|
}
|
43
43
|
|
44
|
+
input BlockletDockerInput {
|
45
|
+
dockerImage: String
|
46
|
+
dockerArgs: [DockerRunKeyValuePairInput!]
|
47
|
+
dockerEnvs: [DockerEnvKeyValuePairInput!]
|
48
|
+
}
|
49
|
+
|
44
50
|
input BlockletResponseHeaderPolicyInput {
|
45
51
|
id: String
|
46
52
|
name: String
|
@@ -131,6 +137,26 @@ input ConnectedAccountInfoInput {
|
|
131
137
|
extraData: Any
|
132
138
|
}
|
133
139
|
|
140
|
+
input DockerEnvKeyValuePairInput {
|
141
|
+
key: String
|
142
|
+
value: String
|
143
|
+
description: String
|
144
|
+
secure: Boolean
|
145
|
+
shared: Boolean
|
146
|
+
required: Boolean
|
147
|
+
custom: String
|
148
|
+
}
|
149
|
+
|
150
|
+
input DockerRunKeyValuePairInput {
|
151
|
+
key: String
|
152
|
+
value: String
|
153
|
+
path: String
|
154
|
+
type: String
|
155
|
+
name: String
|
156
|
+
prefix: String
|
157
|
+
protocol: String
|
158
|
+
}
|
159
|
+
|
134
160
|
input DownloadTokenInput {
|
135
161
|
did: String
|
136
162
|
token: String
|
@@ -475,6 +501,8 @@ input RequestCreateReleaseInput {
|
|
475
501
|
blockletHomepage: String
|
476
502
|
blockletVideos: [String!]
|
477
503
|
blockletRepository: String
|
504
|
+
contentType: String
|
505
|
+
blockletDocker: BlockletDockerInput
|
478
506
|
}
|
479
507
|
|
480
508
|
input RequestCreateRoleInput {
|
@@ -1411,6 +1439,12 @@ type BlockletDist {
|
|
1411
1439
|
integrity: String
|
1412
1440
|
}
|
1413
1441
|
|
1442
|
+
type BlockletDocker {
|
1443
|
+
dockerImage: String
|
1444
|
+
dockerArgs: [DockerRunKeyValuePair!]
|
1445
|
+
dockerEnvs: [DockerEnvKeyValuePair!]
|
1446
|
+
}
|
1447
|
+
|
1414
1448
|
type BlockletEngine {
|
1415
1449
|
name: String
|
1416
1450
|
displayName: String
|
@@ -1796,6 +1830,26 @@ type DiskInfo {
|
|
1796
1830
|
blocklets: Float32
|
1797
1831
|
}
|
1798
1832
|
|
1833
|
+
type DockerEnvKeyValuePair {
|
1834
|
+
key: String
|
1835
|
+
value: String
|
1836
|
+
description: String
|
1837
|
+
secure: Boolean
|
1838
|
+
shared: Boolean
|
1839
|
+
required: Boolean
|
1840
|
+
custom: String
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
type DockerRunKeyValuePair {
|
1844
|
+
key: String
|
1845
|
+
value: String
|
1846
|
+
path: String
|
1847
|
+
type: String
|
1848
|
+
name: String
|
1849
|
+
prefix: String
|
1850
|
+
protocol: String
|
1851
|
+
}
|
1852
|
+
|
1799
1853
|
type Environment {
|
1800
1854
|
name: String
|
1801
1855
|
description: String
|
@@ -2176,6 +2230,8 @@ type Release {
|
|
2176
2230
|
blockletHomepage: String
|
2177
2231
|
blockletVideos: [String!]
|
2178
2232
|
blockletRepository: String
|
2233
|
+
contentType: String
|
2234
|
+
blockletDocker: BlockletDocker
|
2179
2235
|
}
|
2180
2236
|
|
2181
2237
|
type ReleaseComponent {
|
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.38-beta-20250110-003414-d3c1bfbd",
|
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": "56883ef3e5f208f18c3fe4eedfb664be8e2b4fa7",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|