@abtnode/schema 1.16.42-beta-20250402-131159-7647e64d → 1.16.42-beta-20250407-220350-e3782a91
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 +39 -6
- package/lib/schema.graphqls +39 -6
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -136,9 +136,6 @@ input ConfigNavigationInput {
|
|
|
136
136
|
role: String
|
|
137
137
|
visible: Boolean
|
|
138
138
|
from: String
|
|
139
|
-
activeIcon: String
|
|
140
|
-
color: String
|
|
141
|
-
activeColor: String
|
|
142
139
|
description: String
|
|
143
140
|
}
|
|
144
141
|
|
|
@@ -758,6 +755,7 @@ input RequestGetBlockletSecurityRulesInput {
|
|
|
758
755
|
|
|
759
756
|
input RequestGetBlockletsInput {
|
|
760
757
|
useCache: Boolean
|
|
758
|
+
includeRuntimeInfo: Boolean
|
|
761
759
|
}
|
|
762
760
|
|
|
763
761
|
input RequestGetDynamicComponentsInput {
|
|
@@ -1815,6 +1813,11 @@ type BlockletMigrateRecord {
|
|
|
1815
1813
|
at: String
|
|
1816
1814
|
}
|
|
1817
1815
|
|
|
1816
|
+
type BlockletPassport {
|
|
1817
|
+
passports: Uint32
|
|
1818
|
+
activePassports: Uint32
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1818
1821
|
type BlockletPayment {
|
|
1819
1822
|
price: [BlockletPaymentPrice!]
|
|
1820
1823
|
share: [BlockletPaymentShare!]
|
|
@@ -1901,6 +1904,7 @@ type BlockletSettings {
|
|
|
1901
1904
|
autoCheckUpdate: AutoCheckUpdate
|
|
1902
1905
|
autoBackup: AutoBackup
|
|
1903
1906
|
invite: InviteSettings
|
|
1907
|
+
theme: Theme
|
|
1904
1908
|
}
|
|
1905
1909
|
|
|
1906
1910
|
type BlockletState {
|
|
@@ -1963,6 +1967,11 @@ type BlockletStore {
|
|
|
1963
1967
|
scope: String
|
|
1964
1968
|
}
|
|
1965
1969
|
|
|
1970
|
+
type BlockletUsers {
|
|
1971
|
+
users: Uint32
|
|
1972
|
+
approvedUsers: Uint32
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1966
1975
|
type BlockletVaultRecord {
|
|
1967
1976
|
pk: String
|
|
1968
1977
|
did: String
|
|
@@ -2062,9 +2071,6 @@ type ConfigNavigation {
|
|
|
2062
2071
|
role: String
|
|
2063
2072
|
visible: Boolean
|
|
2064
2073
|
from: String
|
|
2065
|
-
activeIcon: String
|
|
2066
|
-
color: String
|
|
2067
|
-
activeColor: String
|
|
2068
2074
|
description: String
|
|
2069
2075
|
}
|
|
2070
2076
|
|
|
@@ -2477,6 +2483,17 @@ type Paging {
|
|
|
2477
2483
|
page: Uint32
|
|
2478
2484
|
}
|
|
2479
2485
|
|
|
2486
|
+
type Palette {
|
|
2487
|
+
primary: PaletteColor
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
type PaletteColor {
|
|
2491
|
+
main: String
|
|
2492
|
+
light: String
|
|
2493
|
+
dark: String
|
|
2494
|
+
contrastText: String
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2480
2497
|
type Passport {
|
|
2481
2498
|
id: String
|
|
2482
2499
|
name: String
|
|
@@ -2636,6 +2653,12 @@ type ResponseBlockletDiff {
|
|
|
2636
2653
|
blockletDiff: BlockletDiff
|
|
2637
2654
|
}
|
|
2638
2655
|
|
|
2656
|
+
type ResponseBlockletInfo {
|
|
2657
|
+
user: BlockletUsers
|
|
2658
|
+
passport: BlockletPassport
|
|
2659
|
+
backup: Backup
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2639
2662
|
type ResponseBlockletMeta {
|
|
2640
2663
|
code: StatusCode
|
|
2641
2664
|
meta: Any
|
|
@@ -3236,6 +3259,15 @@ type Tag {
|
|
|
3236
3259
|
updatedAt: Uint32
|
|
3237
3260
|
}
|
|
3238
3261
|
|
|
3262
|
+
type Theme {
|
|
3263
|
+
light: ThemeOptions
|
|
3264
|
+
dark: ThemeOptions
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
type ThemeOptions {
|
|
3268
|
+
palette: Palette
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3239
3271
|
type TrafficInsight {
|
|
3240
3272
|
did: String
|
|
3241
3273
|
date: String
|
|
@@ -3790,4 +3822,5 @@ type Query {
|
|
|
3790
3822
|
getPassportsByRole(input: RequestPassportInput): ResponsePassport
|
|
3791
3823
|
getPassportLogs(input: RequestPassportLogInput): ResponsePassportLog
|
|
3792
3824
|
getRelatedPassports(input: RequestRelatedPassportsInput): ResponsePassport
|
|
3825
|
+
getBlockletBaseInfo(input: TeamInput): ResponseBlockletInfo
|
|
3793
3826
|
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -136,9 +136,6 @@ input ConfigNavigationInput {
|
|
|
136
136
|
role: String
|
|
137
137
|
visible: Boolean
|
|
138
138
|
from: String
|
|
139
|
-
activeIcon: String
|
|
140
|
-
color: String
|
|
141
|
-
activeColor: String
|
|
142
139
|
description: String
|
|
143
140
|
}
|
|
144
141
|
|
|
@@ -758,6 +755,7 @@ input RequestGetBlockletSecurityRulesInput {
|
|
|
758
755
|
|
|
759
756
|
input RequestGetBlockletsInput {
|
|
760
757
|
useCache: Boolean
|
|
758
|
+
includeRuntimeInfo: Boolean
|
|
761
759
|
}
|
|
762
760
|
|
|
763
761
|
input RequestGetDynamicComponentsInput {
|
|
@@ -1815,6 +1813,11 @@ type BlockletMigrateRecord {
|
|
|
1815
1813
|
at: String
|
|
1816
1814
|
}
|
|
1817
1815
|
|
|
1816
|
+
type BlockletPassport {
|
|
1817
|
+
passports: Uint32
|
|
1818
|
+
activePassports: Uint32
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1818
1821
|
type BlockletPayment {
|
|
1819
1822
|
price: [BlockletPaymentPrice!]
|
|
1820
1823
|
share: [BlockletPaymentShare!]
|
|
@@ -1901,6 +1904,7 @@ type BlockletSettings {
|
|
|
1901
1904
|
autoCheckUpdate: AutoCheckUpdate
|
|
1902
1905
|
autoBackup: AutoBackup
|
|
1903
1906
|
invite: InviteSettings
|
|
1907
|
+
theme: Theme
|
|
1904
1908
|
}
|
|
1905
1909
|
|
|
1906
1910
|
type BlockletState {
|
|
@@ -1963,6 +1967,11 @@ type BlockletStore {
|
|
|
1963
1967
|
scope: String
|
|
1964
1968
|
}
|
|
1965
1969
|
|
|
1970
|
+
type BlockletUsers {
|
|
1971
|
+
users: Uint32
|
|
1972
|
+
approvedUsers: Uint32
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1966
1975
|
type BlockletVaultRecord {
|
|
1967
1976
|
pk: String
|
|
1968
1977
|
did: String
|
|
@@ -2062,9 +2071,6 @@ type ConfigNavigation {
|
|
|
2062
2071
|
role: String
|
|
2063
2072
|
visible: Boolean
|
|
2064
2073
|
from: String
|
|
2065
|
-
activeIcon: String
|
|
2066
|
-
color: String
|
|
2067
|
-
activeColor: String
|
|
2068
2074
|
description: String
|
|
2069
2075
|
}
|
|
2070
2076
|
|
|
@@ -2477,6 +2483,17 @@ type Paging {
|
|
|
2477
2483
|
page: Uint32
|
|
2478
2484
|
}
|
|
2479
2485
|
|
|
2486
|
+
type Palette {
|
|
2487
|
+
primary: PaletteColor
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
type PaletteColor {
|
|
2491
|
+
main: String
|
|
2492
|
+
light: String
|
|
2493
|
+
dark: String
|
|
2494
|
+
contrastText: String
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2480
2497
|
type Passport {
|
|
2481
2498
|
id: String
|
|
2482
2499
|
name: String
|
|
@@ -2636,6 +2653,12 @@ type ResponseBlockletDiff {
|
|
|
2636
2653
|
blockletDiff: BlockletDiff
|
|
2637
2654
|
}
|
|
2638
2655
|
|
|
2656
|
+
type ResponseBlockletInfo {
|
|
2657
|
+
user: BlockletUsers
|
|
2658
|
+
passport: BlockletPassport
|
|
2659
|
+
backup: Backup
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2639
2662
|
type ResponseBlockletMeta {
|
|
2640
2663
|
code: StatusCode
|
|
2641
2664
|
meta: Any
|
|
@@ -3236,6 +3259,15 @@ type Tag {
|
|
|
3236
3259
|
updatedAt: Uint32
|
|
3237
3260
|
}
|
|
3238
3261
|
|
|
3262
|
+
type Theme {
|
|
3263
|
+
light: ThemeOptions
|
|
3264
|
+
dark: ThemeOptions
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
type ThemeOptions {
|
|
3268
|
+
palette: Palette
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3239
3271
|
type TrafficInsight {
|
|
3240
3272
|
did: String
|
|
3241
3273
|
date: String
|
|
@@ -3792,5 +3824,6 @@ type Query {
|
|
|
3792
3824
|
getPassportsByRole(input: RequestPassportInput): ResponsePassport
|
|
3793
3825
|
getPassportLogs(input: RequestPassportLogInput): ResponsePassportLog
|
|
3794
3826
|
getRelatedPassports(input: RequestRelatedPassportsInput): ResponsePassport
|
|
3827
|
+
getBlockletBaseInfo(input: TeamInput): ResponseBlockletInfo
|
|
3795
3828
|
}
|
|
3796
3829
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.42-beta-
|
|
6
|
+
"version": "1.16.42-beta-20250407-220350-e3782a91",
|
|
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": "e897c72af748f25cccde2e595410d1a2fb672289",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|