@smartico/public-api 0.0.232 → 0.0.234
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/MiniGames/SAWPrizeUI.d.ts +1 -0
- package/dist/Raffle/GetRaffleDrawRunsHistoryRequest.d.ts +3 -0
- package/dist/Raffle/RafflePrize.d.ts +1 -1
- package/dist/Raffle/RafflePrizeWinner.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/MiniGames/SAWGetTemplatesResponse.ts +1 -1
- package/src/MiniGames/SAWPrizeUI.ts +1 -2
- package/src/Raffle/GetRaffleDrawRunsHistoryRequest.ts +4 -0
- package/src/Raffle/RafflePrize.ts +1 -1
- package/src/Raffle/RafflePrizeWinner.ts +1 -1
- package/src/WSAPI/WSAPITypes.ts +1 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ProtocolMessage } from "../Base/ProtocolMessage";
|
|
2
2
|
export interface GetRaffleDrawRunsHistoryRequest extends ProtocolMessage {
|
|
3
3
|
raffle_id: number;
|
|
4
|
+
/**
|
|
5
|
+
* If draw_id is not passed all draw runs that belong to raffle with passed raffle_id will be returned.
|
|
6
|
+
*/
|
|
4
7
|
draw_id: number;
|
|
5
8
|
}
|