@talkplay/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/dist/index.d.mts CHANGED
@@ -812,7 +812,7 @@ type TkplayErrorEntity = {
812
812
  };
813
813
 
814
814
  type ProgramScriptEntity = BaseEntity & {
815
- name: string;
815
+ name: string | null;
816
816
  programId: string;
817
817
  program: ProgramEntity;
818
818
  programDayScheduleId: string;
@@ -1314,7 +1314,7 @@ type CreateProgramScriptPayload = {
1314
1314
  weekDay: WeekDayEnum;
1315
1315
  blocks: UpsertProgramScriptBlockPayload[];
1316
1316
  };
1317
- type UpdateProgramScriptPayload = Omit<CreateProgramScriptPayload, "programId">;
1317
+ type UpdateProgramScriptPayload = Omit<CreateProgramScriptPayload, "programId" | "weekDay">;
1318
1318
 
1319
1319
  type ListProgramScriptsParams = {
1320
1320
  programId: string;
package/dist/index.d.ts CHANGED
@@ -812,7 +812,7 @@ type TkplayErrorEntity = {
812
812
  };
813
813
 
814
814
  type ProgramScriptEntity = BaseEntity & {
815
- name: string;
815
+ name: string | null;
816
816
  programId: string;
817
817
  program: ProgramEntity;
818
818
  programDayScheduleId: string;
@@ -1314,7 +1314,7 @@ type CreateProgramScriptPayload = {
1314
1314
  weekDay: WeekDayEnum;
1315
1315
  blocks: UpsertProgramScriptBlockPayload[];
1316
1316
  };
1317
- type UpdateProgramScriptPayload = Omit<CreateProgramScriptPayload, "programId">;
1317
+ type UpdateProgramScriptPayload = Omit<CreateProgramScriptPayload, "programId" | "weekDay">;
1318
1318
 
1319
1319
  type ListProgramScriptsParams = {
1320
1320
  programId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talkplay/shared-types",
3
- "version": "1.0.89",
3
+ "version": "1.0.91",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",