@smartico/public-api 0.0.340 → 0.0.341
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/CustomSections/AchCustomSection.d.ts +3 -1
- package/dist/CustomSections/UICustomSection.d.ts +1 -0
- package/dist/WSAPI/WSAPITypes.d.ts +2 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +3 -0
- package/dist/index.modern.mjs.map +1 -1
- package/docs/enums/LiquidEntityData.md +12 -0
- package/package.json +1 -1
- package/src/CustomSections/AchCustomSection.ts +2 -0
- package/src/CustomSections/UICustomSection.ts +2 -0
- package/src/WSAPI/WSAPITypes.ts +2 -0
package/dist/index.modern.mjs
CHANGED
|
@@ -3363,6 +3363,8 @@ var LiquidEntityData;
|
|
|
3363
3363
|
LiquidEntityData[LiquidEntityData["Leaderboard"] = 8] = "Leaderboard";
|
|
3364
3364
|
LiquidEntityData[LiquidEntityData["Badges"] = 9] = "Badges";
|
|
3365
3365
|
LiquidEntityData[LiquidEntityData["Tournament"] = 10] = "Tournament";
|
|
3366
|
+
LiquidEntityData[LiquidEntityData["Raffles"] = 11] = "Raffles";
|
|
3367
|
+
LiquidEntityData[LiquidEntityData["SingleRaffle"] = 12] = "SingleRaffle";
|
|
3366
3368
|
})(LiquidEntityData || (LiquidEntityData = {}));
|
|
3367
3369
|
|
|
3368
3370
|
const UICustomSectionTransform = response => {
|
|
@@ -3386,6 +3388,7 @@ const UICustomSectionTransform = response => {
|
|
|
3386
3388
|
}, r.section_type_id === AchCustomSectionType.LEVELS ? {
|
|
3387
3389
|
liquid_entity_data: r.liquid_entity_data,
|
|
3388
3390
|
ach_tournament_id: r.ach_tournament_id,
|
|
3391
|
+
raffle_id: r.raffle_id,
|
|
3389
3392
|
show_raw_data: r.show_raw_data,
|
|
3390
3393
|
liquid_template: r.liquid_template
|
|
3391
3394
|
} : {}, r.section_type_id === AchCustomSectionType.BADGES ? {
|