@talkplay/shared-types 1.0.1 → 1.0.2
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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -479,7 +479,7 @@ type PlanEntity = BaseEntity & {
|
|
|
479
479
|
name: string;
|
|
480
480
|
description: string;
|
|
481
481
|
modules: SystemModuleEntity[];
|
|
482
|
-
|
|
482
|
+
isMain: boolean;
|
|
483
483
|
};
|
|
484
484
|
|
|
485
485
|
type LoginPayload = {
|
|
@@ -638,7 +638,7 @@ type UpsertPlanPayload = {
|
|
|
638
638
|
name: string;
|
|
639
639
|
description: string;
|
|
640
640
|
modulesIds: string[];
|
|
641
|
-
|
|
641
|
+
isMain: boolean;
|
|
642
642
|
};
|
|
643
643
|
type UpsertPlanResponse = PlanEntity;
|
|
644
644
|
|
package/dist/index.d.ts
CHANGED
|
@@ -479,7 +479,7 @@ type PlanEntity = BaseEntity & {
|
|
|
479
479
|
name: string;
|
|
480
480
|
description: string;
|
|
481
481
|
modules: SystemModuleEntity[];
|
|
482
|
-
|
|
482
|
+
isMain: boolean;
|
|
483
483
|
};
|
|
484
484
|
|
|
485
485
|
type LoginPayload = {
|
|
@@ -638,7 +638,7 @@ type UpsertPlanPayload = {
|
|
|
638
638
|
name: string;
|
|
639
639
|
description: string;
|
|
640
640
|
modulesIds: string[];
|
|
641
|
-
|
|
641
|
+
isMain: boolean;
|
|
642
642
|
};
|
|
643
643
|
type UpsertPlanResponse = PlanEntity;
|
|
644
644
|
|