@abtnode/schema 1.16.14-beta-a898bfcb → 1.16.14-beta-d802cd3c
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 +51 -0
- package/lib/schema.graphqls +51 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -147,6 +147,12 @@ input RequestAddRoutingSiteInput {
|
|
|
147
147
|
rules: [RoutingRuleInput!]
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
+
input RequestAuditFederatedLoginInput {
|
|
151
|
+
did: String
|
|
152
|
+
appId: String
|
|
153
|
+
status: String
|
|
154
|
+
}
|
|
155
|
+
|
|
150
156
|
input RequestBackupBlockletInput {
|
|
151
157
|
appDid: String
|
|
152
158
|
to: BackupTo
|
|
@@ -206,6 +212,11 @@ input RequestConfigBlockletInput {
|
|
|
206
212
|
configs: [ConfigEntryInput!]
|
|
207
213
|
}
|
|
208
214
|
|
|
215
|
+
input RequestConfigFederatedInput {
|
|
216
|
+
did: String
|
|
217
|
+
autoLogin: Boolean
|
|
218
|
+
}
|
|
219
|
+
|
|
209
220
|
input RequestConfigNavigationsInput {
|
|
210
221
|
did: String
|
|
211
222
|
navigations: [ConfigNavigationInput!]
|
|
@@ -450,6 +461,11 @@ input RequestIssuePassportToUserInput {
|
|
|
450
461
|
role: String
|
|
451
462
|
}
|
|
452
463
|
|
|
464
|
+
input RequestJoinFederatedLoginInput {
|
|
465
|
+
did: String
|
|
466
|
+
appUrl: String
|
|
467
|
+
}
|
|
468
|
+
|
|
453
469
|
input RequestLimitInput {
|
|
454
470
|
enabled: Boolean
|
|
455
471
|
rate: Uint32
|
|
@@ -981,6 +997,7 @@ type BlockletSettings {
|
|
|
981
997
|
trustedFactories: [TrustedFactory!]
|
|
982
998
|
notification: Any
|
|
983
999
|
session: SessionConfig
|
|
1000
|
+
federated: FederatedConfig
|
|
984
1001
|
}
|
|
985
1002
|
|
|
986
1003
|
type BlockletState {
|
|
@@ -1170,6 +1187,37 @@ type Environment {
|
|
|
1170
1187
|
shared: Boolean
|
|
1171
1188
|
}
|
|
1172
1189
|
|
|
1190
|
+
type FederatedConfig {
|
|
1191
|
+
config: FederatedConfigDetail
|
|
1192
|
+
sites: [FederatedConfigSite!]
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
type FederatedConfigDetail {
|
|
1196
|
+
appId: String
|
|
1197
|
+
appPid: String
|
|
1198
|
+
delegation: String
|
|
1199
|
+
isMaster: Boolean
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
type FederatedConfigSite {
|
|
1203
|
+
appId: String
|
|
1204
|
+
appPid: String
|
|
1205
|
+
migratedFrom: [Any!]
|
|
1206
|
+
appName: String
|
|
1207
|
+
appDescription: String
|
|
1208
|
+
appUrl: String
|
|
1209
|
+
appLogo: String
|
|
1210
|
+
appLogoRect: String
|
|
1211
|
+
did: String
|
|
1212
|
+
pk: String
|
|
1213
|
+
version: String
|
|
1214
|
+
serverId: String
|
|
1215
|
+
serverVersion: String
|
|
1216
|
+
appliedAt: Uint32
|
|
1217
|
+
status: String
|
|
1218
|
+
isMaster: Boolean
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1173
1221
|
type Fuel {
|
|
1174
1222
|
endpoint: String
|
|
1175
1223
|
address: String
|
|
@@ -1948,6 +1996,9 @@ type Mutation {
|
|
|
1948
1996
|
configNavigations(input: RequestConfigNavigationsInput): ResponseBlocklet
|
|
1949
1997
|
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
1950
1998
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
1999
|
+
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2000
|
+
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2001
|
+
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
1951
2002
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1952
2003
|
updateAppSessionConfig(input: RequestUpdateAppSessionConfigInput): ResponseBlocklet
|
|
1953
2004
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
package/lib/schema.graphqls
CHANGED
|
@@ -147,6 +147,12 @@ input RequestAddRoutingSiteInput {
|
|
|
147
147
|
rules: [RoutingRuleInput!]
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
+
input RequestAuditFederatedLoginInput {
|
|
151
|
+
did: String
|
|
152
|
+
appId: String
|
|
153
|
+
status: String
|
|
154
|
+
}
|
|
155
|
+
|
|
150
156
|
input RequestBackupBlockletInput {
|
|
151
157
|
appDid: String
|
|
152
158
|
to: BackupTo
|
|
@@ -206,6 +212,11 @@ input RequestConfigBlockletInput {
|
|
|
206
212
|
configs: [ConfigEntryInput!]
|
|
207
213
|
}
|
|
208
214
|
|
|
215
|
+
input RequestConfigFederatedInput {
|
|
216
|
+
did: String
|
|
217
|
+
autoLogin: Boolean
|
|
218
|
+
}
|
|
219
|
+
|
|
209
220
|
input RequestConfigNavigationsInput {
|
|
210
221
|
did: String
|
|
211
222
|
navigations: [ConfigNavigationInput!]
|
|
@@ -450,6 +461,11 @@ input RequestIssuePassportToUserInput {
|
|
|
450
461
|
role: String
|
|
451
462
|
}
|
|
452
463
|
|
|
464
|
+
input RequestJoinFederatedLoginInput {
|
|
465
|
+
did: String
|
|
466
|
+
appUrl: String
|
|
467
|
+
}
|
|
468
|
+
|
|
453
469
|
input RequestLimitInput {
|
|
454
470
|
enabled: Boolean
|
|
455
471
|
rate: Uint32
|
|
@@ -981,6 +997,7 @@ type BlockletSettings {
|
|
|
981
997
|
trustedFactories: [TrustedFactory!]
|
|
982
998
|
notification: Any
|
|
983
999
|
session: SessionConfig
|
|
1000
|
+
federated: FederatedConfig
|
|
984
1001
|
}
|
|
985
1002
|
|
|
986
1003
|
type BlockletState {
|
|
@@ -1170,6 +1187,37 @@ type Environment {
|
|
|
1170
1187
|
shared: Boolean
|
|
1171
1188
|
}
|
|
1172
1189
|
|
|
1190
|
+
type FederatedConfig {
|
|
1191
|
+
config: FederatedConfigDetail
|
|
1192
|
+
sites: [FederatedConfigSite!]
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
type FederatedConfigDetail {
|
|
1196
|
+
appId: String
|
|
1197
|
+
appPid: String
|
|
1198
|
+
delegation: String
|
|
1199
|
+
isMaster: Boolean
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
type FederatedConfigSite {
|
|
1203
|
+
appId: String
|
|
1204
|
+
appPid: String
|
|
1205
|
+
migratedFrom: [Any!]
|
|
1206
|
+
appName: String
|
|
1207
|
+
appDescription: String
|
|
1208
|
+
appUrl: String
|
|
1209
|
+
appLogo: String
|
|
1210
|
+
appLogoRect: String
|
|
1211
|
+
did: String
|
|
1212
|
+
pk: String
|
|
1213
|
+
version: String
|
|
1214
|
+
serverId: String
|
|
1215
|
+
serverVersion: String
|
|
1216
|
+
appliedAt: Uint32
|
|
1217
|
+
status: String
|
|
1218
|
+
isMaster: Boolean
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1173
1221
|
type Fuel {
|
|
1174
1222
|
endpoint: String
|
|
1175
1223
|
address: String
|
|
@@ -1950,6 +1998,9 @@ type Mutation {
|
|
|
1950
1998
|
configNavigations(input: RequestConfigNavigationsInput): ResponseBlocklet
|
|
1951
1999
|
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
1952
2000
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
2001
|
+
joinFederatedLogin(input: RequestJoinFederatedLoginInput): ResponseBlocklet
|
|
2002
|
+
configFederated(input: RequestConfigFederatedInput): ResponseBlocklet
|
|
2003
|
+
auditFederatedLogin(input: RequestAuditFederatedLoginInput): ResponseBlocklet
|
|
1953
2004
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1954
2005
|
updateAppSessionConfig(input: RequestUpdateAppSessionConfigInput): ResponseBlocklet
|
|
1955
2006
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.14-beta-
|
|
6
|
+
"version": "1.16.14-beta-d802cd3c",
|
|
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": "f8e2dcefd8d6876e5dedee833ac976b4a0496b20",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|