@talkplay/shared-types 1.0.93 → 1.0.94
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
|
@@ -1332,14 +1332,14 @@ type ListProgramsParams = PaginationParams & {
|
|
|
1332
1332
|
voicesIds?: string[];
|
|
1333
1333
|
};
|
|
1334
1334
|
|
|
1335
|
-
type CreateProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "radio" | "voices" | "weekSchedule"> & {
|
|
1335
|
+
type CreateProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "radio" | "voices" | "weekSchedule" | "scripts"> & {
|
|
1336
1336
|
voicesIds: string[];
|
|
1337
1337
|
weekSchedule: CreateProgramSchedulePayload;
|
|
1338
1338
|
}> & {
|
|
1339
1339
|
draftId?: string;
|
|
1340
1340
|
};
|
|
1341
1341
|
|
|
1342
|
-
type UpdateProgramProfilePayload = Required<Omit<CreateProgramPayload, "weekSchedule" | "draftId" | "voicesIds" | "radioId">>;
|
|
1342
|
+
type UpdateProgramProfilePayload = Required<Omit<CreateProgramPayload, "weekSchedule" | "draftId" | "voicesIds" | "radioId" | "scripts">>;
|
|
1343
1343
|
|
|
1344
1344
|
type UpdateProgramVoicesPayload = {
|
|
1345
1345
|
voicesIds: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1332,14 +1332,14 @@ type ListProgramsParams = PaginationParams & {
|
|
|
1332
1332
|
voicesIds?: string[];
|
|
1333
1333
|
};
|
|
1334
1334
|
|
|
1335
|
-
type CreateProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "radio" | "voices" | "weekSchedule"> & {
|
|
1335
|
+
type CreateProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "radio" | "voices" | "weekSchedule" | "scripts"> & {
|
|
1336
1336
|
voicesIds: string[];
|
|
1337
1337
|
weekSchedule: CreateProgramSchedulePayload;
|
|
1338
1338
|
}> & {
|
|
1339
1339
|
draftId?: string;
|
|
1340
1340
|
};
|
|
1341
1341
|
|
|
1342
|
-
type UpdateProgramProfilePayload = Required<Omit<CreateProgramPayload, "weekSchedule" | "draftId" | "voicesIds" | "radioId">>;
|
|
1342
|
+
type UpdateProgramProfilePayload = Required<Omit<CreateProgramPayload, "weekSchedule" | "draftId" | "voicesIds" | "radioId" | "scripts">>;
|
|
1343
1343
|
|
|
1344
1344
|
type UpdateProgramVoicesPayload = {
|
|
1345
1345
|
voicesIds: string[];
|