@abtnode/schema 1.8.37 → 1.8.38

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
@@ -22,14 +22,6 @@ input BlockletQueryInput {
22
22
  controller: BlockletControllerInput
23
23
  }
24
24
 
25
- input BlockletServiceInput {
26
- name: String
27
- description: String
28
- version: String
29
- config: String
30
- schema: String
31
- }
32
-
33
25
  input BlockletStoreInput {
34
26
  name: String
35
27
  description: String
@@ -137,6 +129,7 @@ input RequestBlockletInput {
137
129
  input RequestBlockletBundleInput {
138
130
  did: String
139
131
  name: String
132
+ serverlessNftId: String
140
133
  }
141
134
 
142
135
  input RequestBlockletDiffInput {
@@ -494,7 +487,7 @@ input RequestUpdateSessionInput {
494
487
  }
495
488
 
496
489
  input RequestUpdateWhoCanAccessInput {
497
- did: String
490
+ did: [String!]
498
491
  whoCanAccess: String
499
492
  }
500
493
 
@@ -542,7 +535,6 @@ input RoutingRuleInput {
542
535
  from: RoutingRuleFromInput
543
536
  to: RoutingRuleToInput
544
537
  isProtected: Boolean
545
- services: [BlockletServiceInput!]
546
538
  }
547
539
 
548
540
  input RoutingRuleFromInput {
@@ -787,14 +779,6 @@ type BlockletRepository {
787
779
  url: String
788
780
  }
789
781
 
790
- type BlockletService {
791
- name: String
792
- description: String
793
- version: String
794
- config: String
795
- schema: String
796
- }
797
-
798
782
  type BlockletSettings {
799
783
  initialized: Boolean
800
784
  enablePassportIssuance: Boolean
@@ -1324,11 +1308,6 @@ type ResponseGetRoutingSnapshots {
1324
1308
  snapshots: [RoutingSnapshot!]
1325
1309
  }
1326
1310
 
1327
- type ResponseGetServices {
1328
- code: StatusCode
1329
- services: [BlockletService!]
1330
- }
1331
-
1332
1311
  type ResponseGetSession {
1333
1312
  code: StatusCode
1334
1313
  session: Any
@@ -1453,7 +1432,6 @@ type RoutingRule {
1453
1432
  from: RoutingRuleFrom
1454
1433
  to: RoutingRuleTo
1455
1434
  isProtected: Boolean
1456
- services: [BlockletService!]
1457
1435
  }
1458
1436
 
1459
1437
  type RoutingRuleFrom {
@@ -1720,7 +1698,6 @@ type Query {
1720
1698
  getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
1721
1699
  getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
1722
1700
  getRoutingProviders: ResponseGetRoutingProviders
1723
- getServices: ResponseGetServices
1724
1701
  getCertificates: ResponseGetCertificates
1725
1702
  checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
1726
1703
  findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
@@ -22,14 +22,6 @@ input BlockletQueryInput {
22
22
  controller: BlockletControllerInput
23
23
  }
24
24
 
25
- input BlockletServiceInput {
26
- name: String
27
- description: String
28
- version: String
29
- config: String
30
- schema: String
31
- }
32
-
33
25
  input BlockletStoreInput {
34
26
  name: String
35
27
  description: String
@@ -137,6 +129,7 @@ input RequestBlockletInput {
137
129
  input RequestBlockletBundleInput {
138
130
  did: String
139
131
  name: String
132
+ serverlessNftId: String
140
133
  }
141
134
 
142
135
  input RequestBlockletDiffInput {
@@ -494,7 +487,7 @@ input RequestUpdateSessionInput {
494
487
  }
495
488
 
496
489
  input RequestUpdateWhoCanAccessInput {
497
- did: String
490
+ did: [String!]
498
491
  whoCanAccess: String
499
492
  }
500
493
 
@@ -542,7 +535,6 @@ input RoutingRuleInput {
542
535
  from: RoutingRuleFromInput
543
536
  to: RoutingRuleToInput
544
537
  isProtected: Boolean
545
- services: [BlockletServiceInput!]
546
538
  }
547
539
 
548
540
  input RoutingRuleFromInput {
@@ -787,14 +779,6 @@ type BlockletRepository {
787
779
  url: String
788
780
  }
789
781
 
790
- type BlockletService {
791
- name: String
792
- description: String
793
- version: String
794
- config: String
795
- schema: String
796
- }
797
-
798
782
  type BlockletSettings {
799
783
  initialized: Boolean
800
784
  enablePassportIssuance: Boolean
@@ -1324,11 +1308,6 @@ type ResponseGetRoutingSnapshots {
1324
1308
  snapshots: [RoutingSnapshot!]
1325
1309
  }
1326
1310
 
1327
- type ResponseGetServices {
1328
- code: StatusCode
1329
- services: [BlockletService!]
1330
- }
1331
-
1332
1311
  type ResponseGetSession {
1333
1312
  code: StatusCode
1334
1313
  session: Any
@@ -1453,7 +1432,6 @@ type RoutingRule {
1453
1432
  from: RoutingRuleFrom
1454
1433
  to: RoutingRuleTo
1455
1434
  isProtected: Boolean
1456
- services: [BlockletService!]
1457
1435
  }
1458
1436
 
1459
1437
  type RoutingRuleFrom {
@@ -1722,7 +1700,6 @@ type Query {
1722
1700
  getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
1723
1701
  getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
1724
1702
  getRoutingProviders: ResponseGetRoutingProviders
1725
- getServices: ResponseGetServices
1726
1703
  getCertificates: ResponseGetCertificates
1727
1704
  checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
1728
1705
  findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.37",
6
+ "version": "1.8.38",
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": "MIT",
16
- "gitHead": "f26f451c6e2b1168b36f78269eafdf3f671236bf",
16
+ "gitHead": "cbb88f107eb6b403c8cd47a765920575860c7bc7",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }