@talkplay/shared-types 1.0.59 → 1.0.61
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
|
@@ -864,7 +864,7 @@ type ProgramEntity = BaseEntity & {
|
|
|
864
864
|
radio?: RadioEntity;
|
|
865
865
|
radioId: string;
|
|
866
866
|
voices?: VoiceProfileEntity[];
|
|
867
|
-
weekSchedule
|
|
867
|
+
weekSchedule?: ProgramDayScheduleEntity[];
|
|
868
868
|
};
|
|
869
869
|
|
|
870
870
|
type ProgramDayScheduleEntity = BaseEntity & {
|
|
@@ -1244,7 +1244,7 @@ type UpsertProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "rad
|
|
|
1244
1244
|
|
|
1245
1245
|
type PaymentProgram = {
|
|
1246
1246
|
name: string;
|
|
1247
|
-
|
|
1247
|
+
durationInMinutes: number;
|
|
1248
1248
|
blocksAmount: number;
|
|
1249
1249
|
};
|
|
1250
1250
|
type PaymentPayload = {
|
package/dist/index.d.ts
CHANGED
|
@@ -864,7 +864,7 @@ type ProgramEntity = BaseEntity & {
|
|
|
864
864
|
radio?: RadioEntity;
|
|
865
865
|
radioId: string;
|
|
866
866
|
voices?: VoiceProfileEntity[];
|
|
867
|
-
weekSchedule
|
|
867
|
+
weekSchedule?: ProgramDayScheduleEntity[];
|
|
868
868
|
};
|
|
869
869
|
|
|
870
870
|
type ProgramDayScheduleEntity = BaseEntity & {
|
|
@@ -1244,7 +1244,7 @@ type UpsertProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "rad
|
|
|
1244
1244
|
|
|
1245
1245
|
type PaymentProgram = {
|
|
1246
1246
|
name: string;
|
|
1247
|
-
|
|
1247
|
+
durationInMinutes: number;
|
|
1248
1248
|
blocksAmount: number;
|
|
1249
1249
|
};
|
|
1250
1250
|
type PaymentPayload = {
|