@stackedapp/types 1.14.2 → 1.14.4
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 +3 -2
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -759,6 +759,7 @@ interface StackedSnapshotProgress {
|
|
|
759
759
|
completionTrackers?: ICompletionTrackers;
|
|
760
760
|
completionConditions?: ICompletionCondition;
|
|
761
761
|
snapshot?: StackedSnapshot;
|
|
762
|
+
trackers?: StackedOfferTrackers;
|
|
762
763
|
}
|
|
763
764
|
/** offer fields that define this offer's properties */
|
|
764
765
|
interface StackedBaseOffer extends Pick<IOffer, OfferPickFields> {
|
|
@@ -802,8 +803,8 @@ type ConditionResult = {
|
|
|
802
803
|
};
|
|
803
804
|
type StackedOfferHelpers = {
|
|
804
805
|
getCompletionConditions?: () => Array<ConditionDetail>;
|
|
805
|
-
|
|
806
|
-
|
|
806
|
+
getLinkedProgress?: () => Array<TeamProgress>;
|
|
807
|
+
getSiblingProgress?: () => Array<TeamProgress>;
|
|
807
808
|
getProgressPercent?: () => number;
|
|
808
809
|
canClaim?: () => boolean;
|
|
809
810
|
};
|