@abtnode/types 1.16.14-beta-a90ba909 → 1.16.14-beta-c2843ec5
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/rpc_pb.d.ts +16 -0
- package/lib/type_pb.d.ts +29 -0
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -149,6 +149,22 @@ export type TRequestConfigOAuth = {
|
|
149
149
|
did: string,
|
150
150
|
oauth: string,
|
151
151
|
}
|
152
|
+
export type TRequestJoinFederatedLogin = {
|
153
|
+
did: string,
|
154
|
+
appurl: string,
|
155
|
+
}
|
156
|
+
export type TRequestQuitFederatedLogin = {
|
157
|
+
did: string,
|
158
|
+
}
|
159
|
+
export type TRequestAuditFederatedLogin = {
|
160
|
+
did: string,
|
161
|
+
memberpid: string,
|
162
|
+
status: string,
|
163
|
+
}
|
164
|
+
export type TRequestConfigFederated = {
|
165
|
+
did: string,
|
166
|
+
autologin: boolean,
|
167
|
+
}
|
152
168
|
export type TRequestConfigNotification = {
|
153
169
|
did: string,
|
154
170
|
notification: string,
|
package/lib/type_pb.d.ts
CHANGED
@@ -318,6 +318,7 @@ export type TBlockletSettings = {
|
|
318
318
|
trustedFactories: TTrustedFactory[],
|
319
319
|
notification?: Record<string, any>,
|
320
320
|
session?: TSessionConfig,
|
321
|
+
federated?: TFederatedConfig,
|
321
322
|
}
|
322
323
|
export type TBlockletMetaService = {
|
323
324
|
name: string,
|
@@ -755,6 +756,34 @@ export type TSessionConfig = {
|
|
755
756
|
cacheTtl: number,
|
756
757
|
ttl: number,
|
757
758
|
}
|
759
|
+
export type TFederatedConfigDetail = {
|
760
|
+
appid: string,
|
761
|
+
apppid: string,
|
762
|
+
delegation: string,
|
763
|
+
ismaster: boolean,
|
764
|
+
}
|
765
|
+
export type TFederatedConfigSite = {
|
766
|
+
appid: string,
|
767
|
+
apppid: string,
|
768
|
+
aliasdid: string[],
|
769
|
+
appname: string,
|
770
|
+
appdescription: string,
|
771
|
+
appurl: string,
|
772
|
+
applogo: string,
|
773
|
+
applogorect: string,
|
774
|
+
did: string,
|
775
|
+
pk: string,
|
776
|
+
version: string,
|
777
|
+
serverid: string,
|
778
|
+
serverversion: string,
|
779
|
+
appliedAt: number,
|
780
|
+
status: string,
|
781
|
+
ismaster: boolean,
|
782
|
+
}
|
783
|
+
export type TFederatedConfig = {
|
784
|
+
config?: TFederatedConfigDetail,
|
785
|
+
sites: TFederatedConfigSite[],
|
786
|
+
}
|
758
787
|
export type TTrafficInsight = {
|
759
788
|
did: string,
|
760
789
|
date: string,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.14-beta-
|
3
|
+
"version": "1.16.14-beta-c2843ec5",
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
5
5
|
"keywords": [
|
6
6
|
"abtnode",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"bugs": {
|
37
37
|
"url": "https://github.com/ArcBlock/abt-node/issues"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "968bfad93779a21dd1374eede3ac7d4d6d40822b"
|
40
40
|
}
|