@abtnode/schema 1.16.13-beta-55b3e93d → 1.16.13-beta-423a40b1
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 +23 -0
- package/lib/schema.graphqls +23 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -656,6 +656,12 @@ input RoutingRuleToInput {
|
|
|
656
656
|
redirectCode: Int32
|
|
657
657
|
interfaceName: String
|
|
658
658
|
componentId: String
|
|
659
|
+
pageGroup: String
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
input SessionConfigInput {
|
|
663
|
+
cacheTtl: Uint32
|
|
664
|
+
ttl: Uint32
|
|
659
665
|
}
|
|
660
666
|
|
|
661
667
|
input SpaceGatewayInput {
|
|
@@ -744,6 +750,11 @@ input WebHookParamInput {
|
|
|
744
750
|
type: String
|
|
745
751
|
}
|
|
746
752
|
|
|
753
|
+
input RequestUpdateAppSessionConfigInput {
|
|
754
|
+
did: String
|
|
755
|
+
config: SessionConfigInput
|
|
756
|
+
}
|
|
757
|
+
|
|
747
758
|
type AccessKey {
|
|
748
759
|
accessKeyId: String
|
|
749
760
|
accessKeyPublic: String
|
|
@@ -901,6 +912,8 @@ type BlockletMetaInterface {
|
|
|
901
912
|
protocol: String
|
|
902
913
|
port: Any
|
|
903
914
|
services: [BlockletMetaService!]
|
|
915
|
+
cacheable: [String!]
|
|
916
|
+
pageGroups: [String!]
|
|
904
917
|
}
|
|
905
918
|
|
|
906
919
|
type BlockletMetaPerson {
|
|
@@ -960,6 +973,7 @@ type BlockletSettings {
|
|
|
960
973
|
oauth: Any
|
|
961
974
|
trustedFactories: [TrustedFactory!]
|
|
962
975
|
notification: Any
|
|
976
|
+
session: SessionConfig
|
|
963
977
|
}
|
|
964
978
|
|
|
965
979
|
type BlockletState {
|
|
@@ -1676,6 +1690,7 @@ type RoutingRuleTo {
|
|
|
1676
1690
|
redirectCode: Int32
|
|
1677
1691
|
interfaceName: String
|
|
1678
1692
|
componentId: String
|
|
1693
|
+
pageGroup: String
|
|
1679
1694
|
}
|
|
1680
1695
|
|
|
1681
1696
|
type RoutingSite {
|
|
@@ -1703,6 +1718,11 @@ type RuntimeInfo {
|
|
|
1703
1718
|
cpuUsage: Float32
|
|
1704
1719
|
}
|
|
1705
1720
|
|
|
1721
|
+
type SessionConfig {
|
|
1722
|
+
cacheTtl: Uint32
|
|
1723
|
+
ttl: Uint32
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1706
1726
|
type SimpleBlockletMeta {
|
|
1707
1727
|
did: String
|
|
1708
1728
|
name: String
|
|
@@ -1822,6 +1842,8 @@ enum BackendServiceType {
|
|
|
1822
1842
|
none
|
|
1823
1843
|
general_proxy
|
|
1824
1844
|
direct_response
|
|
1845
|
+
rewrite
|
|
1846
|
+
component
|
|
1825
1847
|
}
|
|
1826
1848
|
|
|
1827
1849
|
enum BackupTo {
|
|
@@ -1896,6 +1918,7 @@ type Mutation {
|
|
|
1896
1918
|
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
1897
1919
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
1898
1920
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1921
|
+
updateAppSessionConfig(input: RequestUpdateAppSessionConfigInput): ResponseBlocklet
|
|
1899
1922
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1900
1923
|
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1901
1924
|
backupBlocklet(input: RequestBackupBlockletInput): GeneralResponse
|
package/lib/schema.graphqls
CHANGED
|
@@ -656,6 +656,12 @@ input RoutingRuleToInput {
|
|
|
656
656
|
redirectCode: Int32
|
|
657
657
|
interfaceName: String
|
|
658
658
|
componentId: String
|
|
659
|
+
pageGroup: String
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
input SessionConfigInput {
|
|
663
|
+
cacheTtl: Uint32
|
|
664
|
+
ttl: Uint32
|
|
659
665
|
}
|
|
660
666
|
|
|
661
667
|
input SpaceGatewayInput {
|
|
@@ -744,6 +750,11 @@ input WebHookParamInput {
|
|
|
744
750
|
type: String
|
|
745
751
|
}
|
|
746
752
|
|
|
753
|
+
input RequestUpdateAppSessionConfigInput {
|
|
754
|
+
did: String
|
|
755
|
+
config: SessionConfigInput
|
|
756
|
+
}
|
|
757
|
+
|
|
747
758
|
type AccessKey {
|
|
748
759
|
accessKeyId: String
|
|
749
760
|
accessKeyPublic: String
|
|
@@ -901,6 +912,8 @@ type BlockletMetaInterface {
|
|
|
901
912
|
protocol: String
|
|
902
913
|
port: Any
|
|
903
914
|
services: [BlockletMetaService!]
|
|
915
|
+
cacheable: [String!]
|
|
916
|
+
pageGroups: [String!]
|
|
904
917
|
}
|
|
905
918
|
|
|
906
919
|
type BlockletMetaPerson {
|
|
@@ -960,6 +973,7 @@ type BlockletSettings {
|
|
|
960
973
|
oauth: Any
|
|
961
974
|
trustedFactories: [TrustedFactory!]
|
|
962
975
|
notification: Any
|
|
976
|
+
session: SessionConfig
|
|
963
977
|
}
|
|
964
978
|
|
|
965
979
|
type BlockletState {
|
|
@@ -1676,6 +1690,7 @@ type RoutingRuleTo {
|
|
|
1676
1690
|
redirectCode: Int32
|
|
1677
1691
|
interfaceName: String
|
|
1678
1692
|
componentId: String
|
|
1693
|
+
pageGroup: String
|
|
1679
1694
|
}
|
|
1680
1695
|
|
|
1681
1696
|
type RoutingSite {
|
|
@@ -1703,6 +1718,11 @@ type RuntimeInfo {
|
|
|
1703
1718
|
cpuUsage: Float32
|
|
1704
1719
|
}
|
|
1705
1720
|
|
|
1721
|
+
type SessionConfig {
|
|
1722
|
+
cacheTtl: Uint32
|
|
1723
|
+
ttl: Uint32
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1706
1726
|
type SimpleBlockletMeta {
|
|
1707
1727
|
did: String
|
|
1708
1728
|
name: String
|
|
@@ -1822,6 +1842,8 @@ enum BackendServiceType {
|
|
|
1822
1842
|
none
|
|
1823
1843
|
general_proxy
|
|
1824
1844
|
direct_response
|
|
1845
|
+
rewrite
|
|
1846
|
+
component
|
|
1825
1847
|
}
|
|
1826
1848
|
|
|
1827
1849
|
enum BackupTo {
|
|
@@ -1898,6 +1920,7 @@ type Mutation {
|
|
|
1898
1920
|
configOAuth(input: RequestConfigOAuthInput): ResponseBlocklet
|
|
1899
1921
|
configNotification(input: RequestConfigNotificationInput): ResponseBlocklet
|
|
1900
1922
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
|
1923
|
+
updateAppSessionConfig(input: RequestUpdateAppSessionConfigInput): ResponseBlocklet
|
|
1901
1924
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
|
1902
1925
|
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
|
1903
1926
|
backupBlocklet(input: RequestBackupBlockletInput): GeneralResponse
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.13-beta-
|
|
6
|
+
"version": "1.16.13-beta-423a40b1",
|
|
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": "
|
|
16
|
+
"gitHead": "1aee04f45042bd4784ca72f9f8b93918980be4d4",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|