@abtnode/types 1.16.25-next-be3a37f4 → 1.16.25-next-44800645
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 +6 -0
- package/lib/type_pb.d.ts +9 -1
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -649,6 +649,12 @@ export type TRequestUsers = {
|
|
649
649
|
paging?: type_pb.TPaging;
|
650
650
|
dids: string[];
|
651
651
|
};
|
652
|
+
export type TRequestLogoutUser = {
|
653
|
+
teamDid: string;
|
654
|
+
appPid: string;
|
655
|
+
userDid: string;
|
656
|
+
visitorId: string;
|
657
|
+
};
|
652
658
|
export type TResponseGetUsersCount = {
|
653
659
|
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
654
660
|
count: number;
|
package/lib/type_pb.d.ts
CHANGED
@@ -34,7 +34,7 @@ export type TNodeState = {
|
|
34
34
|
status: number;
|
35
35
|
trustedFactories: TTrustedFactory[];
|
36
36
|
enableBetaRelease: boolean;
|
37
|
-
|
37
|
+
runtimeConfig?: TNodeRuntimeConfig;
|
38
38
|
nftDomainUrl: string;
|
39
39
|
};
|
40
40
|
export type TOwnerNft = {
|
@@ -446,6 +446,11 @@ export type TNotification = {
|
|
446
446
|
id: string;
|
447
447
|
severity: string;
|
448
448
|
};
|
449
|
+
export type TRoutingRuleResponse = {
|
450
|
+
status: number;
|
451
|
+
contentType: string;
|
452
|
+
body: string;
|
453
|
+
};
|
449
454
|
export type TRoutingRuleTo = {
|
450
455
|
port: number;
|
451
456
|
type: enum_pb.BackendServiceTypeMap[keyof enum_pb.BackendServiceTypeMap];
|
@@ -455,6 +460,7 @@ export type TRoutingRuleTo = {
|
|
455
460
|
interfaceName: string;
|
456
461
|
componentId: string;
|
457
462
|
pageGroup: string;
|
463
|
+
response?: TRoutingRuleResponse;
|
458
464
|
};
|
459
465
|
export type TRoutingRuleFrom = {
|
460
466
|
pathPrefix: string;
|
@@ -611,6 +617,7 @@ export type TUserInfo = {
|
|
611
617
|
extra?: Record<string, any>;
|
612
618
|
tags: TTag[];
|
613
619
|
didSpace?: Record<string, any>;
|
620
|
+
userSessions: TUserSession[];
|
614
621
|
};
|
615
622
|
export type TUserProfile = {
|
616
623
|
did: string;
|
@@ -625,6 +632,7 @@ export type TUserQuery = {
|
|
625
632
|
connectedDid: string;
|
626
633
|
tags: number[];
|
627
634
|
includeTags: boolean;
|
635
|
+
includeUserSessions: boolean;
|
628
636
|
};
|
629
637
|
export type TUserSort = {
|
630
638
|
updatedAt: number;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.25-next-
|
3
|
+
"version": "1.16.25-next-44800645",
|
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": "7d09cee17eb88bcfe6a4b298a0394c5945aa5f2e"
|
40
40
|
}
|