@stackedapp/types 1.14.4 → 1.14.6
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/stacked-types.d.ts +4 -2
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -795,8 +795,10 @@ type ConditionDetail = {
|
|
|
795
795
|
text: string;
|
|
796
796
|
};
|
|
797
797
|
type ConditionResult = {
|
|
798
|
+
/** same as isComplete */
|
|
798
799
|
isValid: boolean;
|
|
799
|
-
|
|
800
|
+
/** same as isValid */
|
|
801
|
+
isComplete: boolean;
|
|
800
802
|
percentCompleted: number;
|
|
801
803
|
conditionData?: Array<ConditionDetail>;
|
|
802
804
|
availableClaimsNow: number;
|
|
@@ -812,7 +814,7 @@ type TeamProgress = {
|
|
|
812
814
|
playerId: string;
|
|
813
815
|
username: string;
|
|
814
816
|
percentCompleted: number;
|
|
815
|
-
|
|
817
|
+
isComplete: boolean;
|
|
816
818
|
};
|
|
817
819
|
|
|
818
820
|
type StackedRewardKind = RewardKind;
|