Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f91f4eb6a | ||
|
|
b9fd355a0e | ||
|
|
39ec9a2e31 | ||
|
|
6f77228f73 | ||
|
|
475f53cdcf |
@@ -17,6 +17,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
curl -fsSL -o /usr/local/bin/yarn https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js
|
curl -fsSL -o /usr/local/bin/yarn https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js
|
||||||
chmod +x /usr/local/bin/yarn
|
chmod +x /usr/local/bin/yarn
|
||||||
|
- name: Install jq
|
||||||
|
run: |
|
||||||
|
apt update && apt install -y jq
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
@@ -24,7 +27,7 @@ jobs:
|
|||||||
- run: yarn
|
- run: yarn
|
||||||
- name: Run yarn build
|
- name: Run yarn build
|
||||||
run: |
|
run: |
|
||||||
yarn dist
|
LACONIC_HOSTED_CONFIG_FILE=config-hosted.yml yarn dist
|
||||||
- name: Configure git.vdb.to npm registry
|
- name: Configure git.vdb.to npm registry
|
||||||
run: |
|
run: |
|
||||||
npm config set registry https://git.vdb.to/api/packages/cerc-io/npm/
|
npm config set registry https://git.vdb.to/api/packages/cerc-io/npm/
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/console-app",
|
"name": "@cerc-io/console-app",
|
||||||
"version": "1.3.3",
|
"version": "1.3.9",
|
||||||
"description": "Laconic Console",
|
"description": "Laconic Console",
|
||||||
"repository": "https://github.com/cerc-io/laconic-console",
|
"repository": "https://github.com/cerc-io/laconic-console",
|
||||||
"main": "dist/es/index.js",
|
"main": "dist/es/index.js",
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
"@apollo/react-components": "^4.0.0",
|
"@apollo/react-components": "^4.0.0",
|
||||||
"@apollo/react-hooks": "^4.0.0",
|
"@apollo/react-hooks": "^4.0.0",
|
||||||
"@babel/runtime": "^7.21.0",
|
"@babel/runtime": "^7.21.0",
|
||||||
"@cerc-io/laconic-sdk": "^0.1.14",
|
"@cerc-io/laconic-sdk": "^0.1.15",
|
||||||
"@lirewine/debug": "1.0.0-beta.78",
|
"@lirewine/debug": "1.0.0-beta.78",
|
||||||
"@lirewine/gem-core": "1.0.0-beta.28",
|
"@lirewine/gem-core": "1.0.0-beta.28",
|
||||||
"@lirewine/react-ux": "1.1.0-beta.1",
|
"@lirewine/react-ux": "1.1.0-beta.1",
|
||||||
|
|||||||
@@ -10,8 +10,41 @@ import LinkIcon from '@material-ui/icons/ExitToApp';
|
|||||||
import { getServiceUrl } from '../util/config';
|
import { getServiceUrl } from '../util/config';
|
||||||
|
|
||||||
const QUERY = `
|
const QUERY = `
|
||||||
query {
|
fragment ValueParts on Value {
|
||||||
getRecordsByIds(ids: [ "%ID%" ]) {
|
... on BooleanValue {
|
||||||
|
bool: value
|
||||||
|
}
|
||||||
|
... on IntValue {
|
||||||
|
int: value
|
||||||
|
}
|
||||||
|
... on FloatValue {
|
||||||
|
float: value
|
||||||
|
}
|
||||||
|
... on StringValue {
|
||||||
|
string: value
|
||||||
|
}
|
||||||
|
... on BytesValue {
|
||||||
|
bytes: value
|
||||||
|
}
|
||||||
|
... on LinkValue {
|
||||||
|
link: value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment AttrParts on Attribute {
|
||||||
|
key
|
||||||
|
value {
|
||||||
|
...ValueParts
|
||||||
|
... on ArrayValue {
|
||||||
|
value {
|
||||||
|
...ValueParts
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
getRecordsByIds(ids: ["%ID%"]) {
|
||||||
id
|
id
|
||||||
names
|
names
|
||||||
bondId
|
bondId
|
||||||
@@ -19,12 +52,12 @@ const QUERY = `
|
|||||||
expiryTime
|
expiryTime
|
||||||
owners
|
owners
|
||||||
attributes {
|
attributes {
|
||||||
key
|
...AttrParts
|
||||||
value {
|
value {
|
||||||
string
|
... on MapValue {
|
||||||
json
|
map: value {
|
||||||
reference {
|
...AttrParts
|
||||||
id
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1037,10 +1037,10 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
|
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
|
||||||
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
|
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
|
||||||
|
|
||||||
"@cerc-io/laconic-sdk@^0.1.14":
|
"@cerc-io/laconic-sdk@^0.1.15":
|
||||||
version "0.1.14"
|
version "0.1.15"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Flaconic-sdk/-/0.1.14/laconic-sdk-0.1.14.tgz#67a255133c8907657878270f02b7084e11e23736"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Flaconic-sdk/-/0.1.15/laconic-sdk-0.1.15.tgz#1011a07933c6f1525e05e1ba7dd6a4e4df9b6edb"
|
||||||
integrity sha512-B9iR/PYripQwkXYuJBubz6IojixWLuJb7WZosCuitn+2hroH8+K/VhkBhdKHpJGMs6Z+3GneOzhu7XrLhn1j6Q==
|
integrity sha512-Ifl4JUGpckZsu2RkaGyGlObpu9B9GhwFVoDCt8WM9ApdtFnGEVSbDzRuh4f2vLj9WaZkbfdSI/Xci1Fugj3lZg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@cosmjs/amino" "^0.28.1"
|
"@cosmjs/amino" "^0.28.1"
|
||||||
"@cosmjs/crypto" "^0.28.1"
|
"@cosmjs/crypto" "^0.28.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user