@abtnode/schema 1.16.42 → 1.16.43-beta-20250420-132156-d732158a
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 -29
- package/lib/schema.graphqls +1 -29
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -1283,13 +1283,6 @@ input RequestUpdateUserInfoInput {
|
|
1283
1283
|
user: UserInfoInput
|
1284
1284
|
}
|
1285
1285
|
|
1286
|
-
input RequestUpdateUserProfileInput {
|
1287
|
-
teamDid: String
|
1288
|
-
did: String
|
1289
|
-
remark: String
|
1290
|
-
locale: String
|
1291
|
-
}
|
1292
|
-
|
1293
1286
|
input RequestUpdateUserTagsInput {
|
1294
1287
|
teamDid: String
|
1295
1288
|
did: String
|
@@ -1972,7 +1965,7 @@ type BlockletSettings {
|
|
1972
1965
|
autoCheckUpdate: AutoCheckUpdate
|
1973
1966
|
autoBackup: AutoBackup
|
1974
1967
|
invite: InviteSettings
|
1975
|
-
theme:
|
1968
|
+
theme: Any
|
1976
1969
|
}
|
1977
1970
|
|
1978
1971
|
type BlockletState {
|
@@ -2561,17 +2554,6 @@ type Paging {
|
|
2561
2554
|
page: Uint32
|
2562
2555
|
}
|
2563
2556
|
|
2564
|
-
type Palette {
|
2565
|
-
primary: PaletteColor
|
2566
|
-
}
|
2567
|
-
|
2568
|
-
type PaletteColor {
|
2569
|
-
main: String
|
2570
|
-
light: String
|
2571
|
-
dark: String
|
2572
|
-
contrastText: String
|
2573
|
-
}
|
2574
|
-
|
2575
2557
|
type Passport {
|
2576
2558
|
id: String
|
2577
2559
|
name: String
|
@@ -3358,15 +3340,6 @@ type Tag {
|
|
3358
3340
|
updatedAt: Uint32
|
3359
3341
|
}
|
3360
3342
|
|
3361
|
-
type Theme {
|
3362
|
-
light: ThemeOptions
|
3363
|
-
dark: ThemeOptions
|
3364
|
-
}
|
3365
|
-
|
3366
|
-
type ThemeOptions {
|
3367
|
-
palette: Palette
|
3368
|
-
}
|
3369
|
-
|
3370
3343
|
type TrafficInsight {
|
3371
3344
|
did: String
|
3372
3345
|
date: String
|
@@ -3781,7 +3754,6 @@ type Mutation {
|
|
3781
3754
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
3782
3755
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
3783
3756
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
3784
|
-
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
3785
3757
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
3786
3758
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
3787
3759
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
package/lib/schema.graphqls
CHANGED
@@ -1283,13 +1283,6 @@ input RequestUpdateUserInfoInput {
|
|
1283
1283
|
user: UserInfoInput
|
1284
1284
|
}
|
1285
1285
|
|
1286
|
-
input RequestUpdateUserProfileInput {
|
1287
|
-
teamDid: String
|
1288
|
-
did: String
|
1289
|
-
remark: String
|
1290
|
-
locale: String
|
1291
|
-
}
|
1292
|
-
|
1293
1286
|
input RequestUpdateUserTagsInput {
|
1294
1287
|
teamDid: String
|
1295
1288
|
did: String
|
@@ -1972,7 +1965,7 @@ type BlockletSettings {
|
|
1972
1965
|
autoCheckUpdate: AutoCheckUpdate
|
1973
1966
|
autoBackup: AutoBackup
|
1974
1967
|
invite: InviteSettings
|
1975
|
-
theme:
|
1968
|
+
theme: Any
|
1976
1969
|
}
|
1977
1970
|
|
1978
1971
|
type BlockletState {
|
@@ -2561,17 +2554,6 @@ type Paging {
|
|
2561
2554
|
page: Uint32
|
2562
2555
|
}
|
2563
2556
|
|
2564
|
-
type Palette {
|
2565
|
-
primary: PaletteColor
|
2566
|
-
}
|
2567
|
-
|
2568
|
-
type PaletteColor {
|
2569
|
-
main: String
|
2570
|
-
light: String
|
2571
|
-
dark: String
|
2572
|
-
contrastText: String
|
2573
|
-
}
|
2574
|
-
|
2575
2557
|
type Passport {
|
2576
2558
|
id: String
|
2577
2559
|
name: String
|
@@ -3358,15 +3340,6 @@ type Tag {
|
|
3358
3340
|
updatedAt: Uint32
|
3359
3341
|
}
|
3360
3342
|
|
3361
|
-
type Theme {
|
3362
|
-
light: ThemeOptions
|
3363
|
-
dark: ThemeOptions
|
3364
|
-
}
|
3365
|
-
|
3366
|
-
type ThemeOptions {
|
3367
|
-
palette: Palette
|
3368
|
-
}
|
3369
|
-
|
3370
3343
|
type TrafficInsight {
|
3371
3344
|
did: String
|
3372
3345
|
date: String
|
@@ -3783,7 +3756,6 @@ type Mutation {
|
|
3783
3756
|
configPassportIssuance(input: RequestConfigPassportIssuanceInput): GeneralResponse
|
3784
3757
|
removeUser(input: RequestTeamUserInput): ResponseUser
|
3785
3758
|
updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
|
3786
|
-
updateUserProfile(input: RequestUpdateUserProfileInput): ResponseUser
|
3787
3759
|
updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
|
3788
3760
|
updateUserApproval(input: RequestTeamUserInput): ResponseUser
|
3789
3761
|
issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
|
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.43-beta-20250420-132156-d732158a",
|
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": "f66c266e63a7da8438133b3a4fa9a398b0bd58ed",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|