koishi-plugin-ggcevo-game 1.2.71 → 1.2.73

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.d.ts CHANGED
@@ -3,7 +3,6 @@ import 'koishi-plugin-sc2arcade-search';
3
3
  export declare const name = "ggcevo-game";
4
4
  export interface Config {
5
5
  proxyAgent: string;
6
- ggcqun: string;
7
6
  rankseason: string;
8
7
  signrequire: boolean;
9
8
  autorank: boolean;
@@ -41,6 +40,7 @@ declare module 'koishi' {
41
40
  ggcevo_Wish_Record: WishRecord;
42
41
  ggcevo_careers: careers;
43
42
  ggcevo_warehouse: warehouse;
43
+ ggcevo_tech: tech;
44
44
  }
45
45
  }
46
46
  export interface backpack {
@@ -184,4 +184,9 @@ export interface warehouse {
184
184
  itemId: number;
185
185
  quantity: number;
186
186
  }
187
+ export interface tech {
188
+ handle: string;
189
+ techId: number;
190
+ level: number;
191
+ }
187
192
  export declare function apply(ctx: Context, config: Config): void;