koishi-plugin-delta-force 1.0.0-beta.0 → 1.0.0-beta.1

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 (73) hide show
  1. package/lib/api.d.ts +187 -5
  2. package/lib/api.d.ts.map +1 -1
  3. package/lib/commands/account/account.d.ts +5 -0
  4. package/lib/commands/account/account.d.ts.map +1 -0
  5. package/lib/commands/account/index.d.ts +3 -0
  6. package/lib/commands/account/index.d.ts.map +1 -0
  7. package/lib/commands/account/login.d.ts +5 -0
  8. package/lib/commands/account/login.d.ts.map +1 -0
  9. package/lib/commands/ai.d.ts +5 -0
  10. package/lib/commands/ai.d.ts.map +1 -0
  11. package/lib/commands/entertainment/index.d.ts +3 -0
  12. package/lib/commands/entertainment/index.d.ts.map +1 -0
  13. package/lib/commands/entertainment/tts.d.ts +7 -0
  14. package/lib/commands/entertainment/tts.d.ts.map +1 -0
  15. package/lib/commands/entertainment/voice.d.ts +8 -0
  16. package/lib/commands/entertainment/voice.d.ts.map +1 -0
  17. package/lib/commands/index.d.ts +5 -0
  18. package/lib/commands/index.d.ts.map +1 -0
  19. package/lib/commands/info/ban.d.ts +7 -0
  20. package/lib/commands/info/ban.d.ts.map +1 -0
  21. package/lib/commands/info/collection.d.ts +7 -0
  22. package/lib/commands/info/collection.d.ts.map +1 -0
  23. package/lib/commands/info/flows.d.ts +7 -0
  24. package/lib/commands/info/flows.d.ts.map +1 -0
  25. package/lib/commands/info/health.d.ts +7 -0
  26. package/lib/commands/info/health.d.ts.map +1 -0
  27. package/lib/commands/info/index.d.ts +10 -0
  28. package/lib/commands/info/index.d.ts.map +1 -0
  29. package/lib/commands/info/info.d.ts +5 -0
  30. package/lib/commands/info/info.d.ts.map +1 -0
  31. package/lib/commands/info/mapstats.d.ts +5 -0
  32. package/lib/commands/info/mapstats.d.ts.map +1 -0
  33. package/lib/commands/info/money.d.ts +7 -0
  34. package/lib/commands/info/money.d.ts.map +1 -0
  35. package/lib/commands/info/operator.d.ts +8 -0
  36. package/lib/commands/info/operator.d.ts.map +1 -0
  37. package/lib/commands/info/place.d.ts +7 -0
  38. package/lib/commands/info/place.d.ts.map +1 -0
  39. package/lib/commands/mapstats.d.ts +5 -0
  40. package/lib/commands/mapstats.d.ts.map +1 -0
  41. package/lib/commands/object.d.ts +4 -0
  42. package/lib/commands/object.d.ts.map +1 -0
  43. package/lib/commands/price.d.ts +4 -0
  44. package/lib/commands/price.d.ts.map +1 -0
  45. package/lib/commands/report/daily.d.ts +5 -0
  46. package/lib/commands/report/daily.d.ts.map +1 -0
  47. package/lib/commands/report/index.d.ts +4 -0
  48. package/lib/commands/report/index.d.ts.map +1 -0
  49. package/lib/commands/report/record.d.ts +5 -0
  50. package/lib/commands/report/record.d.ts.map +1 -0
  51. package/lib/commands/report/weekly.d.ts +5 -0
  52. package/lib/commands/report/weekly.d.ts.map +1 -0
  53. package/lib/commands/tools/ai.d.ts +5 -0
  54. package/lib/commands/tools/ai.d.ts.map +1 -0
  55. package/lib/commands/tools/index.d.ts +7 -0
  56. package/lib/commands/tools/index.d.ts.map +1 -0
  57. package/lib/commands/tools/object.d.ts +4 -0
  58. package/lib/commands/tools/object.d.ts.map +1 -0
  59. package/lib/commands/tools/password.d.ts +4 -0
  60. package/lib/commands/tools/password.d.ts.map +1 -0
  61. package/lib/commands/tools/price.d.ts +4 -0
  62. package/lib/commands/tools/price.d.ts.map +1 -0
  63. package/lib/commands/tools/room.d.ts +9 -0
  64. package/lib/commands/tools/room.d.ts.map +1 -0
  65. package/lib/commands/tools/solution.d.ts +8 -0
  66. package/lib/commands/tools/solution.d.ts.map +1 -0
  67. package/lib/data.d.ts +22 -0
  68. package/lib/data.d.ts.map +1 -1
  69. package/lib/index.d.ts.map +1 -1
  70. package/lib/index.js +3826 -341
  71. package/lib/middleware.d.ts +9 -0
  72. package/lib/middleware.d.ts.map +1 -0
  73. package/package.json +59 -59
package/lib/api.d.ts CHANGED
@@ -1,36 +1,218 @@
1
1
  import { Context } from 'koishi';
2
2
  import { Config } from './config';
3
3
  import { ApiResponse, LoginResponse, BindCharacterResponse, UserInfo, CareerData, UserListItem } from './types';
4
+ /**
5
+ * Delta Force API 服务类
6
+ */
4
7
  export declare class ApiService {
5
8
  private ctx;
6
9
  private config;
7
10
  constructor(ctx: Context, config: Config);
8
11
  private request;
12
+ /** 获取登录二维码 */
9
13
  getLoginQr(platform?: string): Promise<LoginResponse>;
14
+ /** 获取登录状态 */
10
15
  getLoginStatus(platform: string, frameworkToken: string): Promise<ApiResponse>;
16
+ /** 刷新登录状态 */
17
+ refreshLogin(platform: string, frameworkToken: string): Promise<ApiResponse>;
18
+ /** 删除QQ登录数据 */
19
+ deleteQqLogin(frameworkToken: string): Promise<ApiResponse>;
20
+ /** 删除微信登录数据 */
21
+ deleteWechatLogin(frameworkToken: string): Promise<ApiResponse>;
22
+ /** 获取封禁历史 */
23
+ getBanHistory(frameworkToken: string): Promise<ApiResponse>;
24
+ /** 绑定用户 Token */
11
25
  bindUser(data: {
12
26
  platformID: string;
13
27
  frameworkToken: string;
14
28
  clientID: string;
15
29
  clientType: string;
16
30
  }): Promise<ApiResponse>;
31
+ /** 解绑用户 Token */
32
+ unbindUser(data: {
33
+ platformID: string;
34
+ frameworkToken: string;
35
+ clientID: string;
36
+ clientType: string;
37
+ }): Promise<ApiResponse>;
38
+ /** 获取用户绑定的 Token 列表 */
17
39
  getUserList(platformID: string, clientID: string): Promise<ApiResponse<UserListItem[]>>;
40
+ /** 绑定游戏内角色 */
18
41
  bindCharacter(frameworkToken: string): Promise<BindCharacterResponse>;
42
+ /** 获取个人信息 */
19
43
  getPersonalInfo(frameworkToken: string): Promise<ApiResponse<{
20
44
  userData: unknown;
21
45
  careerData: CareerData;
22
46
  }> & {
23
47
  roleInfo: UserInfo;
24
48
  }>;
25
- getDailyReport(frameworkToken: string, type?: string): Promise<ApiResponse>;
26
- getWeeklyReport(frameworkToken: string, type?: string, isShowNullFriend?: boolean, date?: string): Promise<ApiResponse>;
49
+ /** 获取个人数据(烽火地带和全面战场) */
50
+ getPersonalData(frameworkToken: string, type?: string, seasonid?: string | number): Promise<ApiResponse>;
51
+ /** 获取战绩记录 */
27
52
  getRecordList(frameworkToken: string, type?: string, page?: number): Promise<ApiResponse>;
53
+ /** 获取地图数据统计 */
54
+ getMapStats(frameworkToken: string, seasonid?: string, type?: string, mapId?: string): Promise<ApiResponse>;
55
+ /** 获取货币信息 */
56
+ getMoney(frameworkToken: string): Promise<ApiResponse>;
57
+ /** 获取流水记录 */
58
+ getFlows(frameworkToken: string, type?: number, page?: number): Promise<ApiResponse>;
59
+ /** 获取个人藏品 */
60
+ getCollection(frameworkToken: string): Promise<ApiResponse>;
61
+ /** 获取大红称号 */
62
+ getTitle(frameworkToken: string): Promise<ApiResponse>;
63
+ /** 获取藏品解锁记录列表 */
64
+ getRedList(frameworkToken: string): Promise<ApiResponse>;
65
+ /** 获取指定藏品的详细记录 */
66
+ getRedRecord(frameworkToken: string, objectid: string): Promise<ApiResponse>;
67
+ /** 获取好友信息 */
68
+ getFriendInfo(frameworkToken: string, openid: string): Promise<ApiResponse>;
69
+ /** 获取日报 */
70
+ getDailyReport(frameworkToken: string, type?: string, date?: string): Promise<ApiResponse>;
71
+ /** 获取周报 */
72
+ getWeeklyReport(frameworkToken: string, type?: string, isShowNullFriend?: boolean, date?: string): Promise<ApiResponse>;
73
+ /** AI评价战绩 */
74
+ getAiCommentary(frameworkToken: string, type?: string, preset?: string, conversationId?: string): Promise<ApiResponse>;
75
+ /** 获取AI评价预设列表 */
76
+ getAiPresets(): Promise<ApiResponse>;
77
+ /** 获取特勤处状态 */
78
+ getPlaceStatus(frameworkToken: string): Promise<ApiResponse>;
79
+ /** 获取特勤处信息 */
80
+ getPlaceInfo(frameworkToken: string, place?: string): Promise<ApiResponse>;
81
+ /** 获取制造材料最低价格 */
82
+ getMaterialPrice(id?: string): Promise<ApiResponse>;
83
+ /** 获取利润历史 */
84
+ getProfitHistory(params: {
85
+ objectId?: string;
86
+ objectName?: string;
87
+ place?: string;
88
+ }): Promise<ApiResponse>;
89
+ /** 获取利润排行榜 V1 */
90
+ getProfitRankV1(params: {
91
+ type: string;
92
+ place?: string;
93
+ limit?: number;
94
+ timestamp?: number;
95
+ }): Promise<ApiResponse>;
96
+ /** 获取利润排行榜 V2 (最高利润) */
97
+ getProfitRankV2(params: {
98
+ type: string;
99
+ place?: string;
100
+ id?: string;
101
+ }): Promise<ApiResponse>;
102
+ /** 获取房间列表 */
103
+ getRoomList(clientID: string, type?: string, hasPassword?: string): Promise<ApiResponse>;
104
+ /** 获取房间信息 */
105
+ getRoomInfo(frameworkToken: string, clientID: string): Promise<ApiResponse>;
106
+ /** 创建房间 */
107
+ createRoom(frameworkToken: string, clientID: string, type: string, mapid?: string, tag?: string, password?: string, onlyCurrentlyClient?: boolean): Promise<ApiResponse>;
108
+ /** 加入房间 */
109
+ joinRoom(frameworkToken: string, clientID: string, roomId: string, password?: string): Promise<ApiResponse>;
110
+ /** 退出房间 */
111
+ quitRoom(frameworkToken: string, clientID: string, roomId: string): Promise<ApiResponse>;
112
+ /** 踢人 */
113
+ kickMember(frameworkToken: string, clientID: string, roomId: string, targetFrameworkToken: string): Promise<ApiResponse>;
114
+ /** 获取房间标签 */
115
+ getRoomTags(): Promise<ApiResponse>;
116
+ /** 获取地图列表 */
28
117
  getMaps(): Promise<ApiResponse>;
118
+ /** 获取干员列表(简化版) */
29
119
  getOperators(): Promise<ApiResponse>;
30
- getDailyKeyword(): Promise<ApiResponse>;
120
+ /** 获取所有干员信息 */
121
+ getOperator(): Promise<ApiResponse>;
122
+ /** 获取健康状态信息 */
123
+ getHealth(): Promise<ApiResponse>;
124
+ /** 获取排位分数对照表 */
31
125
  getRankScore(): Promise<ApiResponse>;
32
- getAudioTags(): Promise<ApiResponse>;
33
- getAudioCharacters(): Promise<ApiResponse>;
126
+ /** 获取物品列表 */
127
+ getObjectList(primary?: string, second?: string): Promise<ApiResponse>;
128
+ /** 搜索物品 */
129
+ searchObject(name?: string, ids?: string): Promise<ApiResponse>;
130
+ /** 获取藏品信息对照表 */
131
+ getCollectionMap(): Promise<ApiResponse>;
132
+ /** 获取物品历史均价 (V1接口) */
133
+ getPriceHistoryV1(id: string): Promise<ApiResponse>;
134
+ /** 获取物品历史价格 (V2接口,半小时精度) */
135
+ getPriceHistoryV2(objectId: string | string[]): Promise<ApiResponse>;
136
+ /** 获取物品当前均价 */
137
+ getCurrentPrice(id: string | string[]): Promise<ApiResponse>;
138
+ /** 上传改枪方案 */
139
+ uploadSolution(frameworkToken: string, clientID: string, platformID: string, solutionCode: string, desc?: string, isPublic?: boolean, type?: string, weaponId?: string, accessory?: string): Promise<ApiResponse>;
140
+ /** 获取方案列表 */
141
+ getSolutionList(frameworkToken: string, clientID: string, platformID: string, weaponId?: string, weaponName?: string, priceRange?: string, authorPlatformID?: string, type?: string): Promise<ApiResponse>;
142
+ /** 获取方案详情 */
143
+ getSolutionDetail(frameworkToken: string, clientID: string, platformID: string, solutionId: string): Promise<ApiResponse>;
144
+ /** 投票 */
145
+ voteSolution(frameworkToken: string, clientID: string, platformID: string, solutionId: string, voteType: string): Promise<ApiResponse>;
146
+ /** 更新方案 */
147
+ updateSolution(frameworkToken: string, clientID: string, platformID: string, solutionId: string, solutionCode?: string, desc?: string, isPublic?: boolean, type?: string, accessory?: string): Promise<ApiResponse>;
148
+ /** 删除方案 */
149
+ deleteSolution(frameworkToken: string, clientID: string, platformID: string, solutionId: string): Promise<ApiResponse>;
150
+ /** 收藏方案 */
151
+ collectSolution(frameworkToken: string, clientID: string, platformID: string, solutionId: string): Promise<ApiResponse>;
152
+ /** 取消收藏 */
153
+ discollectSolution(frameworkToken: string, clientID: string, platformID: string, solutionId: string): Promise<ApiResponse>;
154
+ /** 收藏列表 */
155
+ getCollectList(frameworkToken: string, clientID: string, platformID: string): Promise<ApiResponse>;
156
+ /** 获取每日密码 */
157
+ getDailyKeyword(): Promise<ApiResponse>;
158
+ /** 获取文章列表 */
159
+ getArticleList(): Promise<ApiResponse>;
160
+ /** 获取文章详情 */
161
+ getArticleDetail(threadId: string): Promise<ApiResponse>;
162
+ /** 随机获取音频 */
163
+ getRandomAudio(params?: {
164
+ category?: string;
165
+ tag?: string;
166
+ character?: string;
167
+ scene?: string;
168
+ actionType?: string;
169
+ actionDetail?: string;
170
+ count?: number;
171
+ }): Promise<ApiResponse>;
172
+ /** 获取角色随机音频 */
173
+ getCharacterAudio(params?: {
174
+ character?: string;
175
+ scene?: string;
176
+ actionType?: string;
177
+ actionDetail?: string;
178
+ count?: number;
179
+ }): Promise<ApiResponse>;
180
+ /** 获取音频分类列表 */
34
181
  getAudioCategories(): Promise<ApiResponse>;
182
+ /** 获取角色列表 */
183
+ getAudioCharacters(): Promise<ApiResponse>;
184
+ /** 获取音频统计信息 */
185
+ getAudioStats(): Promise<ApiResponse>;
186
+ /** 获取特殊标签列表 */
187
+ getAudioTags(): Promise<ApiResponse>;
188
+ /** 获取鼠鼠随机音乐 */
189
+ getShushuMusic(params?: {
190
+ count?: number;
191
+ playlist?: string;
192
+ artist?: string;
193
+ title?: string;
194
+ }): Promise<ApiResponse>;
195
+ /** 获取鼠鼠音乐列表 */
196
+ getShushuMusicList(params?: {
197
+ sortBy?: string;
198
+ playlist?: string;
199
+ artist?: string;
200
+ }): Promise<ApiResponse>;
201
+ /** 检查TTS服务状态 */
202
+ getTtsHealth(): Promise<ApiResponse>;
203
+ /** 获取TTS角色预设列表 */
204
+ getTtsPresets(): Promise<ApiResponse>;
205
+ /** 获取TTS角色预设详情 */
206
+ getTtsPreset(characterId: string): Promise<ApiResponse>;
207
+ /** TTS语音合成(队列模式) */
208
+ ttsSynthesize(params: {
209
+ text: string;
210
+ character: string;
211
+ emotion?: string;
212
+ }): Promise<ApiResponse>;
213
+ /** 查询TTS任务状态 */
214
+ getTtsTaskStatus(taskId: string): Promise<ApiResponse>;
215
+ /** 查询TTS队列状态 */
216
+ getTtsQueueStatus(): Promise<ApiResponse>;
35
217
  }
36
218
  //# sourceMappingURL=api.d.ts.map
package/lib/api.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,qBAAqB,EAAE,QAAQ,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE/G,qBAAa,UAAU;IAEnB,OAAO,CAAC,GAAG;IACX,OAAO,CAAC,MAAM;gBADN,GAAG,EAAE,OAAO,EACZ,MAAM,EAAE,MAAM;YAGV,OAAO;IAqEf,UAAU,CAAC,QAAQ,GAAE,MAAa,GAAG,OAAO,CAAC,aAAa,CAAC;IAK3D,cAAc,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAK9E,QAAQ,CAAC,IAAI,EAAE;QACnB,UAAU,EAAE,MAAM,CAAA;QAClB,cAAc,EAAE,MAAM,CAAA;QACtB,QAAQ,EAAE,MAAM,CAAA;QAChB,UAAU,EAAE,MAAM,CAAA;KACnB,GAAG,OAAO,CAAC,WAAW,CAAC;IAKlB,WAAW,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,YAAY,EAAE,CAAC,CAAC;IASvF,aAAa,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAQrE,eAAe,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;QACjE,QAAQ,EAAE,OAAO,CAAA;QACjB,UAAU,EAAE,UAAU,CAAA;KACvB,CAAC,GAAG;QACH,QAAQ,EAAE,QAAQ,CAAA;KACnB,CAAC;IAUI,cAAc,CAAC,cAAc,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAS3E,eAAe,CACnB,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,MAAM,EACb,gBAAgB,CAAC,EAAE,OAAO,EAC1B,IAAI,CAAC,EAAE,MAAM,GACZ,OAAO,CAAC,WAAW,CAAC;IAejB,aAAa,CACjB,cAAc,EAAE,MAAM,EACtB,IAAI,GAAE,MAAc,EACpB,IAAI,GAAE,MAAU,GACf,OAAO,CAAC,WAAW,CAAC;IAgBjB,OAAO,IAAI,OAAO,CAAC,WAAW,CAAC;IAK/B,YAAY,IAAI,OAAO,CAAC,WAAW,CAAC;IAKpC,eAAe,IAAI,OAAO,CAAC,WAAW,CAAC;IAKvC,YAAY,IAAI,OAAO,CAAC,WAAW,CAAC;IAKpC,YAAY,IAAI,OAAO,CAAC,WAAW,CAAC;IAKpC,kBAAkB,IAAI,OAAO,CAAC,WAAW,CAAC;IAK1C,kBAAkB,IAAI,OAAO,CAAC,WAAW,CAAC;CAGjD"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { Config } from '../../config';
3
+ import { ApiService } from '../../api';
4
+ export declare function registerAccountCommands(ctx: Context, config: Config, api: ApiService): void;
5
+ //# sourceMappingURL=account.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/commands/account/account.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAW,MAAM,QAAQ,CAAA;AACzC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAGtC,wBAAgB,uBAAuB,CACrC,GAAG,EAAE,OAAO,EACZ,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,UAAU,QAyShB"}
@@ -0,0 +1,3 @@
1
+ export { registerLoginCommands } from './login';
2
+ export { registerAccountCommands } from './account';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/account/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAA"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { Config } from '../../config';
3
+ import { ApiService } from '../../api';
4
+ export declare function registerLoginCommands(ctx: Context, config: Config, api: ApiService): void;
5
+ //# sourceMappingURL=login.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"login.d.ts","sourceRoot":"","sources":["../../../src/commands/account/login.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAK,MAAM,QAAQ,CAAA;AACnC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAItC,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,UAAU,QAqRhB"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../api';
3
+ import { DataManager } from '../data';
4
+ export declare function registerAiCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=ai.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../src/commands/ai.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAarC,wBAAgB,kBAAkB,CAChC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QA+KzB"}
@@ -0,0 +1,3 @@
1
+ export { registerVoiceCommands } from './voice';
2
+ export { registerTtsCommands } from './tts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/entertainment/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册TTS语音合成相关命令
5
+ */
6
+ export declare function registerTtsCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=tts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tts.d.ts","sourceRoot":"","sources":["../../../src/commands/entertainment/tts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAK,MAAM,QAAQ,CAAA;AACnC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAGtC;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QA8RhB"}
@@ -0,0 +1,8 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ /**
5
+ * 注册语音相关命令
6
+ */
7
+ export declare function registerVoiceCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
8
+ //# sourceMappingURL=voice.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"voice.d.ts","sourceRoot":"","sources":["../../../src/commands/entertainment/voice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAK,MAAM,QAAQ,CAAA;AACnC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAuBxC;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QAkTzB"}
@@ -0,0 +1,5 @@
1
+ export { registerLoginCommands, registerAccountCommands } from './account';
2
+ export { registerDailyCommands, registerWeeklyCommands, registerRecordCommands } from './report';
3
+ export { registerInfoCommands, registerMapStatsCommands } from './info';
4
+ export { registerPriceCommands, registerObjectCommands, registerAiCommands, registerPasswordCommands } from './tools';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAA;AAG1E,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AAGhG,OAAO,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,MAAM,QAAQ,CAAA;AAGvE,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册封号记录查询相关命令
5
+ */
6
+ export declare function registerBanCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=ban.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ban.d.ts","sourceRoot":"","sources":["../../../src/commands/info/ban.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAItC;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAuEhB"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册藏品查询相关命令
5
+ */
6
+ export declare function registerCollectionCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"collection.d.ts","sourceRoot":"","sources":["../../../src/commands/info/collection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAwBtC;;GAEG;AACH,wBAAgB,0BAA0B,CACxC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAsKhB"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册流水查询相关命令
5
+ */
6
+ export declare function registerFlowsCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=flows.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flows.d.ts","sourceRoot":"","sources":["../../../src/commands/info/flows.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAiBtC;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAoDhB"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册服务器状态查询相关命令
5
+ */
6
+ export declare function registerHealthCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=health.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"health.d.ts","sourceRoot":"","sources":["../../../src/commands/info/health.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAEtC;;GAEG;AACH,wBAAgB,sBAAsB,CACpC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAoDhB"}
@@ -0,0 +1,10 @@
1
+ export { registerInfoCommands } from './info';
2
+ export { registerMapStatsCommands } from './mapstats';
3
+ export { registerMoneyCommands } from './money';
4
+ export { registerFlowsCommands } from './flows';
5
+ export { registerCollectionCommands } from './collection';
6
+ export { registerPlaceCommands } from './place';
7
+ export { registerBanCommands } from './ban';
8
+ export { registerOperatorCommands } from './operator';
9
+ export { registerHealthCommands } from './health';
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/info/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAA;AAC7C,OAAO,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAA;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAA;AAC3C,OAAO,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ export declare function registerInfoCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=info.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"info.d.ts","sourceRoot":"","sources":["../../../src/commands/info/info.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAIxC,wBAAgB,oBAAoB,CAClC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QA2HzB"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ export declare function registerMapStatsCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=mapstats.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mapstats.d.ts","sourceRoot":"","sources":["../../../src/commands/info/mapstats.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAuBxC,wBAAgB,wBAAwB,CACtC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QAkGzB"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册货币查询相关命令
5
+ */
6
+ export declare function registerMoneyCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=money.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"money.d.ts","sourceRoot":"","sources":["../../../src/commands/info/money.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAItC;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAkDhB"}
@@ -0,0 +1,8 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ /**
5
+ * 注册干员查询相关命令
6
+ */
7
+ export declare function registerOperatorCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
8
+ //# sourceMappingURL=operator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operator.d.ts","sourceRoot":"","sources":["../../../src/commands/info/operator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAcxC;;GAEG;AACH,wBAAgB,wBAAwB,CACtC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QAsLzB"}
@@ -0,0 +1,7 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ /**
4
+ * 注册特勤处信息查询相关命令
5
+ */
6
+ export declare function registerPlaceCommands(ctx: Context, api: ApiService): void;
7
+ //# sourceMappingURL=place.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"place.d.ts","sourceRoot":"","sources":["../../../src/commands/info/place.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAmCtC;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAqJhB"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../api';
3
+ import { DataManager } from '../data';
4
+ export declare function registerMapStatsCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=mapstats.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mapstats.d.ts","sourceRoot":"","sources":["../../src/commands/mapstats.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAyBrC,wBAAgB,wBAAwB,CACtC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QAsGzB"}
@@ -0,0 +1,4 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../api';
3
+ export declare function registerObjectCommands(ctx: Context, api: ApiService): void;
4
+ //# sourceMappingURL=object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"object.d.ts","sourceRoot":"","sources":["../../src/commands/object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAA;AAiBnC,wBAAgB,sBAAsB,CACpC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAiEhB"}
@@ -0,0 +1,4 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../api';
3
+ export declare function registerPriceCommands(ctx: Context, api: ApiService): void;
4
+ //# sourceMappingURL=price.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"price.d.ts","sourceRoot":"","sources":["../../src/commands/price.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAA;AA0BnC,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAkNhB"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ export declare function registerDailyCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=daily.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"daily.d.ts","sourceRoot":"","sources":["../../../src/commands/report/daily.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAKxC,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QA6BzB"}
@@ -0,0 +1,4 @@
1
+ export { registerDailyCommands } from './daily';
2
+ export { registerWeeklyCommands } from './weekly';
3
+ export { registerRecordCommands } from './record';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/report/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AACjD,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ export declare function registerRecordCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=record.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"record.d.ts","sourceRoot":"","sources":["../../../src/commands/report/record.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAIxC,wBAAgB,sBAAsB,CACpC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QA0DzB"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ export declare function registerWeeklyCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=weekly.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"weekly.d.ts","sourceRoot":"","sources":["../../../src/commands/report/weekly.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAKxC,wBAAgB,sBAAsB,CACpC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QAuCzB"}
@@ -0,0 +1,5 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ import { DataManager } from '../../data';
4
+ export declare function registerAiCommands(ctx: Context, api: ApiService, dataManager: DataManager): void;
5
+ //# sourceMappingURL=ai.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../../src/commands/tools/ai.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAYxC,wBAAgB,kBAAkB,CAChC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QAuKzB"}
@@ -0,0 +1,7 @@
1
+ export { registerPriceCommands } from './price';
2
+ export { registerObjectCommands } from './object';
3
+ export { registerAiCommands } from './ai';
4
+ export { registerPasswordCommands } from './password';
5
+ export { registerSolutionCommands } from './solution';
6
+ export { registerRoomCommands } from './room';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/tools/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAA;AACzC,OAAO,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAA;AACrD,OAAO,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ export declare function registerObjectCommands(ctx: Context, api: ApiService): void;
4
+ //# sourceMappingURL=object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"object.d.ts","sourceRoot":"","sources":["../../../src/commands/tools/object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAiBtC,wBAAgB,sBAAsB,CACpC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAgEhB"}
@@ -0,0 +1,4 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ export declare function registerPasswordCommands(ctx: Context, api: ApiService): void;
4
+ //# sourceMappingURL=password.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"password.d.ts","sourceRoot":"","sources":["../../../src/commands/tools/password.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAYtC,wBAAgB,wBAAwB,CACtC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QA8BhB"}
@@ -0,0 +1,4 @@
1
+ import { Context } from 'koishi';
2
+ import { ApiService } from '../../api';
3
+ export declare function registerPriceCommands(ctx: Context, api: ApiService): void;
4
+ //# sourceMappingURL=price.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"price.d.ts","sourceRoot":"","sources":["../../../src/commands/tools/price.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AA0BtC,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,OAAO,EACZ,GAAG,EAAE,UAAU,QAiNhB"}
@@ -0,0 +1,9 @@
1
+ import { Context } from 'koishi';
2
+ import { Config } from '../../config';
3
+ import { ApiService } from '../../api';
4
+ import { DataManager } from '../../data';
5
+ /**
6
+ * 注册开黑房间相关命令
7
+ */
8
+ export declare function registerRoomCommands(ctx: Context, config: Config, api: ApiService, dataManager: DataManager): void;
9
+ //# sourceMappingURL=room.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"room.d.ts","sourceRoot":"","sources":["../../../src/commands/tools/room.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAChC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAIxC;;GAEG;AACH,wBAAgB,oBAAoB,CAClC,GAAG,EAAE,OAAO,EACZ,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,WAAW,QA2WzB"}