@abtnode/schema 1.16.23-beta-f85576a6 → 1.16.23-beta-aeb9f5bd

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
@@ -448,6 +448,10 @@ input RequestGetBlockletsInput {
448
448
  useCache: Boolean
449
449
  }
450
450
 
451
+ input RequestGetDynamicComponentsInput {
452
+ url: String
453
+ }
454
+
451
455
  input RequestGetLauncherSessionInput {
452
456
  launcherSessionId: String
453
457
  launcherUrl: String
@@ -532,6 +536,7 @@ input RequestInstallComponentInput {
532
536
  configs: [ConfigEntryInput!]
533
537
  downloadTokenList: [DownloadTokenInput!]
534
538
  skipNavigation: Boolean
539
+ onlyRequired: Boolean
535
540
  }
536
541
 
537
542
  input RequestIsDidDomainInput {
@@ -1233,6 +1238,7 @@ type BlockletState {
1233
1238
  mode: String
1234
1239
  ports: Any
1235
1240
  children: [ComponentState!]
1241
+ optionalComponents: [OptionalComponentState!]
1236
1242
  trustedPassports: [TrustedPassport!]
1237
1243
  trustedFactories: [TrustedFactory!]
1238
1244
  enablePassportIssuance: Boolean
@@ -1303,6 +1309,7 @@ type CertificateMeta {
1303
1309
  type ChildConfig {
1304
1310
  name: String
1305
1311
  mountPoint: String
1312
+ required: Boolean
1306
1313
  }
1307
1314
 
1308
1315
  type ComponentState {
@@ -1575,6 +1582,20 @@ type Notification {
1575
1582
  severity: String
1576
1583
  }
1577
1584
 
1585
+ type OptionalComponentState {
1586
+ logoUrl: String
1587
+ dependencies: [OptionalDependencies!]
1588
+ meta: BlockletMeta
1589
+ }
1590
+
1591
+ type OptionalDependencies {
1592
+ parentDid: String
1593
+ parentName: String
1594
+ parentTitle: String
1595
+ mountPoint: String
1596
+ required: Boolean
1597
+ }
1598
+
1578
1599
  type OwnerNft {
1579
1600
  did: String
1580
1601
  holder: String
@@ -1821,6 +1842,11 @@ type ResponseGetCertificates {
1821
1842
  certificates: [Certificate!]
1822
1843
  }
1823
1844
 
1845
+ type ResponseGetDynamicComponents {
1846
+ code: StatusCode
1847
+ components: [ComponentState!]
1848
+ }
1849
+
1824
1850
  type ResponseGetInvitations {
1825
1851
  code: StatusCode
1826
1852
  invitations: [InviteInfo!]
@@ -2383,7 +2409,6 @@ type Mutation {
2383
2409
  updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
2384
2410
  updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
2385
2411
  updateUserApproval(input: RequestTeamUserInput): ResponseUser
2386
- updateUserRole(input: RequestTeamUserInput): ResponseUser
2387
2412
  issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
2388
2413
  revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
2389
2414
  enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
@@ -2444,6 +2469,7 @@ type Query {
2444
2469
  getBlocklets(input: RequestGetBlockletsInput): ResponseGetBlocklets
2445
2470
  getBlockletRuntimeHistory(input: RequestBlockletRuntimeHistoryInput): ResponseBlockletRuntimeHistory
2446
2471
  getBlockletsFromBackup: ResponseBlockletsFromBackup
2472
+ getDynamicComponents(input: RequestGetDynamicComponentsInput): ResponseGetDynamicComponents
2447
2473
  getNodeInfo: ResponseGetNodeInfo
2448
2474
  resetNodeStatus: ResponseGetNodeInfo
2449
2475
  getNodeEnv: ResponseGetNodeEnv
@@ -448,6 +448,10 @@ input RequestGetBlockletsInput {
448
448
  useCache: Boolean
449
449
  }
450
450
 
451
+ input RequestGetDynamicComponentsInput {
452
+ url: String
453
+ }
454
+
451
455
  input RequestGetLauncherSessionInput {
452
456
  launcherSessionId: String
453
457
  launcherUrl: String
@@ -532,6 +536,7 @@ input RequestInstallComponentInput {
532
536
  configs: [ConfigEntryInput!]
533
537
  downloadTokenList: [DownloadTokenInput!]
534
538
  skipNavigation: Boolean
539
+ onlyRequired: Boolean
535
540
  }
536
541
 
537
542
  input RequestIsDidDomainInput {
@@ -1233,6 +1238,7 @@ type BlockletState {
1233
1238
  mode: String
1234
1239
  ports: Any
1235
1240
  children: [ComponentState!]
1241
+ optionalComponents: [OptionalComponentState!]
1236
1242
  trustedPassports: [TrustedPassport!]
1237
1243
  trustedFactories: [TrustedFactory!]
1238
1244
  enablePassportIssuance: Boolean
@@ -1303,6 +1309,7 @@ type CertificateMeta {
1303
1309
  type ChildConfig {
1304
1310
  name: String
1305
1311
  mountPoint: String
1312
+ required: Boolean
1306
1313
  }
1307
1314
 
1308
1315
  type ComponentState {
@@ -1575,6 +1582,20 @@ type Notification {
1575
1582
  severity: String
1576
1583
  }
1577
1584
 
1585
+ type OptionalComponentState {
1586
+ logoUrl: String
1587
+ dependencies: [OptionalDependencies!]
1588
+ meta: BlockletMeta
1589
+ }
1590
+
1591
+ type OptionalDependencies {
1592
+ parentDid: String
1593
+ parentName: String
1594
+ parentTitle: String
1595
+ mountPoint: String
1596
+ required: Boolean
1597
+ }
1598
+
1578
1599
  type OwnerNft {
1579
1600
  did: String
1580
1601
  holder: String
@@ -1821,6 +1842,11 @@ type ResponseGetCertificates {
1821
1842
  certificates: [Certificate!]
1822
1843
  }
1823
1844
 
1845
+ type ResponseGetDynamicComponents {
1846
+ code: StatusCode
1847
+ components: [ComponentState!]
1848
+ }
1849
+
1824
1850
  type ResponseGetInvitations {
1825
1851
  code: StatusCode
1826
1852
  invitations: [InviteInfo!]
@@ -2385,7 +2411,6 @@ type Mutation {
2385
2411
  updateUserTags(input: RequestUpdateUserTagsInput): ResponseUser
2386
2412
  updateUserExtra(input: RequestUpdateUserExtraInput): ResponseUser
2387
2413
  updateUserApproval(input: RequestTeamUserInput): ResponseUser
2388
- updateUserRole(input: RequestTeamUserInput): ResponseUser
2389
2414
  issuePassportToUser(input: RequestIssuePassportToUserInput): ResponseUser
2390
2415
  revokeUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
2391
2416
  enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
@@ -2446,6 +2471,7 @@ type Query {
2446
2471
  getBlocklets(input: RequestGetBlockletsInput): ResponseGetBlocklets
2447
2472
  getBlockletRuntimeHistory(input: RequestBlockletRuntimeHistoryInput): ResponseBlockletRuntimeHistory
2448
2473
  getBlockletsFromBackup: ResponseBlockletsFromBackup
2474
+ getDynamicComponents(input: RequestGetDynamicComponentsInput): ResponseGetDynamicComponents
2449
2475
  getNodeInfo: ResponseGetNodeInfo
2450
2476
  resetNodeStatus: ResponseGetNodeInfo
2451
2477
  getNodeEnv: ResponseGetNodeEnv
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.23-beta-f85576a6",
6
+ "version": "1.16.23-beta-aeb9f5bd",
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": "bac83a74944b4cef3ccb386277023caf0e1d5cd4",
16
+ "gitHead": "418cacd970d373aecc8706f8992e57369d394577",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }