sdk-sapi-promarketing 0.0.22 → 0.0.24
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.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2131,11 +2131,13 @@ interface PlayerNotifyMarkAsReadDataType {
|
|
|
2131
2131
|
id: number | string;
|
|
2132
2132
|
}
|
|
2133
2133
|
|
|
2134
|
-
interface ProviderType {
|
|
2134
|
+
interface ProviderType extends CommonMessageType {
|
|
2135
2135
|
/** Unique identifier for the provider. */
|
|
2136
2136
|
id: number;
|
|
2137
2137
|
/** Name of provider. */
|
|
2138
2138
|
name: string;
|
|
2139
|
+
/** Provider total games. */
|
|
2140
|
+
total_games: number;
|
|
2139
2141
|
}
|
|
2140
2142
|
|
|
2141
2143
|
interface BetTypeType {
|
|
@@ -3326,7 +3328,7 @@ declare class GameService extends RequestBase {
|
|
|
3326
3328
|
*
|
|
3327
3329
|
* @returns Promise with games.
|
|
3328
3330
|
*/
|
|
3329
|
-
getGamesLobbyLatest: () => Promise<GameLatestType>;
|
|
3331
|
+
getGamesLobbyLatest: (options?: {}) => Promise<GameLatestType>;
|
|
3330
3332
|
}
|
|
3331
3333
|
|
|
3332
3334
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2131,11 +2131,13 @@ interface PlayerNotifyMarkAsReadDataType {
|
|
|
2131
2131
|
id: number | string;
|
|
2132
2132
|
}
|
|
2133
2133
|
|
|
2134
|
-
interface ProviderType {
|
|
2134
|
+
interface ProviderType extends CommonMessageType {
|
|
2135
2135
|
/** Unique identifier for the provider. */
|
|
2136
2136
|
id: number;
|
|
2137
2137
|
/** Name of provider. */
|
|
2138
2138
|
name: string;
|
|
2139
|
+
/** Provider total games. */
|
|
2140
|
+
total_games: number;
|
|
2139
2141
|
}
|
|
2140
2142
|
|
|
2141
2143
|
interface BetTypeType {
|
|
@@ -3326,7 +3328,7 @@ declare class GameService extends RequestBase {
|
|
|
3326
3328
|
*
|
|
3327
3329
|
* @returns Promise with games.
|
|
3328
3330
|
*/
|
|
3329
|
-
getGamesLobbyLatest: () => Promise<GameLatestType>;
|
|
3331
|
+
getGamesLobbyLatest: (options?: {}) => Promise<GameLatestType>;
|
|
3330
3332
|
}
|
|
3331
3333
|
|
|
3332
3334
|
/**
|
package/dist/index.js
CHANGED
|
@@ -415,7 +415,7 @@ var GameService = class extends RequestBase {
|
|
|
415
415
|
*
|
|
416
416
|
* @returns Promise with games.
|
|
417
417
|
*/
|
|
418
|
-
getGamesLobbyLatest = async () => this.getBase("/latest");
|
|
418
|
+
getGamesLobbyLatest = async (options = {}) => this.getBase("/latest", options, true);
|
|
419
419
|
};
|
|
420
420
|
|
|
421
421
|
// services/skin.service.ts
|