@abtnode/types 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/enum_pb.d.ts CHANGED
@@ -45,6 +45,8 @@ export interface BackendServiceTypeMap {
45
45
  NONE: 3;
46
46
  GENERAL_PROXY: 4;
47
47
  DIRECT_RESPONSE: 5;
48
+ REWRITE: 6;
49
+ COMPONENT: 7;
48
50
  }
49
51
  export interface UploadMap {
50
52
  SCALAR: 0;
package/lib/rpc_pb.d.ts CHANGED
@@ -685,3 +685,7 @@ export type TResponseGetLauncherSession = {
685
685
  error: string,
686
686
  launcherSession?: Record<string, any>,
687
687
  }
688
+ export type TrequestUpdateAppSessionConfig = {
689
+ did: string,
690
+ config?: type_pb.TSessionConfig,
691
+ }
package/lib/type_pb.d.ts CHANGED
@@ -165,6 +165,8 @@ export type TBlockletMetaInterface = {
165
165
  protocol: string,
166
166
  port?: Record<string, any>,
167
167
  services: TBlockletMetaService[],
168
+ cacheable: string[],
169
+ pageGroups: string[],
168
170
  }
169
171
  export type TBlockletMetaPerson = {
170
172
  name: string,
@@ -314,6 +316,7 @@ export type TBlockletSettings = {
314
316
  oauth?: Record<string, any>,
315
317
  trustedFactories: TTrustedFactory[],
316
318
  notification?: Record<string, any>,
319
+ session?: TSessionConfig,
317
320
  }
318
321
  export type TBlockletMetaService = {
319
322
  name: string,
@@ -428,6 +431,7 @@ export type TRoutingRuleTo = {
428
431
  redirectCode: number,
429
432
  interfaceName: string,
430
433
  componentId: string,
434
+ pageGroup: string,
431
435
  }
432
436
  export type TRoutingRuleFrom = {
433
437
  pathPrefix: string,
@@ -746,3 +750,7 @@ export type TBackup = {
746
750
  status: number,
747
751
  message: string,
748
752
  }
753
+ export type TSessionConfig = {
754
+ cacheTtl: number,
755
+ ttl: number,
756
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/types",
3
- "version": "1.16.13-beta-55b3e93d",
3
+ "version": "1.16.13-beta-423a40b1",
4
4
  "description": "Typescript definitions generated from protobuf",
5
5
  "keywords": [
6
6
  "abtnode",
@@ -36,5 +36,5 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/ArcBlock/abt-node/issues"
38
38
  },
39
- "gitHead": "1c734de99ff70fad99e9cc3fb55834e0bb6f5bfd"
39
+ "gitHead": "1aee04f45042bd4784ca72f9f8b93918980be4d4"
40
40
  }