@opfr/services 0.46.1 → 0.48.0
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/dist/index.es.js +2490 -2041
- package/dist/index.umd.js +5 -5
- package/dist/quests/quests/common/tournament.d.ts +314 -2
- package/dist/quests/quests/common/tournament.d.ts.map +1 -1
- package/dist/quests/quests/index.d.ts +1 -1
- package/dist/quests/quests/index.d.ts.map +1 -1
- package/dist/services/user-inventory/definition/schema.d.ts.map +1 -1
- package/dist/services/user-inventory/query/updates.d.ts +3 -1
- package/dist/services/user-inventory/query/updates.d.ts.map +1 -1
- package/dist/services/user-inventory/types.d.ts +1 -0
- package/dist/services/user-inventory/types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@ import { Quest } from '../../index';
|
|
|
2
2
|
export declare class Insistent extends Quest {
|
|
3
3
|
name: string;
|
|
4
4
|
id: string;
|
|
5
|
-
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.
|
|
5
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.COMMON>;
|
|
6
6
|
description: string;
|
|
7
7
|
berry: number;
|
|
8
8
|
xp: number;
|
|
@@ -16,6 +16,38 @@ export declare class Insistent extends Quest {
|
|
|
16
16
|
repeatable: boolean;
|
|
17
17
|
}
|
|
18
18
|
export declare class Resurrection extends Quest {
|
|
19
|
+
name: string;
|
|
20
|
+
id: string;
|
|
21
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.RARE>;
|
|
22
|
+
description: string;
|
|
23
|
+
berry: number;
|
|
24
|
+
xp: number;
|
|
25
|
+
secret: boolean;
|
|
26
|
+
asset: null;
|
|
27
|
+
title: null;
|
|
28
|
+
badge: null;
|
|
29
|
+
isFactionBadge: boolean;
|
|
30
|
+
daily: boolean;
|
|
31
|
+
crew: boolean;
|
|
32
|
+
repeatable: boolean;
|
|
33
|
+
}
|
|
34
|
+
export declare class Rebirth extends Quest {
|
|
35
|
+
name: string;
|
|
36
|
+
id: string;
|
|
37
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.EPIC>;
|
|
38
|
+
description: string;
|
|
39
|
+
berry: number;
|
|
40
|
+
xp: number;
|
|
41
|
+
secret: boolean;
|
|
42
|
+
asset: null;
|
|
43
|
+
title: null;
|
|
44
|
+
badge: null;
|
|
45
|
+
isFactionBadge: boolean;
|
|
46
|
+
daily: boolean;
|
|
47
|
+
crew: boolean;
|
|
48
|
+
repeatable: boolean;
|
|
49
|
+
}
|
|
50
|
+
export declare class Phoenix extends Quest {
|
|
19
51
|
name: string;
|
|
20
52
|
id: string;
|
|
21
53
|
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.LEGENDARY>;
|
|
@@ -31,13 +63,241 @@ export declare class Resurrection extends Quest {
|
|
|
31
63
|
crew: boolean;
|
|
32
64
|
repeatable: boolean;
|
|
33
65
|
}
|
|
34
|
-
export declare class
|
|
66
|
+
export declare class Immortal extends Quest {
|
|
35
67
|
name: string;
|
|
36
68
|
id: string;
|
|
37
69
|
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.MYTHIC>;
|
|
38
70
|
description: string;
|
|
39
71
|
berry: number;
|
|
40
72
|
xp: number;
|
|
73
|
+
secret: boolean;
|
|
74
|
+
asset: null;
|
|
75
|
+
title: null;
|
|
76
|
+
badge: null;
|
|
77
|
+
isFactionBadge: boolean;
|
|
78
|
+
daily: boolean;
|
|
79
|
+
crew: boolean;
|
|
80
|
+
repeatable: boolean;
|
|
81
|
+
}
|
|
82
|
+
export declare class Cursed_Branch extends Quest {
|
|
83
|
+
name: string;
|
|
84
|
+
id: string;
|
|
85
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.RARE>;
|
|
86
|
+
description: string;
|
|
87
|
+
berry: number;
|
|
88
|
+
xp: number;
|
|
89
|
+
secret: boolean;
|
|
90
|
+
asset: null;
|
|
91
|
+
title: null;
|
|
92
|
+
badge: null;
|
|
93
|
+
isFactionBadge: boolean;
|
|
94
|
+
daily: boolean;
|
|
95
|
+
crew: boolean;
|
|
96
|
+
repeatable: boolean;
|
|
97
|
+
}
|
|
98
|
+
export declare class Top64 extends Quest {
|
|
99
|
+
name: string;
|
|
100
|
+
id: string;
|
|
101
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.COMMON>;
|
|
102
|
+
description: string;
|
|
103
|
+
berry: number;
|
|
104
|
+
xp: number;
|
|
105
|
+
secret: boolean;
|
|
106
|
+
asset: null;
|
|
107
|
+
title: null;
|
|
108
|
+
badge: null;
|
|
109
|
+
isFactionBadge: boolean;
|
|
110
|
+
daily: boolean;
|
|
111
|
+
crew: boolean;
|
|
112
|
+
repeatable: boolean;
|
|
113
|
+
}
|
|
114
|
+
export declare class ZeroScored extends Quest {
|
|
115
|
+
name: string;
|
|
116
|
+
id: string;
|
|
117
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.COMMON>;
|
|
118
|
+
description: string;
|
|
119
|
+
berry: number;
|
|
120
|
+
xp: number;
|
|
121
|
+
secret: boolean;
|
|
122
|
+
asset: null;
|
|
123
|
+
title: null;
|
|
124
|
+
badge: null;
|
|
125
|
+
isFactionBadge: boolean;
|
|
126
|
+
daily: boolean;
|
|
127
|
+
crew: boolean;
|
|
128
|
+
repeatable: boolean;
|
|
129
|
+
}
|
|
130
|
+
export declare class GiantHunter extends Quest {
|
|
131
|
+
name: string;
|
|
132
|
+
id: string;
|
|
133
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.MYTHIC>;
|
|
134
|
+
description: string;
|
|
135
|
+
berry: number;
|
|
136
|
+
xp: number;
|
|
137
|
+
chest: {
|
|
138
|
+
chest: "chest_2";
|
|
139
|
+
size: number;
|
|
140
|
+
}[];
|
|
141
|
+
secret: boolean;
|
|
142
|
+
asset: null;
|
|
143
|
+
title: null;
|
|
144
|
+
badge: null;
|
|
145
|
+
isFactionBadge: boolean;
|
|
146
|
+
daily: boolean;
|
|
147
|
+
crew: boolean;
|
|
148
|
+
repeatable: boolean;
|
|
149
|
+
}
|
|
150
|
+
export declare class Sabotage extends Quest {
|
|
151
|
+
name: string;
|
|
152
|
+
id: string;
|
|
153
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.EPIC>;
|
|
154
|
+
description: string;
|
|
155
|
+
berry: number;
|
|
156
|
+
xp: number;
|
|
157
|
+
secret: boolean;
|
|
158
|
+
asset: null;
|
|
159
|
+
title: null;
|
|
160
|
+
badge: null;
|
|
161
|
+
isFactionBadge: boolean;
|
|
162
|
+
daily: boolean;
|
|
163
|
+
crew: boolean;
|
|
164
|
+
repeatable: boolean;
|
|
165
|
+
}
|
|
166
|
+
export declare class VictoryByKO extends Quest {
|
|
167
|
+
name: string;
|
|
168
|
+
id: string;
|
|
169
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.COMMON>;
|
|
170
|
+
description: string;
|
|
171
|
+
berry: number;
|
|
172
|
+
xp: number;
|
|
173
|
+
secret: boolean;
|
|
174
|
+
asset: null;
|
|
175
|
+
title: null;
|
|
176
|
+
badge: null;
|
|
177
|
+
isFactionBadge: boolean;
|
|
178
|
+
daily: boolean;
|
|
179
|
+
crew: boolean;
|
|
180
|
+
repeatable: boolean;
|
|
181
|
+
}
|
|
182
|
+
export declare class Sniper extends Quest {
|
|
183
|
+
name: string;
|
|
184
|
+
id: string;
|
|
185
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.RARE>;
|
|
186
|
+
description: string;
|
|
187
|
+
berry: number;
|
|
188
|
+
xp: number;
|
|
189
|
+
secret: boolean;
|
|
190
|
+
asset: null;
|
|
191
|
+
title: null;
|
|
192
|
+
badge: null;
|
|
193
|
+
isFactionBadge: boolean;
|
|
194
|
+
daily: boolean;
|
|
195
|
+
crew: boolean;
|
|
196
|
+
repeatable: boolean;
|
|
197
|
+
}
|
|
198
|
+
export declare class Massacre extends Quest {
|
|
199
|
+
name: string;
|
|
200
|
+
id: string;
|
|
201
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.EPIC>;
|
|
202
|
+
description: string;
|
|
203
|
+
berry: number;
|
|
204
|
+
xp: number;
|
|
205
|
+
secret: boolean;
|
|
206
|
+
asset: null;
|
|
207
|
+
title: null;
|
|
208
|
+
badge: null;
|
|
209
|
+
isFactionBadge: boolean;
|
|
210
|
+
daily: boolean;
|
|
211
|
+
crew: boolean;
|
|
212
|
+
repeatable: boolean;
|
|
213
|
+
}
|
|
214
|
+
export declare class Annihilation extends Quest {
|
|
215
|
+
name: string;
|
|
216
|
+
id: string;
|
|
217
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.MYTHIC>;
|
|
218
|
+
description: string;
|
|
219
|
+
berry: number;
|
|
220
|
+
xp: number;
|
|
221
|
+
chest: {
|
|
222
|
+
chest: "chest_1";
|
|
223
|
+
size: number;
|
|
224
|
+
}[];
|
|
225
|
+
secret: boolean;
|
|
226
|
+
asset: null;
|
|
227
|
+
title: null;
|
|
228
|
+
badge: null;
|
|
229
|
+
isFactionBadge: boolean;
|
|
230
|
+
daily: boolean;
|
|
231
|
+
crew: boolean;
|
|
232
|
+
repeatable: boolean;
|
|
233
|
+
}
|
|
234
|
+
export declare class TrollSupreme extends Quest {
|
|
235
|
+
name: string;
|
|
236
|
+
id: string;
|
|
237
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.MYTHIC>;
|
|
238
|
+
description: string;
|
|
239
|
+
berry: number;
|
|
240
|
+
xp: number;
|
|
241
|
+
chest: {
|
|
242
|
+
chest: "chest_3";
|
|
243
|
+
size: number;
|
|
244
|
+
}[];
|
|
245
|
+
secret: boolean;
|
|
246
|
+
asset: null;
|
|
247
|
+
title: null;
|
|
248
|
+
badge: null;
|
|
249
|
+
isFactionBadge: boolean;
|
|
250
|
+
daily: boolean;
|
|
251
|
+
crew: boolean;
|
|
252
|
+
repeatable: boolean;
|
|
253
|
+
}
|
|
254
|
+
export declare class Champion extends Quest {
|
|
255
|
+
name: string;
|
|
256
|
+
id: string;
|
|
257
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.RARE>;
|
|
258
|
+
description: string;
|
|
259
|
+
berry: number;
|
|
260
|
+
xp: number;
|
|
261
|
+
chest: {
|
|
262
|
+
chest: "chest_2";
|
|
263
|
+
size: number;
|
|
264
|
+
}[];
|
|
265
|
+
secret: boolean;
|
|
266
|
+
asset: null;
|
|
267
|
+
title: null;
|
|
268
|
+
badge: null;
|
|
269
|
+
isFactionBadge: boolean;
|
|
270
|
+
daily: boolean;
|
|
271
|
+
crew: boolean;
|
|
272
|
+
repeatable: boolean;
|
|
273
|
+
}
|
|
274
|
+
export declare class Master extends Quest {
|
|
275
|
+
name: string;
|
|
276
|
+
id: string;
|
|
277
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.RARE>;
|
|
278
|
+
description: string;
|
|
279
|
+
berry: number;
|
|
280
|
+
xp: number;
|
|
281
|
+
chest: {
|
|
282
|
+
chest: "chest_3";
|
|
283
|
+
size: number;
|
|
284
|
+
}[];
|
|
285
|
+
secret: boolean;
|
|
286
|
+
asset: null;
|
|
287
|
+
title: null;
|
|
288
|
+
badge: null;
|
|
289
|
+
isFactionBadge: boolean;
|
|
290
|
+
daily: boolean;
|
|
291
|
+
crew: boolean;
|
|
292
|
+
repeatable: boolean;
|
|
293
|
+
}
|
|
294
|
+
export declare class Unstoppable extends Quest {
|
|
295
|
+
name: string;
|
|
296
|
+
id: string;
|
|
297
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.EPIC>;
|
|
298
|
+
description: string;
|
|
299
|
+
berry: number;
|
|
300
|
+
xp: number;
|
|
41
301
|
chest: ({
|
|
42
302
|
chest: "chest_1";
|
|
43
303
|
size: number;
|
|
@@ -54,4 +314,56 @@ export declare class Unstoppable extends Quest {
|
|
|
54
314
|
crew: boolean;
|
|
55
315
|
repeatable: boolean;
|
|
56
316
|
}
|
|
317
|
+
export declare class ShootingStar extends Quest {
|
|
318
|
+
name: string;
|
|
319
|
+
id: string;
|
|
320
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.LEGENDARY>;
|
|
321
|
+
description: string;
|
|
322
|
+
berry: number;
|
|
323
|
+
xp: number;
|
|
324
|
+
secret: boolean;
|
|
325
|
+
asset: null;
|
|
326
|
+
title: null;
|
|
327
|
+
badge: null;
|
|
328
|
+
isFactionBadge: boolean;
|
|
329
|
+
daily: boolean;
|
|
330
|
+
crew: boolean;
|
|
331
|
+
repeatable: boolean;
|
|
332
|
+
}
|
|
333
|
+
export declare class EZ extends Quest {
|
|
334
|
+
name: string;
|
|
335
|
+
id: string;
|
|
336
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.EPIC>;
|
|
337
|
+
description: string;
|
|
338
|
+
berry: number;
|
|
339
|
+
xp: number;
|
|
340
|
+
chest: {
|
|
341
|
+
chest: "chest_3";
|
|
342
|
+
size: number;
|
|
343
|
+
}[];
|
|
344
|
+
secret: boolean;
|
|
345
|
+
asset: null;
|
|
346
|
+
title: null;
|
|
347
|
+
badge: null;
|
|
348
|
+
isFactionBadge: boolean;
|
|
349
|
+
daily: boolean;
|
|
350
|
+
crew: boolean;
|
|
351
|
+
repeatable: boolean;
|
|
352
|
+
}
|
|
353
|
+
export declare class Participation extends Quest {
|
|
354
|
+
name: string;
|
|
355
|
+
id: string;
|
|
356
|
+
rank: import("@opfr/utils-type").Rank<import("@opfr/utils-type").RankId.COMMON>;
|
|
357
|
+
description: string;
|
|
358
|
+
berry: number;
|
|
359
|
+
xp: number;
|
|
360
|
+
secret: boolean;
|
|
361
|
+
asset: null;
|
|
362
|
+
title: null;
|
|
363
|
+
badge: null;
|
|
364
|
+
isFactionBadge: boolean;
|
|
365
|
+
daily: boolean;
|
|
366
|
+
crew: boolean;
|
|
367
|
+
repeatable: boolean;
|
|
368
|
+
}
|
|
57
369
|
//# sourceMappingURL=tournament.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tournament.d.ts","sourceRoot":"","sources":["../../../../src/quests/quests/common/tournament.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,qBAAa,SAAU,SAAQ,KAAK;IAClC,IAAI,SAAiB;IACrB,EAAE,SAAe;IACjB,IAAI,
|
|
1
|
+
{"version":3,"file":"tournament.d.ts","sourceRoot":"","sources":["../../../../src/quests/quests/common/tournament.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,6 +6,6 @@ import * as UserMetaQuests from './on-user-meta-update';
|
|
|
6
6
|
import * as UserOrnamentsQuests from './on-user-ornaments-update';
|
|
7
7
|
import * as UserQuestMetaQuests from './on-user-quest-meta-update';
|
|
8
8
|
import * as UserQuestQuests from './on-user-quest-update';
|
|
9
|
-
export declare const ALL_QUESTS: readonly (typeof UserDailyQuests.DailySendMessage | typeof UserDailyQuests.DailyReadEdito | typeof UserDailyQuests.DailyAnswer | typeof UserDailyQuests.DailyCheckProfile | typeof UserDailyQuests.Almanax | typeof UserRepetableQuests.Insistent | typeof UserRepetableQuests.Resurrection | typeof UserRepetableQuests.Unstoppable | typeof UserMetaQuests.Have500kBerry | typeof UserMetaQuests.Have5mBerry | typeof UserMetaQuests.Have50mBerry | typeof UserMetaQuests.Have500mBerry | typeof UserMetaQuests.Have5mdBerry | typeof UserMetaQuests.Have25Strength | typeof UserMetaQuests.Have50Strength | typeof UserMetaQuests.Have100Strength | typeof UserMetaQuests.Have250Strength | typeof UserMetaQuests.Have500Strength | typeof UserMetaQuests.Have25Agility | typeof UserMetaQuests.Have50Agility | typeof UserMetaQuests.Have100Agility | typeof UserMetaQuests.Have250Agility | typeof UserMetaQuests.Have500Agility | typeof UserMetaQuests.Have25Intelligence | typeof UserMetaQuests.Have50Intelligence | typeof UserMetaQuests.Have100Intelligence | typeof UserMetaQuests.Have250Intelligence | typeof UserMetaQuests.Have500Intelligence | typeof UserMetaQuests.Have25Chance | typeof UserMetaQuests.Have50Chance | typeof UserMetaQuests.Have100Chance | typeof UserMetaQuests.Have250Chance | typeof UserMetaQuests.Have500Chance | typeof UserMetaQuests.Have25Vitality | typeof UserMetaQuests.Have50Vitality | typeof UserMetaQuests.Have100Vitality | typeof UserMetaQuests.Have250Vitality | typeof UserMetaQuests.Have500Vitality | typeof UserMetaQuests.Have25Wisdom | typeof UserMetaQuests.Have50Wisdom | typeof UserMetaQuests.Have100Wisdom | typeof UserMetaQuests.Have250Wisdom | typeof UserMetaQuests.Have500Wisdom | typeof UserMetaQuests.BeLevel10 | typeof UserMetaQuests.BeLevel20 | typeof UserMetaQuests.BeLevel30 | typeof UserMetaQuests.BeLevel40 | typeof UserMetaQuests.BeLevel50 | typeof UserMetaQuests.BeLevel60 | typeof UserMetaQuests.BeLevel70 | typeof UserMetaQuests.BeLevel80 | typeof UserMetaQuests.BeLevel90 | typeof UserMetaQuests.BeLevel120 | typeof UserMetaQuests.DailyVocal | typeof UserOrnamentsQuests.Have1Background | typeof UserOrnamentsQuests.Have25Background | typeof UserOrnamentsQuests.Have50Background | typeof UserOrnamentsQuests.Have10Title | typeof UserOrnamentsQuests.Have50Title | typeof UserOrnamentsQuests.Have100Title | typeof UserInventoryQuests.Have1Recipe | typeof UserInventoryQuests.Have5Recipe | typeof UserInventoryQuests.Have10Recipe | typeof UserInventoryQuests.Have25Recipe | typeof UserInventoryQuests.Have100Recipe | typeof UserQuestMetaQuests.BetMinValue | typeof UserQuestMetaQuests.LoseEverything | typeof UserQuestMetaQuests.Bet10M | typeof UserQuestMetaQuests.WinOn10MBet | typeof UserQuestMetaQuests.TotalBet10M | typeof UserQuestMetaQuests.TotalBet1Md | typeof UserQuestMetaQuests.Lose10M | typeof UserQuestMetaQuests.Birthday | typeof UserQuestMetaQuests.BotPing | typeof UserQuestMetaQuests.Drink100Today | typeof UserQuestMetaQuests.Drink200Quest | typeof UserQuestMetaQuests.Drink500Quest | typeof UserQuestMetaQuests.Drink1000Quest | typeof UserQuestMetaQuests.Drink2000Quest | typeof UserQuestMetaQuests.Drink5000Quest | typeof UserQuestMetaQuests.ChestOpen50Quest | typeof UserQuestMetaQuests.ChestOpen150Quest | typeof UserQuestMetaQuests.ChestOpen500Quest | typeof UserQuestMetaQuests.ChestOpen1000Quest | typeof UserQuestMetaQuests.ChestOpen2000Quest | typeof UserQuestMetaQuests.Craft20Times | typeof UserQuestMetaQuests.Craft50Times | typeof UserQuestMetaQuests.Craft200Times | typeof UserQuestMetaQuests.Craft500Times | typeof UserQuestMetaQuests.Craft1000Times | typeof UserQuestMetaQuests.Craft10CookedMeals | typeof UserQuestMetaQuests.Craft50CookedMeals | typeof UserQuestMetaQuests.Craft100CookedMeals | typeof UserQuestMetaQuests.Craft250CookedMeals | typeof UserQuestMetaQuests.Craft500CookedMeals | typeof UserQuestMetaQuests.Craft5Scrolls | typeof UserQuestMetaQuests.Craft10Scrolls | typeof UserQuestMetaQuests.Craft20Scrolls | typeof UserQuestMetaQuests.Craft50Scrolls | typeof UserQuestMetaQuests.Craft100Scrolls | typeof UserQuestMetaQuests.Crew10Percent | typeof UserQuestMetaQuests.Crew90Percent | typeof UserQuestMetaQuests.Draw100Quest | typeof UserQuestMetaQuests.Draw300Quest | typeof UserQuestMetaQuests.Draw1000Quest | typeof UserQuestMetaQuests.Draw2000Quest | typeof UserQuestMetaQuests.Draw5000Quest | typeof UserQuestMetaQuests.Edito | typeof UserQuestMetaQuests.Everyone | typeof UserQuestMetaQuests.DoubleSix | typeof UserQuestMetaQuests.DrawDoubleSix | typeof UserQuestMetaQuests.SevenQuitteOuDouble | typeof UserQuestMetaQuests.WinAll5GamesInRow | typeof UserQuestMetaQuests.LoseAll5GamesInRow | typeof UserQuestMetaQuests.TenBlackJack | typeof UserQuestMetaQuests.Paper100 | typeof UserQuestMetaQuests.Scissor100 | typeof UserQuestMetaQuests.Rock100 | typeof UserQuestMetaQuests.GuessInOne | typeof UserQuestMetaQuests.Bet666 | typeof UserQuestMetaQuests.WinLose10 | typeof UserQuestMetaQuests.Finish10Raids | typeof UserQuestMetaQuests.Finish25Raids | typeof UserQuestMetaQuests.Finish50Raids | typeof UserQuestMetaQuests.Finish100Raids | typeof UserQuestMetaQuests.Finish200Raids | typeof UserQuestMetaQuests.RandomMessage20Quest | typeof UserQuestMetaQuests.RandomMessage50Quest | typeof UserQuestMetaQuests.RandomMessage100Quest | typeof UserQuestMetaQuests.RandomMessage200Quest | typeof UserQuestMetaQuests.RandomMessage500Quest | typeof UserQuestMetaQuests.Report | typeof UserQuestMetaQuests.send100Messages | typeof UserQuestMetaQuests.send1000Messages | typeof UserQuestMetaQuests.send25000Messages | typeof UserQuestMetaQuests.send100000Messages | typeof UserQuestMetaQuests.send200000Messages | typeof UserQuestMetaQuests.SpendShop5M | typeof UserQuestMetaQuests.SpendShop50M | typeof UserQuestMetaQuests.SpendShop500M | typeof UserQuestMetaQuests.SpendShop5Ml | typeof UserQuestMetaQuests.SpendShop50Ml | typeof UserQuestMetaQuests.Voice10Hours | typeof UserQuestMetaQuests.Voice25Hours | typeof UserQuestMetaQuests.Voice250Hours | typeof UserQuestMetaQuests.Voice2500Hours | typeof UserQuestMetaQuests.Voice5000Hours | typeof UserQuestMetaQuests.Work100Quest | typeof UserQuestMetaQuests.Work300Quest | typeof UserQuestMetaQuests.Work1000Quest | typeof UserQuestMetaQuests.Work2000Quest | typeof UserQuestMetaQuests.Work5000Quest | typeof UserQuestMetaQuests.Write10Chats | typeof UserQuestMetaQuests.Write20Chats | typeof UserQuestMetaQuests.Write50Chats | typeof UserQuestMetaQuests.Write100Chats | typeof UserQuestMetaQuests.Write200Chats | typeof UserQuestMetaQuests.Drink50Alcohols | typeof UserQuestMetaQuests.Drink250Alcohols | typeof UserQuestMetaQuests.Drink500Alcohols | typeof UserQuestMetaQuests.Drink1000Alcohols | typeof UserQuestMetaQuests.Drink2000Alcohols | typeof UserQuestMetaQuests.Drink10Rhum | typeof UserQuestMetaQuests.Drink100Rhum | typeof UserQuestMetaQuests.Drink250Rhum | typeof UserQuestMetaQuests.Drink500Rhum | typeof UserQuestMetaQuests.Drink1000Rhum | typeof UserQuestMetaQuests.Drink10Beer | typeof UserQuestMetaQuests.Drink100Beer | typeof UserQuestMetaQuests.Drink250Beer | typeof UserQuestMetaQuests.Drink500Beer | typeof UserQuestMetaQuests.Drink1000Beer | typeof UserQuestMetaQuests.Drink10Wine | typeof UserQuestMetaQuests.Drink100Wine | typeof UserQuestMetaQuests.Drink250Wine | typeof UserQuestMetaQuests.Drink500Wine | typeof UserQuestMetaQuests.Drink1000Wine | typeof UserQuestQuests.DailyAll | typeof CrewQuests.CrewBreakShip | typeof CrewQuests.CrewBeLevel10 | typeof CrewQuests.CrewBeLevel25 | typeof CrewQuests.CrewBeLevel50 | typeof CrewQuests.CrewBeLevel75 | typeof CrewQuests.CrewBeLevel100 | typeof CrewQuests.CrewHave100MBerry | typeof CrewQuests.CrewHave500MBerry | typeof CrewQuests.CrewHave1MdBerry | typeof CrewQuests.CrewHave5MdBerry | typeof CrewQuests.CrewHave50MdBerry | typeof CrewQuests.CrewSize5 | typeof CrewQuests.CrewSize7 | typeof CrewQuests.CrewSize10 | typeof CrewQuests.CrewSize12 | typeof CrewQuests.CrewSize15 | typeof CrewQuests.CrewBring50kXp | typeof CrewQuests.CrewBring500kXp | typeof CrewQuests.CrewBring1mXp | typeof CrewQuests.CrewBring5mXp | typeof CrewQuests.CrewBring50mXp | typeof CrewQuestQuests.CrewCarpenter1Week | typeof CrewQuestQuests.CrewCarpenter1Month | typeof CrewQuestQuests.CrewCarpenter3Months | typeof CrewQuestQuests.CrewCarpenter6Months | typeof CrewQuestQuests.CrewCarpenter1Year | typeof CrewQuestQuests.CrewAllMembersDaily | typeof CrewQuestQuests.CrewVocal5 | typeof CrewQuestQuests.CrewVocal7 | typeof CrewQuestQuests.CrewVocal10 | typeof CrewQuestQuests.CrewVocal12 | typeof CrewQuestQuests.CrewVocal15)[];
|
|
9
|
+
export declare const ALL_QUESTS: readonly (typeof UserDailyQuests.DailySendMessage | typeof UserDailyQuests.DailyReadEdito | typeof UserDailyQuests.DailyAnswer | typeof UserDailyQuests.DailyCheckProfile | typeof UserDailyQuests.Almanax | typeof UserRepetableQuests.Insistent | typeof UserRepetableQuests.Resurrection | typeof UserRepetableQuests.Rebirth | typeof UserRepetableQuests.Phoenix | typeof UserRepetableQuests.Immortal | typeof UserRepetableQuests.Cursed_Branch | typeof UserRepetableQuests.Top64 | typeof UserRepetableQuests.ZeroScored | typeof UserRepetableQuests.GiantHunter | typeof UserRepetableQuests.Sabotage | typeof UserRepetableQuests.VictoryByKO | typeof UserRepetableQuests.Sniper | typeof UserRepetableQuests.Massacre | typeof UserRepetableQuests.Annihilation | typeof UserRepetableQuests.TrollSupreme | typeof UserRepetableQuests.Champion | typeof UserRepetableQuests.Master | typeof UserRepetableQuests.Unstoppable | typeof UserRepetableQuests.ShootingStar | typeof UserRepetableQuests.EZ | typeof UserRepetableQuests.Participation | typeof UserMetaQuests.Have500kBerry | typeof UserMetaQuests.Have5mBerry | typeof UserMetaQuests.Have50mBerry | typeof UserMetaQuests.Have500mBerry | typeof UserMetaQuests.Have5mdBerry | typeof UserMetaQuests.Have25Strength | typeof UserMetaQuests.Have50Strength | typeof UserMetaQuests.Have100Strength | typeof UserMetaQuests.Have250Strength | typeof UserMetaQuests.Have500Strength | typeof UserMetaQuests.Have25Agility | typeof UserMetaQuests.Have50Agility | typeof UserMetaQuests.Have100Agility | typeof UserMetaQuests.Have250Agility | typeof UserMetaQuests.Have500Agility | typeof UserMetaQuests.Have25Intelligence | typeof UserMetaQuests.Have50Intelligence | typeof UserMetaQuests.Have100Intelligence | typeof UserMetaQuests.Have250Intelligence | typeof UserMetaQuests.Have500Intelligence | typeof UserMetaQuests.Have25Chance | typeof UserMetaQuests.Have50Chance | typeof UserMetaQuests.Have100Chance | typeof UserMetaQuests.Have250Chance | typeof UserMetaQuests.Have500Chance | typeof UserMetaQuests.Have25Vitality | typeof UserMetaQuests.Have50Vitality | typeof UserMetaQuests.Have100Vitality | typeof UserMetaQuests.Have250Vitality | typeof UserMetaQuests.Have500Vitality | typeof UserMetaQuests.Have25Wisdom | typeof UserMetaQuests.Have50Wisdom | typeof UserMetaQuests.Have100Wisdom | typeof UserMetaQuests.Have250Wisdom | typeof UserMetaQuests.Have500Wisdom | typeof UserMetaQuests.BeLevel10 | typeof UserMetaQuests.BeLevel20 | typeof UserMetaQuests.BeLevel30 | typeof UserMetaQuests.BeLevel40 | typeof UserMetaQuests.BeLevel50 | typeof UserMetaQuests.BeLevel60 | typeof UserMetaQuests.BeLevel70 | typeof UserMetaQuests.BeLevel80 | typeof UserMetaQuests.BeLevel90 | typeof UserMetaQuests.BeLevel120 | typeof UserMetaQuests.DailyVocal | typeof UserOrnamentsQuests.Have1Background | typeof UserOrnamentsQuests.Have25Background | typeof UserOrnamentsQuests.Have50Background | typeof UserOrnamentsQuests.Have10Title | typeof UserOrnamentsQuests.Have50Title | typeof UserOrnamentsQuests.Have100Title | typeof UserInventoryQuests.Have1Recipe | typeof UserInventoryQuests.Have5Recipe | typeof UserInventoryQuests.Have10Recipe | typeof UserInventoryQuests.Have25Recipe | typeof UserInventoryQuests.Have100Recipe | typeof UserQuestMetaQuests.BetMinValue | typeof UserQuestMetaQuests.LoseEverything | typeof UserQuestMetaQuests.Bet10M | typeof UserQuestMetaQuests.WinOn10MBet | typeof UserQuestMetaQuests.TotalBet10M | typeof UserQuestMetaQuests.TotalBet1Md | typeof UserQuestMetaQuests.Lose10M | typeof UserQuestMetaQuests.Birthday | typeof UserQuestMetaQuests.BotPing | typeof UserQuestMetaQuests.Drink100Today | typeof UserQuestMetaQuests.Drink200Quest | typeof UserQuestMetaQuests.Drink500Quest | typeof UserQuestMetaQuests.Drink1000Quest | typeof UserQuestMetaQuests.Drink2000Quest | typeof UserQuestMetaQuests.Drink5000Quest | typeof UserQuestMetaQuests.ChestOpen50Quest | typeof UserQuestMetaQuests.ChestOpen150Quest | typeof UserQuestMetaQuests.ChestOpen500Quest | typeof UserQuestMetaQuests.ChestOpen1000Quest | typeof UserQuestMetaQuests.ChestOpen2000Quest | typeof UserQuestMetaQuests.Craft20Times | typeof UserQuestMetaQuests.Craft50Times | typeof UserQuestMetaQuests.Craft200Times | typeof UserQuestMetaQuests.Craft500Times | typeof UserQuestMetaQuests.Craft1000Times | typeof UserQuestMetaQuests.Craft10CookedMeals | typeof UserQuestMetaQuests.Craft50CookedMeals | typeof UserQuestMetaQuests.Craft100CookedMeals | typeof UserQuestMetaQuests.Craft250CookedMeals | typeof UserQuestMetaQuests.Craft500CookedMeals | typeof UserQuestMetaQuests.Craft5Scrolls | typeof UserQuestMetaQuests.Craft10Scrolls | typeof UserQuestMetaQuests.Craft20Scrolls | typeof UserQuestMetaQuests.Craft50Scrolls | typeof UserQuestMetaQuests.Craft100Scrolls | typeof UserQuestMetaQuests.Crew10Percent | typeof UserQuestMetaQuests.Crew90Percent | typeof UserQuestMetaQuests.Draw100Quest | typeof UserQuestMetaQuests.Draw300Quest | typeof UserQuestMetaQuests.Draw1000Quest | typeof UserQuestMetaQuests.Draw2000Quest | typeof UserQuestMetaQuests.Draw5000Quest | typeof UserQuestMetaQuests.Edito | typeof UserQuestMetaQuests.Everyone | typeof UserQuestMetaQuests.DoubleSix | typeof UserQuestMetaQuests.DrawDoubleSix | typeof UserQuestMetaQuests.SevenQuitteOuDouble | typeof UserQuestMetaQuests.WinAll5GamesInRow | typeof UserQuestMetaQuests.LoseAll5GamesInRow | typeof UserQuestMetaQuests.TenBlackJack | typeof UserQuestMetaQuests.Paper100 | typeof UserQuestMetaQuests.Scissor100 | typeof UserQuestMetaQuests.Rock100 | typeof UserQuestMetaQuests.GuessInOne | typeof UserQuestMetaQuests.Bet666 | typeof UserQuestMetaQuests.WinLose10 | typeof UserQuestMetaQuests.Finish10Raids | typeof UserQuestMetaQuests.Finish25Raids | typeof UserQuestMetaQuests.Finish50Raids | typeof UserQuestMetaQuests.Finish100Raids | typeof UserQuestMetaQuests.Finish200Raids | typeof UserQuestMetaQuests.RandomMessage20Quest | typeof UserQuestMetaQuests.RandomMessage50Quest | typeof UserQuestMetaQuests.RandomMessage100Quest | typeof UserQuestMetaQuests.RandomMessage200Quest | typeof UserQuestMetaQuests.RandomMessage500Quest | typeof UserQuestMetaQuests.Report | typeof UserQuestMetaQuests.send100Messages | typeof UserQuestMetaQuests.send1000Messages | typeof UserQuestMetaQuests.send25000Messages | typeof UserQuestMetaQuests.send100000Messages | typeof UserQuestMetaQuests.send200000Messages | typeof UserQuestMetaQuests.SpendShop5M | typeof UserQuestMetaQuests.SpendShop50M | typeof UserQuestMetaQuests.SpendShop500M | typeof UserQuestMetaQuests.SpendShop5Ml | typeof UserQuestMetaQuests.SpendShop50Ml | typeof UserQuestMetaQuests.Voice10Hours | typeof UserQuestMetaQuests.Voice25Hours | typeof UserQuestMetaQuests.Voice250Hours | typeof UserQuestMetaQuests.Voice2500Hours | typeof UserQuestMetaQuests.Voice5000Hours | typeof UserQuestMetaQuests.Work100Quest | typeof UserQuestMetaQuests.Work300Quest | typeof UserQuestMetaQuests.Work1000Quest | typeof UserQuestMetaQuests.Work2000Quest | typeof UserQuestMetaQuests.Work5000Quest | typeof UserQuestMetaQuests.Write10Chats | typeof UserQuestMetaQuests.Write20Chats | typeof UserQuestMetaQuests.Write50Chats | typeof UserQuestMetaQuests.Write100Chats | typeof UserQuestMetaQuests.Write200Chats | typeof UserQuestMetaQuests.Drink50Alcohols | typeof UserQuestMetaQuests.Drink250Alcohols | typeof UserQuestMetaQuests.Drink500Alcohols | typeof UserQuestMetaQuests.Drink1000Alcohols | typeof UserQuestMetaQuests.Drink2000Alcohols | typeof UserQuestMetaQuests.Drink10Rhum | typeof UserQuestMetaQuests.Drink100Rhum | typeof UserQuestMetaQuests.Drink250Rhum | typeof UserQuestMetaQuests.Drink500Rhum | typeof UserQuestMetaQuests.Drink1000Rhum | typeof UserQuestMetaQuests.Drink10Beer | typeof UserQuestMetaQuests.Drink100Beer | typeof UserQuestMetaQuests.Drink250Beer | typeof UserQuestMetaQuests.Drink500Beer | typeof UserQuestMetaQuests.Drink1000Beer | typeof UserQuestMetaQuests.Drink10Wine | typeof UserQuestMetaQuests.Drink100Wine | typeof UserQuestMetaQuests.Drink250Wine | typeof UserQuestMetaQuests.Drink500Wine | typeof UserQuestMetaQuests.Drink1000Wine | typeof UserQuestQuests.DailyAll | typeof CrewQuests.CrewBreakShip | typeof CrewQuests.CrewBeLevel10 | typeof CrewQuests.CrewBeLevel25 | typeof CrewQuests.CrewBeLevel50 | typeof CrewQuests.CrewBeLevel75 | typeof CrewQuests.CrewBeLevel100 | typeof CrewQuests.CrewHave100MBerry | typeof CrewQuests.CrewHave500MBerry | typeof CrewQuests.CrewHave1MdBerry | typeof CrewQuests.CrewHave5MdBerry | typeof CrewQuests.CrewHave50MdBerry | typeof CrewQuests.CrewSize5 | typeof CrewQuests.CrewSize7 | typeof CrewQuests.CrewSize10 | typeof CrewQuests.CrewSize12 | typeof CrewQuests.CrewSize15 | typeof CrewQuests.CrewBring50kXp | typeof CrewQuests.CrewBring500kXp | typeof CrewQuests.CrewBring1mXp | typeof CrewQuests.CrewBring5mXp | typeof CrewQuests.CrewBring50mXp | typeof CrewQuestQuests.CrewCarpenter1Week | typeof CrewQuestQuests.CrewCarpenter1Month | typeof CrewQuestQuests.CrewCarpenter3Months | typeof CrewQuestQuests.CrewCarpenter6Months | typeof CrewQuestQuests.CrewCarpenter1Year | typeof CrewQuestQuests.CrewAllMembersDaily | typeof CrewQuestQuests.CrewVocal5 | typeof CrewQuestQuests.CrewVocal7 | typeof CrewQuestQuests.CrewVocal10 | typeof CrewQuestQuests.CrewVocal12 | typeof CrewQuestQuests.CrewVocal15)[];
|
|
10
10
|
export { UserQuestMetaQuests, UserOrnamentsQuests, UserInventoryQuests, UserRepetableQuests, UserMetaQuests, UserQuestQuests, CrewQuests, CrewQuestQuests, UserDailyQuests, };
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/quests/quests/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAC1D,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,mBAAmB,MAAM,4BAA4B,CAAC;AAClE,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AACxD,OAAO,KAAK,mBAAmB,MAAM,4BAA4B,CAAC;AAClE,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAE1D,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/quests/quests/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAC1D,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,mBAAmB,MAAM,4BAA4B,CAAC;AAClE,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AACxD,OAAO,KAAK,mBAAmB,MAAM,4BAA4B,CAAC;AAClE,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAE1D,eAAO,MAAM,UAAU,slSAUb,CAAC;AAEX,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,UAAU,EACV,eAAe,EACf,eAAe,GAChB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/services/user-inventory/definition/schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAIlC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAEtD,QAAA,MAAM,mBAAmB;;;;;;;;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/services/user-inventory/definition/schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAIlC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAEtD,QAAA,MAAM,mBAAmB;;;;;;;;EAsBxB,CAAC;AASF,OAAO,EAAE,mBAAmB,EAAE,CAAC"}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
26
|
import type { Types } from 'mongoose';
|
|
27
|
-
import type
|
|
27
|
+
import { type DBEquipment, type Entity, type EntityId, type EquipmentId, type EquipmentSlot, type ItemId } from '@opfr/items';
|
|
28
28
|
import type { UserInventory } from '../types';
|
|
29
29
|
export declare const addInventoryItem: (id: Types.ObjectId, itemId: ItemId, quantity: number) => Promise<void>;
|
|
30
30
|
export declare const addInventoryItems: (id: Types.ObjectId, items: Partial<Record<ItemId, number>>) => Promise<void>;
|
|
@@ -33,6 +33,8 @@ export declare const removeEquipment: (id: Types.ObjectId, equipmentId: Equipmen
|
|
|
33
33
|
export declare const removeInventoryEntity: (id: Types.ObjectId, entityId: EntityId, quantity: number, seed: number) => Promise<void>;
|
|
34
34
|
export declare const removeAllItemInventory: (id: Types.ObjectId, itemId: ItemId) => Promise<void>;
|
|
35
35
|
export declare const addEquipments: (id: Types.ObjectId, list: UserInventory['equipmentList']) => Promise<void>;
|
|
36
|
+
export declare const saveEquipments: (id: Types.ObjectId) => Promise<void>;
|
|
37
|
+
export declare const changeEquipedEquipment: (id: Types.ObjectId, index: number) => Promise<void>;
|
|
36
38
|
export declare const equip: (id: Types.ObjectId, slot: EquipmentSlot, equipment: DBEquipment) => Promise<void>;
|
|
37
39
|
export declare const unequip: (id: Types.ObjectId, slot: EquipmentSlot) => Promise<void>;
|
|
38
40
|
export declare const craftItem: (id: Types.ObjectId, recipeItems: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updates.d.ts","sourceRoot":"","sources":["../../../../src/services/user-inventory/query/updates.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEtC,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"updates.d.ts","sourceRoot":"","sources":["../../../../src/services/user-inventory/query/updates.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEtC,OAAO,EACL,KAAK,WAAW,EAEhB,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,MAAM,EACZ,MAAM,aAAa,CAAC;AASrB,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE9C,eAAO,MAAM,gBAAgB,OACvB,MAAM,QAAQ,UACV,MAAM,YACJ,MAAM,kBAKjB,CAAC;AAEF,eAAO,MAAM,iBAAiB,OACxB,MAAM,QAAQ,SACX,QAAQ,OAAO,MAAM,EAAE,MAAM,CAAC,CAAC,kBAevC,CAAC;AAEF,eAAO,MAAM,mBAAmB,OAC1B,MAAM,QAAQ,UACV,MAAM,YACJ,MAAM,kBAcjB,CAAC;AAEF,eAAO,MAAM,eAAe,OACtB,MAAM,QAAQ,eACL,WAAW,iBACT,MAAM,kBAUtB,CAAC;AAEF,eAAO,MAAM,qBAAqB,OAC5B,MAAM,QAAQ,YACR,QAAQ,YACR,MAAM,QACV,MAAM,kBAWb,CAAC;AAEF,eAAO,MAAM,sBAAsB,OAC7B,MAAM,QAAQ,UACV,MAAM,kBAGf,CAAC;AAEF,eAAO,MAAM,aAAa,OACpB,MAAM,QAAQ,QACZ,aAAa,CAAC,eAAe,CAAC,kBAOrC,CAAC;AAEF,eAAO,MAAM,cAAc,OAAc,MAAM,QAAQ,kBAMtD,CAAC;AAEF,eAAO,MAAM,sBAAsB,OAC7B,MAAM,QAAQ,SACX,MAAM,kBAad,CAAC;AAEF,eAAO,MAAM,KAAK,OACZ,MAAM,QAAQ,QACZ,aAAa,aACR,WAAW,kBAUvB,CAAC;AAEF,eAAO,MAAM,OAAO,OAAc,MAAM,QAAQ,QAAQ,aAAa,kBASpE,CAAC;AAEF,eAAO,MAAM,SAAS,OAChB,MAAM,QAAQ,eACL;IACX,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd,EAAE,gBACW;IAAE,MAAM,EAAE,QAAQ,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,YACtC,MAAM,QACV,MAAM,kBAWb,CAAC;AAEF,eAAO,MAAM,eAAe,OACtB,MAAM,QAAQ,UACV,MAAM,mBACG;IAAE,QAAQ,EAAE,QAAQ,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,EAAE,QACrD,MAAM,QACN,MAAM,kBAWb,CAAC;AAEF,eAAO,MAAM,WAAW,OAClB,MAAM,QAAQ,UACV,MAAM,iBACC,MAAM,QACf,MAAM,kBAMb,CAAC;AAEF,eAAO,MAAM,YAAY,OAAc,MAAM,QAAQ,YAAY,MAAM,kBAEtE,CAAC;AAEF,eAAO,MAAM,SAAS,OAChB,MAAM,QAAQ,SACX,SAAS,GAAG,SAAS,GAAG,SAAS,QAClC,MAAM,kBAGb,CAAC;AAEF,eAAO,MAAM,UAAU,OACjB,MAAM,QAAQ,UACV;IAAE,KAAK,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,EAAE,kBAGrE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/services/user-inventory/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEhD,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAEtE,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,KAAK,CAAC,QAAQ,CAAC;IAErB,aAAa,EAAE,aAAa,CAAC;IAE7B,aAAa,EAAE;QACb,EAAE,EAAE,WAAW,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;KACd,EAAE,CAAC;IACJ,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAE9B,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,qBAAsB,SAAQ,QAAQ,EAAE,aAAa;CAAG"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/services/user-inventory/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEhD,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAEtE,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,KAAK,CAAC,QAAQ,CAAC;IAErB,aAAa,EAAE,aAAa,CAAC;IAE7B,aAAa,EAAE,aAAa,EAAE,CAAC;IAE/B,aAAa,EAAE;QACb,EAAE,EAAE,WAAW,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;KACd,EAAE,CAAC;IACJ,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAE9B,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,qBAAsB,SAAQ,QAAQ,EAAE,aAAa;CAAG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opfr/services",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.48.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OPFR services",
|
|
6
6
|
"author": "Matthieu VEIGA",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"node_modules",
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "d4da4981e7a7ce7bf9d68c05ae873679c722cacd"
|
|
40
40
|
}
|