@shimotsuki/core 3.0.33 → 3.0.34

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -643,8 +643,7 @@ declare class WrapperSocialGameClient extends SocialGameClient {
643
643
  ignore: (route: string) => boolean;
644
644
  constructor(name: string, opts: Partial<SocialGameClientOption>, eventResponsePairs: Partial<AllEventResponsePairs>, clientOption?: ExtendedClientOption);
645
645
  destroy(): void;
646
- GameRequest<T extends string>(route: T, req: BinaryWriter, res: MessageFns<any>, options?: AudienceOptions): Promise<any>;
647
- GameRequest<T extends string, U>(route: T, req: BinaryWriter, res: MessageFns<U>, options?: AudienceOptions): Promise<U>;
646
+ GameRequest<U>(route: string, req: BinaryWriter, res: MessageFns<U>, { forwardReq, forwardResp }?: AudienceOptions): Promise<U>;
648
647
  subscribe<T>(route: string, respType: MessageFns<T>, fn?: (data: T) => void): this;
649
648
  }
650
649
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shimotsuki/core",
3
- "version": "3.0.33",
3
+ "version": "3.0.34",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/shimotsuki_core.js",