@abtnode/schema 1.16.30 → 1.16.31-beta-4246ab25

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
@@ -88,6 +88,10 @@ input HashFileInput {
88
88
  hash: String
89
89
  }
90
90
 
91
+ input InviteSettingsInput {
92
+ enabled: Boolean
93
+ }
94
+
91
95
  input IssuerInput {
92
96
  id: String
93
97
  name: String
@@ -804,6 +808,11 @@ input RequestUpdateComponentsInput {
804
808
  selectedComponents: [String!]
805
809
  }
806
810
 
811
+ input RequestUpdateInviteSettingsInput {
812
+ did: String
813
+ invite: InviteSettingsInput
814
+ }
815
+
807
816
  input RequestUpdateNginxHttpsCertInput {
808
817
  id: String
809
818
  name: String
@@ -1021,6 +1030,8 @@ input UserInfoInput {
1021
1030
  userSessions: [UserSessionInput!]
1022
1031
  url: String
1023
1032
  phone: String
1033
+ inviter: String
1034
+ generation: Uint32
1024
1035
  }
1025
1036
 
1026
1037
  input UserProfileInput {
@@ -1038,6 +1049,9 @@ input UserQueryInput {
1038
1049
  tags: [Uint32!]
1039
1050
  includeTags: Boolean
1040
1051
  includeUserSessions: Boolean
1052
+ inviter: String
1053
+ invitee: String
1054
+ generation: Uint32
1041
1055
  }
1042
1056
 
1043
1057
  input UserSessionInput {
@@ -1330,6 +1344,7 @@ type BlockletSettings {
1330
1344
  federated: FederatedConfig
1331
1345
  autoCheckUpdate: AutoCheckUpdate
1332
1346
  autoBackup: AutoBackup
1347
+ invite: InviteSettings
1333
1348
  }
1334
1349
 
1335
1350
  type BlockletState {
@@ -1611,6 +1626,10 @@ type InviteInfo {
1611
1626
  interfaceName: String
1612
1627
  }
1613
1628
 
1629
+ type InviteSettings {
1630
+ enabled: Boolean
1631
+ }
1632
+
1614
1633
  type Issuer {
1615
1634
  id: String
1616
1635
  name: String
@@ -2426,6 +2445,8 @@ type UserInfo {
2426
2445
  userSessions: [UserSession!]
2427
2446
  url: String
2428
2447
  phone: String
2448
+ inviter: String
2449
+ generation: Uint32
2429
2450
  }
2430
2451
 
2431
2452
  type UserSession {
@@ -2582,6 +2603,7 @@ type Mutation {
2582
2603
  updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
2583
2604
  updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
2584
2605
  updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
2606
+ updateInviteSettings(input: RequestUpdateInviteSettingsInput): GeneralResponse
2585
2607
  updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
2586
2608
  updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
2587
2609
  upgradeNodeVersion: ResponseUpgradeNodeVersion
@@ -88,6 +88,10 @@ input HashFileInput {
88
88
  hash: String
89
89
  }
90
90
 
91
+ input InviteSettingsInput {
92
+ enabled: Boolean
93
+ }
94
+
91
95
  input IssuerInput {
92
96
  id: String
93
97
  name: String
@@ -804,6 +808,11 @@ input RequestUpdateComponentsInput {
804
808
  selectedComponents: [String!]
805
809
  }
806
810
 
811
+ input RequestUpdateInviteSettingsInput {
812
+ did: String
813
+ invite: InviteSettingsInput
814
+ }
815
+
807
816
  input RequestUpdateNginxHttpsCertInput {
808
817
  id: String
809
818
  name: String
@@ -1021,6 +1030,8 @@ input UserInfoInput {
1021
1030
  userSessions: [UserSessionInput!]
1022
1031
  url: String
1023
1032
  phone: String
1033
+ inviter: String
1034
+ generation: Uint32
1024
1035
  }
1025
1036
 
1026
1037
  input UserProfileInput {
@@ -1038,6 +1049,9 @@ input UserQueryInput {
1038
1049
  tags: [Uint32!]
1039
1050
  includeTags: Boolean
1040
1051
  includeUserSessions: Boolean
1052
+ inviter: String
1053
+ invitee: String
1054
+ generation: Uint32
1041
1055
  }
1042
1056
 
1043
1057
  input UserSessionInput {
@@ -1330,6 +1344,7 @@ type BlockletSettings {
1330
1344
  federated: FederatedConfig
1331
1345
  autoCheckUpdate: AutoCheckUpdate
1332
1346
  autoBackup: AutoBackup
1347
+ invite: InviteSettings
1333
1348
  }
1334
1349
 
1335
1350
  type BlockletState {
@@ -1611,6 +1626,10 @@ type InviteInfo {
1611
1626
  interfaceName: String
1612
1627
  }
1613
1628
 
1629
+ type InviteSettings {
1630
+ enabled: Boolean
1631
+ }
1632
+
1614
1633
  type Issuer {
1615
1634
  id: String
1616
1635
  name: String
@@ -2426,6 +2445,8 @@ type UserInfo {
2426
2445
  userSessions: [UserSession!]
2427
2446
  url: String
2428
2447
  phone: String
2448
+ inviter: String
2449
+ generation: Uint32
2429
2450
  }
2430
2451
 
2431
2452
  type UserSession {
@@ -2584,6 +2605,7 @@ type Mutation {
2584
2605
  updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
2585
2606
  updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
2586
2607
  updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
2608
+ updateInviteSettings(input: RequestUpdateInviteSettingsInput): GeneralResponse
2587
2609
  updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
2588
2610
  updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
2589
2611
  upgradeNodeVersion: ResponseUpgradeNodeVersion
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.30",
6
+ "version": "1.16.31-beta-4246ab25",
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": "18420639259c736016b19152229183d9fc1c1656",
16
+ "gitHead": "ef93705b89033e4cd5fed458b64521d0a994a1d0",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }