@uniteverses/shared 1.0.43 → 1.0.44
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.
|
@@ -206,6 +206,8 @@ export interface OrgEventTranslationInput {
|
|
|
206
206
|
export interface OrgEvent {
|
|
207
207
|
id: string;
|
|
208
208
|
organizationId: string;
|
|
209
|
+
isActive: boolean;
|
|
210
|
+
registrationRequired: boolean;
|
|
209
211
|
createdAt: string | Date;
|
|
210
212
|
occurrences?: OrgEventOccurrence[];
|
|
211
213
|
translations: OrgEventTranslation[];
|
|
@@ -215,9 +217,13 @@ export interface OrgEvent {
|
|
|
215
217
|
}
|
|
216
218
|
export interface CreateOrgEventInput {
|
|
217
219
|
translations: OrgEventTranslationInput[];
|
|
220
|
+
isActive?: boolean;
|
|
221
|
+
registrationRequired?: boolean;
|
|
218
222
|
}
|
|
219
223
|
export interface UpdateOrgEventInput {
|
|
220
224
|
translations: OrgEventTranslationInput[];
|
|
225
|
+
isActive?: boolean;
|
|
226
|
+
registrationRequired?: boolean;
|
|
221
227
|
}
|
|
222
228
|
export interface OrgEventOccurrenceTranslation {
|
|
223
229
|
id: string;
|