@la-main-verte/shared-types 1.0.89 → 1.0.91
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/package.json +1 -1
- package/src/home.api.d.ts +8 -1
package/package.json
CHANGED
package/src/home.api.d.ts
CHANGED
|
@@ -177,8 +177,10 @@ export namespace HOME {
|
|
|
177
177
|
export interface MissionThemeI {
|
|
178
178
|
/** Accent color: badge, progress bar, reward text, icon tints. */
|
|
179
179
|
accentColor: string
|
|
180
|
-
/** Background color: card
|
|
180
|
+
/** Background color: card header and reward section surface. */
|
|
181
181
|
backgroundColor: string
|
|
182
|
+
/** Text color for content rendered on the backgroundColor surface. */
|
|
183
|
+
textColor: string
|
|
182
184
|
}
|
|
183
185
|
|
|
184
186
|
export interface MissionRewardI {
|
|
@@ -209,6 +211,11 @@ export namespace HOME {
|
|
|
209
211
|
isCompleted: boolean
|
|
210
212
|
/** Deep link / route opened when the step is tapped (every step has a CTA). */
|
|
211
213
|
ctaLink: string
|
|
214
|
+
/**
|
|
215
|
+
* When present, tapping this step activates the named onboarding flow on
|
|
216
|
+
* the destination screen. Null means no tutorial is attached to this step.
|
|
217
|
+
*/
|
|
218
|
+
onboardingFlowId?: string | null
|
|
212
219
|
}
|
|
213
220
|
|
|
214
221
|
export interface MissionCardSectionI {
|