@abtnode/schema 1.16.19-beta-710018ca → 1.16.19-beta-ba354e01
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 +1 -12
- package/lib/schema.graphqls +1 -12
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -181,10 +181,6 @@ input RequestBlockletDiffInput {
|
|
|
181
181
|
rootDid: String
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
input RequestBlockletForLauncherInput {
|
|
185
|
-
did: String
|
|
186
|
-
}
|
|
187
|
-
|
|
188
184
|
input RequestBlockletMetaInput {
|
|
189
185
|
did: String
|
|
190
186
|
storeUrl: String
|
|
@@ -1571,6 +1567,7 @@ type Project {
|
|
|
1571
1567
|
blockletScreenshots: [String!]
|
|
1572
1568
|
createdAt: String
|
|
1573
1569
|
updatedAt: String
|
|
1570
|
+
componentDid: String
|
|
1574
1571
|
}
|
|
1575
1572
|
|
|
1576
1573
|
type Release {
|
|
@@ -1626,13 +1623,6 @@ type ResponseBlockletDiff {
|
|
|
1626
1623
|
blockletDiff: BlockletDiff
|
|
1627
1624
|
}
|
|
1628
1625
|
|
|
1629
|
-
type ResponseBlockletForLauncher {
|
|
1630
|
-
code: StatusCode
|
|
1631
|
-
did: String
|
|
1632
|
-
isInstalled: Boolean
|
|
1633
|
-
isRunning: Boolean
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
1626
|
type ResponseBlockletMeta {
|
|
1637
1627
|
code: StatusCode
|
|
1638
1628
|
meta: Any
|
|
@@ -2364,7 +2354,6 @@ type Mutation {
|
|
|
2364
2354
|
type Query {
|
|
2365
2355
|
getBlocklet(input: RequestBlockletDetailInput): ResponseBlocklet
|
|
2366
2356
|
getBlockletMetaFromUrl(input: RequestBlockletMetaFromUrlInput): ResponseBlockletMetaFromUrl
|
|
2367
|
-
getBlockletForLauncher(input: RequestBlockletForLauncherInput): ResponseBlockletForLauncher
|
|
2368
2357
|
getBlockletDiff(input: RequestBlockletDiffInput): ResponseBlockletDiff
|
|
2369
2358
|
getBlocklets(input: RequestGetBlockletsInput): ResponseGetBlocklets
|
|
2370
2359
|
getBlockletRuntimeHistory(input: RequestBlockletRuntimeHistoryInput): ResponseBlockletRuntimeHistory
|
package/lib/schema.graphqls
CHANGED
|
@@ -181,10 +181,6 @@ input RequestBlockletDiffInput {
|
|
|
181
181
|
rootDid: String
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
input RequestBlockletForLauncherInput {
|
|
185
|
-
did: String
|
|
186
|
-
}
|
|
187
|
-
|
|
188
184
|
input RequestBlockletMetaInput {
|
|
189
185
|
did: String
|
|
190
186
|
storeUrl: String
|
|
@@ -1571,6 +1567,7 @@ type Project {
|
|
|
1571
1567
|
blockletScreenshots: [String!]
|
|
1572
1568
|
createdAt: String
|
|
1573
1569
|
updatedAt: String
|
|
1570
|
+
componentDid: String
|
|
1574
1571
|
}
|
|
1575
1572
|
|
|
1576
1573
|
type Release {
|
|
@@ -1626,13 +1623,6 @@ type ResponseBlockletDiff {
|
|
|
1626
1623
|
blockletDiff: BlockletDiff
|
|
1627
1624
|
}
|
|
1628
1625
|
|
|
1629
|
-
type ResponseBlockletForLauncher {
|
|
1630
|
-
code: StatusCode
|
|
1631
|
-
did: String
|
|
1632
|
-
isInstalled: Boolean
|
|
1633
|
-
isRunning: Boolean
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
1626
|
type ResponseBlockletMeta {
|
|
1637
1627
|
code: StatusCode
|
|
1638
1628
|
meta: Any
|
|
@@ -2366,7 +2356,6 @@ type Mutation {
|
|
|
2366
2356
|
type Query {
|
|
2367
2357
|
getBlocklet(input: RequestBlockletDetailInput): ResponseBlocklet
|
|
2368
2358
|
getBlockletMetaFromUrl(input: RequestBlockletMetaFromUrlInput): ResponseBlockletMetaFromUrl
|
|
2369
|
-
getBlockletForLauncher(input: RequestBlockletForLauncherInput): ResponseBlockletForLauncher
|
|
2370
2359
|
getBlockletDiff(input: RequestBlockletDiffInput): ResponseBlockletDiff
|
|
2371
2360
|
getBlocklets(input: RequestGetBlockletsInput): ResponseGetBlocklets
|
|
2372
2361
|
getBlockletRuntimeHistory(input: RequestBlockletRuntimeHistoryInput): ResponseBlockletRuntimeHistory
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.19-beta-
|
|
6
|
+
"version": "1.16.19-beta-ba354e01",
|
|
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": "d685f8ca8f2fe49298aa0e94f2f15e1e7ebf761b",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|