@abtnode/types 1.16.43-beta-20250509-094134-34c76f98 → 1.16.43-beta-20250510-123357-65a2988c
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 +14 -0
- package/lib/type_pb.d.ts +25 -0
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -1374,3 +1374,17 @@ export type TResponseDomainDNS = {
|
|
1374
1374
|
isCnameMatch: boolean;
|
1375
1375
|
error: string;
|
1376
1376
|
};
|
1377
|
+
export type TResponseOAuthClients = {
|
1378
|
+
list: type_pb.TOauthClient[];
|
1379
|
+
};
|
1380
|
+
export type TRequestDeleteOAuthClient = {
|
1381
|
+
teamDid: string;
|
1382
|
+
clientId: string;
|
1383
|
+
};
|
1384
|
+
export type TRequestOAuthClient = {
|
1385
|
+
teamDid: string;
|
1386
|
+
input?: type_pb.TOauthClient;
|
1387
|
+
};
|
1388
|
+
export type TResponseOAuthClient = {
|
1389
|
+
data?: type_pb.TOauthClient;
|
1390
|
+
};
|
package/lib/type_pb.d.ts
CHANGED
@@ -776,6 +776,7 @@ export type TTag = {
|
|
776
776
|
};
|
777
777
|
export type TTeam = {
|
778
778
|
teamDid: string;
|
779
|
+
paging?: TPaging;
|
779
780
|
};
|
780
781
|
export type TInviteInfo = {
|
781
782
|
inviteId: string;
|
@@ -1460,3 +1461,27 @@ export type TPassport = {
|
|
1460
1461
|
userDid: string;
|
1461
1462
|
user?: TBaseUserInfo;
|
1462
1463
|
};
|
1464
|
+
export type TOauthClient = {
|
1465
|
+
redirectUris: string[];
|
1466
|
+
tokenEndpointAuthMethod: string;
|
1467
|
+
grantTypes: string[];
|
1468
|
+
responseTypes: string[];
|
1469
|
+
clientName: string;
|
1470
|
+
clientUri: string;
|
1471
|
+
logoUri: string;
|
1472
|
+
scope: string;
|
1473
|
+
contacts: string[];
|
1474
|
+
tosUri: string;
|
1475
|
+
policyUri: string;
|
1476
|
+
jwksUri: string;
|
1477
|
+
jwks: string;
|
1478
|
+
softwareId: string;
|
1479
|
+
softwareVersion: string;
|
1480
|
+
clientId: string;
|
1481
|
+
clientIdIssuedAt: number;
|
1482
|
+
clientSecret: string;
|
1483
|
+
clientSecretExpiresAt: number;
|
1484
|
+
updatedAt: number;
|
1485
|
+
createdBy: string;
|
1486
|
+
createUser?: TUserInfo;
|
1487
|
+
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtnode/types",
|
3
|
-
"version": "1.16.43-beta-
|
3
|
+
"version": "1.16.43-beta-20250510-123357-65a2988c",
|
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": "ea28e05d9b28437d13b75030aacba335fa23cf96"
|
40
40
|
}
|