@talkplay/shared-types 1.0.50 → 1.0.53
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -112,6 +112,7 @@ declare const S3DirectoriesEnum: {
|
|
|
112
112
|
type S3DirectoriesEnum = Enum<typeof S3DirectoriesEnum>;
|
|
113
113
|
|
|
114
114
|
declare const ChargeTypesEnum: {
|
|
115
|
+
readonly PROGRAM_CREATION: "PROGRAM_CREATION";
|
|
115
116
|
readonly MONTHLY_ACCESS: "MONTHLY_ACCESS";
|
|
116
117
|
readonly PENALTY: "PENALTY";
|
|
117
118
|
};
|
|
@@ -1155,13 +1156,13 @@ type UpsertSystemModulePayload = {
|
|
|
1155
1156
|
};
|
|
1156
1157
|
type UpsertSystemModuleResponse = SystemModuleEntity;
|
|
1157
1158
|
|
|
1158
|
-
type ListProgramsParams = {
|
|
1159
|
+
type ListProgramsParams = PaginationParams & {
|
|
1159
1160
|
radioId?: string;
|
|
1160
1161
|
name?: string;
|
|
1161
1162
|
castersIds?: string[];
|
|
1162
1163
|
};
|
|
1163
1164
|
|
|
1164
|
-
type UpsertProgramPayload = Required<Omit<ProgramEntity, "radio" | "casters"> & {
|
|
1165
|
+
type UpsertProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "radio" | "casters"> & {
|
|
1165
1166
|
castersIds: string[];
|
|
1166
1167
|
}>;
|
|
1167
1168
|
|
package/dist/index.d.ts
CHANGED
|
@@ -112,6 +112,7 @@ declare const S3DirectoriesEnum: {
|
|
|
112
112
|
type S3DirectoriesEnum = Enum<typeof S3DirectoriesEnum>;
|
|
113
113
|
|
|
114
114
|
declare const ChargeTypesEnum: {
|
|
115
|
+
readonly PROGRAM_CREATION: "PROGRAM_CREATION";
|
|
115
116
|
readonly MONTHLY_ACCESS: "MONTHLY_ACCESS";
|
|
116
117
|
readonly PENALTY: "PENALTY";
|
|
117
118
|
};
|
|
@@ -1155,13 +1156,13 @@ type UpsertSystemModulePayload = {
|
|
|
1155
1156
|
};
|
|
1156
1157
|
type UpsertSystemModuleResponse = SystemModuleEntity;
|
|
1157
1158
|
|
|
1158
|
-
type ListProgramsParams = {
|
|
1159
|
+
type ListProgramsParams = PaginationParams & {
|
|
1159
1160
|
radioId?: string;
|
|
1160
1161
|
name?: string;
|
|
1161
1162
|
castersIds?: string[];
|
|
1162
1163
|
};
|
|
1163
1164
|
|
|
1164
|
-
type UpsertProgramPayload = Required<Omit<ProgramEntity, "radio" | "casters"> & {
|
|
1165
|
+
type UpsertProgramPayload = Required<Omit<ProgramEntity, keyof BaseEntity | "radio" | "casters"> & {
|
|
1165
1166
|
castersIds: string[];
|
|
1166
1167
|
}>;
|
|
1167
1168
|
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED