@abtnode/schema 1.16.43-beta-20250508-132430-79f0da2d → 1.16.43-beta-20250510-043647-0f042010

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 CHANGED
@@ -261,6 +261,31 @@ input NodeInfoInput {
261
261
  enableSessionHardening: Boolean
262
262
  }
263
263
 
264
+ input OauthClientInput {
265
+ redirectUris: [String!]
266
+ tokenEndpointAuthMethod: String
267
+ grantTypes: [String!]
268
+ responseTypes: [String!]
269
+ clientName: String
270
+ clientUri: String
271
+ logoUri: String
272
+ scope: String
273
+ contacts: [String!]
274
+ tosUri: String
275
+ policyUri: String
276
+ jwksUri: String
277
+ jwks: String
278
+ softwareId: String
279
+ softwareVersion: String
280
+ clientId: String
281
+ clientIdIssuedAt: Int64
282
+ clientSecret: String
283
+ clientSecretExpiresAt: Int64
284
+ updatedAt: Int64
285
+ createdBy: String
286
+ createUser: UserInfoInput
287
+ }
288
+
264
289
  input PagingInput {
265
290
  total: Uint32
266
291
  pageSize: Uint32
@@ -692,6 +717,11 @@ input RequestDeleteNginxHttpsCertInput {
692
717
  id: String
693
718
  }
694
719
 
720
+ input RequestDeleteOAuthClientInput {
721
+ teamDid: String
722
+ clientId: String
723
+ }
724
+
695
725
  input RequestDeletePermissionInput {
696
726
  teamDid: String
697
727
  name: String
@@ -1016,6 +1046,11 @@ input RequestNotificationSendLogInput {
1016
1046
  severities: [String!]
1017
1047
  }
1018
1048
 
1049
+ input RequestOAuthClientInput {
1050
+ teamDid: String
1051
+ input: OauthClientInput
1052
+ }
1053
+
1019
1054
  input RequestPassportInput {
1020
1055
  teamDid: String
1021
1056
  query: PassportQueryInput
@@ -1458,6 +1493,7 @@ input TagInput {
1458
1493
 
1459
1494
  input TeamInput {
1460
1495
  teamDid: String
1496
+ paging: PagingInput
1461
1497
  }
1462
1498
 
1463
1499
  input TrustedFactoryInput {
@@ -2595,6 +2631,31 @@ type NotificationStatistics {
2595
2631
  webhook: WebhookStatistics
2596
2632
  }
2597
2633
 
2634
+ type OauthClient {
2635
+ redirectUris: [String!]
2636
+ tokenEndpointAuthMethod: String
2637
+ grantTypes: [String!]
2638
+ responseTypes: [String!]
2639
+ clientName: String
2640
+ clientUri: String
2641
+ logoUri: String
2642
+ scope: String
2643
+ contacts: [String!]
2644
+ tosUri: String
2645
+ policyUri: String
2646
+ jwksUri: String
2647
+ jwks: String
2648
+ softwareId: String
2649
+ softwareVersion: String
2650
+ clientId: String
2651
+ clientIdIssuedAt: Int64
2652
+ clientSecret: String
2653
+ clientSecretExpiresAt: Int64
2654
+ updatedAt: Int64
2655
+ createdBy: String
2656
+ createUser: UserInfo
2657
+ }
2658
+
2598
2659
  type OptionalComponentState {
2599
2660
  logoUrl: String
2600
2661
  dependencies: [OptionalDependencies!]
@@ -3141,6 +3202,14 @@ type ResponseNotificationSendLog {
3141
3202
  paging: Paging
3142
3203
  }
3143
3204
 
3205
+ type ResponseOAuthClient {
3206
+ data: OauthClient
3207
+ }
3208
+
3209
+ type ResponseOAuthClients {
3210
+ list: [OauthClient!]
3211
+ }
3212
+
3144
3213
  type ResponsePassport {
3145
3214
  code: StatusCode
3146
3215
  passports: [Passport!]
@@ -3993,4 +4062,8 @@ type Query {
3993
4062
  getRelatedPassports(input: RequestRelatedPassportsInput): ResponsePassport
3994
4063
  getBlockletBaseInfo(input: TeamInput): ResponseBlockletInfo
3995
4064
  getDomainDNS(input: RequestDomainDNSInput): ResponseDomainDNS
4065
+ getOAuthClients(input: TeamInput): ResponseOAuthClients
4066
+ createOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
4067
+ updateOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
4068
+ deleteOAuthClient(input: RequestDeleteOAuthClientInput): GeneralResponse
3996
4069
  }`;
@@ -261,6 +261,31 @@ input NodeInfoInput {
261
261
  enableSessionHardening: Boolean
262
262
  }
263
263
 
264
+ input OauthClientInput {
265
+ redirectUris: [String!]
266
+ tokenEndpointAuthMethod: String
267
+ grantTypes: [String!]
268
+ responseTypes: [String!]
269
+ clientName: String
270
+ clientUri: String
271
+ logoUri: String
272
+ scope: String
273
+ contacts: [String!]
274
+ tosUri: String
275
+ policyUri: String
276
+ jwksUri: String
277
+ jwks: String
278
+ softwareId: String
279
+ softwareVersion: String
280
+ clientId: String
281
+ clientIdIssuedAt: Int64
282
+ clientSecret: String
283
+ clientSecretExpiresAt: Int64
284
+ updatedAt: Int64
285
+ createdBy: String
286
+ createUser: UserInfoInput
287
+ }
288
+
264
289
  input PagingInput {
265
290
  total: Uint32
266
291
  pageSize: Uint32
@@ -692,6 +717,11 @@ input RequestDeleteNginxHttpsCertInput {
692
717
  id: String
693
718
  }
694
719
 
720
+ input RequestDeleteOAuthClientInput {
721
+ teamDid: String
722
+ clientId: String
723
+ }
724
+
695
725
  input RequestDeletePermissionInput {
696
726
  teamDid: String
697
727
  name: String
@@ -1016,6 +1046,11 @@ input RequestNotificationSendLogInput {
1016
1046
  severities: [String!]
1017
1047
  }
1018
1048
 
1049
+ input RequestOAuthClientInput {
1050
+ teamDid: String
1051
+ input: OauthClientInput
1052
+ }
1053
+
1019
1054
  input RequestPassportInput {
1020
1055
  teamDid: String
1021
1056
  query: PassportQueryInput
@@ -1458,6 +1493,7 @@ input TagInput {
1458
1493
 
1459
1494
  input TeamInput {
1460
1495
  teamDid: String
1496
+ paging: PagingInput
1461
1497
  }
1462
1498
 
1463
1499
  input TrustedFactoryInput {
@@ -2595,6 +2631,31 @@ type NotificationStatistics {
2595
2631
  webhook: WebhookStatistics
2596
2632
  }
2597
2633
 
2634
+ type OauthClient {
2635
+ redirectUris: [String!]
2636
+ tokenEndpointAuthMethod: String
2637
+ grantTypes: [String!]
2638
+ responseTypes: [String!]
2639
+ clientName: String
2640
+ clientUri: String
2641
+ logoUri: String
2642
+ scope: String
2643
+ contacts: [String!]
2644
+ tosUri: String
2645
+ policyUri: String
2646
+ jwksUri: String
2647
+ jwks: String
2648
+ softwareId: String
2649
+ softwareVersion: String
2650
+ clientId: String
2651
+ clientIdIssuedAt: Int64
2652
+ clientSecret: String
2653
+ clientSecretExpiresAt: Int64
2654
+ updatedAt: Int64
2655
+ createdBy: String
2656
+ createUser: UserInfo
2657
+ }
2658
+
2598
2659
  type OptionalComponentState {
2599
2660
  logoUrl: String
2600
2661
  dependencies: [OptionalDependencies!]
@@ -3141,6 +3202,14 @@ type ResponseNotificationSendLog {
3141
3202
  paging: Paging
3142
3203
  }
3143
3204
 
3205
+ type ResponseOAuthClient {
3206
+ data: OauthClient
3207
+ }
3208
+
3209
+ type ResponseOAuthClients {
3210
+ list: [OauthClient!]
3211
+ }
3212
+
3144
3213
  type ResponsePassport {
3145
3214
  code: StatusCode
3146
3215
  passports: [Passport!]
@@ -3995,5 +4064,9 @@ type Query {
3995
4064
  getRelatedPassports(input: RequestRelatedPassportsInput): ResponsePassport
3996
4065
  getBlockletBaseInfo(input: TeamInput): ResponseBlockletInfo
3997
4066
  getDomainDNS(input: RequestDomainDNSInput): ResponseDomainDNS
4067
+ getOAuthClients(input: TeamInput): ResponseOAuthClients
4068
+ createOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
4069
+ updateOAuthClient(input: RequestOAuthClientInput): ResponseOAuthClient
4070
+ deleteOAuthClient(input: RequestDeleteOAuthClientInput): GeneralResponse
3998
4071
  }
3999
4072
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.43-beta-20250508-132430-79f0da2d",
6
+ "version": "1.16.43-beta-20250510-043647-0f042010",
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": "d9fc34b79948644ab30abc83e8e58ffb174332d6",
16
+ "gitHead": "2fd284e83dd6399f8aa5ef4cd92769a2c3a44d36",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }