@talkplay/shared-types 1.0.0 → 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 CHANGED
@@ -479,6 +479,7 @@ type PlanEntity = BaseEntity & {
479
479
  name: string;
480
480
  description: string;
481
481
  modules: SystemModuleEntity[];
482
+ isMain: boolean;
482
483
  };
483
484
 
484
485
  type LoginPayload = {
@@ -637,6 +638,7 @@ type UpsertPlanPayload = {
637
638
  name: string;
638
639
  description: string;
639
640
  modulesIds: string[];
641
+ isMain: boolean;
640
642
  };
641
643
  type UpsertPlanResponse = PlanEntity;
642
644
 
package/dist/index.d.ts CHANGED
@@ -479,6 +479,7 @@ type PlanEntity = BaseEntity & {
479
479
  name: string;
480
480
  description: string;
481
481
  modules: SystemModuleEntity[];
482
+ isMain: boolean;
482
483
  };
483
484
 
484
485
  type LoginPayload = {
@@ -637,6 +638,7 @@ type UpsertPlanPayload = {
637
638
  name: string;
638
639
  description: string;
639
640
  modulesIds: string[];
641
+ isMain: boolean;
640
642
  };
641
643
  type UpsertPlanResponse = PlanEntity;
642
644
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talkplay/shared-types",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -27,4 +27,4 @@
27
27
  "tsup": "^8.5.1",
28
28
  "typescript": "^5.9.3"
29
29
  }
30
- }
30
+ }