Update data onboarding selector types
This commit is contained in:
parent
71e9073c0b
commit
8a1c684f55
|
@ -103,6 +103,8 @@ export type OnboardingSelectors = {
|
||||||
ids: string[]
|
ids: string[]
|
||||||
) => ReturnType< typeof getTaskListsByIds >;
|
) => ReturnType< typeof getTaskListsByIds >;
|
||||||
getTaskLists: () => ReturnType< typeof getTaskLists >;
|
getTaskLists: () => ReturnType< typeof getTaskLists >;
|
||||||
|
getTaskList: ( id: string ) => ReturnType< typeof getTaskList >;
|
||||||
|
getFreeExtensions: () => ReturnType< typeof getFreeExtensions >;
|
||||||
} & WPDataSelectors;
|
} & WPDataSelectors;
|
||||||
|
|
||||||
export type OnboardingState = {
|
export type OnboardingState = {
|
||||||
|
|
|
@ -20,6 +20,11 @@ export type TaskType = {
|
||||||
isActioned: boolean;
|
isActioned: boolean;
|
||||||
eventPrefix: string;
|
eventPrefix: string;
|
||||||
level: number;
|
level: number;
|
||||||
|
additionalData?: {
|
||||||
|
woocommerceTaxCountries?: string[];
|
||||||
|
taxJarActivated?: boolean;
|
||||||
|
avalaraActivated?: boolean;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type TaskListSection = {
|
export type TaskListSection = {
|
||||||
|
|
Loading…
Reference in New Issue