@rpack-dev/core 0.1.11-dev-d891ad6 → 0.1.12-dev-f2ed683

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.
@@ -56,7 +56,7 @@ declare class RPack {
56
56
  getPlugin<T extends RPPlugin>(key: string): Promise<RegistryDataFiltered<T> | undefined>;
57
57
  }
58
58
  export declare abstract class PluginArchive {
59
- static MANIFEST_PATH: string;
59
+ static readonly MANIFEST_PATH = "manifest.json";
60
60
  private readonly map;
61
61
  private manifest;
62
62
  protected constructor();
@@ -784,16 +784,22 @@ export declare namespace Registry {
784
784
  function withDefaultOptions(options?: Partial<RegistryOptions>): RegistryOptions;
785
785
  function withPublicDefaultOptions(options?: Partial<RegistryOptions>): PublicRegistryOptions;
786
786
  }
787
- export interface DevPluginSourceR2SHelloPacket {
788
- id: "hello_request";
787
+ export interface DevPluginSourceR2SHelloRPackPacket {
788
+ id: "hello_request_rpack";
789
789
  rpackChannel: string;
790
790
  rpackVersion: string;
791
791
  implementationName: string;
792
792
  implementationChannel: string;
793
793
  implementationVersion: string;
794
794
  }
795
+ export interface DevPluginSourceR2SHelloServerPacket {
796
+ id: "hello_request_server";
797
+ serverVersion: string;
798
+ serverBrand: string;
799
+ }
795
800
  export interface DevPluginSourceR2SPackets {
796
- "hello_request": DevPluginSourceR2SHelloPacket;
801
+ "hello_request_rpack": DevPluginSourceR2SHelloRPackPacket;
802
+ "hello_request_server": DevPluginSourceR2SHelloRPackPacket;
797
803
  }
798
804
  export interface DevPluginSourceS2RHelloPacket {
799
805
  id: "hello_response";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpack-dev/core",
3
- "version": "0.1.11-dev-d891ad6",
3
+ "version": "0.1.12-dev-f2ed683",
4
4
  "description": "",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "repository": {