@sortipei/api-contracts 0.1.20 → 0.1.22

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.
@@ -2,7 +2,7 @@ import { z } from 'zod';
2
2
  export declare const EventDTOSchema: z.ZodObject<{
3
3
  adress: z.ZodString;
4
4
  capacity: z.ZodNullable<z.ZodNumber>;
5
- category: z.ZodNativeEnum<typeof import("../../shared").Category>;
5
+ category: z.ZodNativeEnum<typeof import('../../shared').Category>;
6
6
  description: z.ZodString;
7
7
  finishTime: z.ZodNullable<z.ZodString>;
8
8
  hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
@@ -13,7 +13,7 @@ export declare const EventDTOSchema: z.ZodObject<{
13
13
  isPromoted: z.ZodBoolean;
14
14
  link: z.ZodNullable<z.ZodString>;
15
15
  price: z.ZodNullable<z.ZodNumber>;
16
- region: z.ZodNativeEnum<typeof import("../../shared").Region>;
16
+ regions: z.ZodArray<z.ZodNativeEnum<typeof import('../../shared').Region>, "many">;
17
17
  startTime: z.ZodString;
18
18
  title: z.ZodString;
19
19
  thumbnailUrl: z.ZodNullable<z.ZodString>;
@@ -33,7 +33,7 @@ export declare const EventDTOSchema: z.ZodObject<{
33
33
  }, "strip", z.ZodTypeAny, {
34
34
  adress: string;
35
35
  capacity: number | null;
36
- category: import("../../shared").Category;
36
+ category: import('../../shared').Category;
37
37
  description: string;
38
38
  finishTime: string | null;
39
39
  hasHandicapAccess: boolean | null;
@@ -44,7 +44,7 @@ export declare const EventDTOSchema: z.ZodObject<{
44
44
  isPromoted: boolean;
45
45
  link: string | null;
46
46
  price: number | null;
47
- region: import("../../shared").Region;
47
+ regions: import('../../shared').Region[];
48
48
  startTime: string;
49
49
  title: string;
50
50
  thumbnailUrl: string | null;
@@ -56,7 +56,7 @@ export declare const EventDTOSchema: z.ZodObject<{
56
56
  }, {
57
57
  adress: string;
58
58
  capacity: number | null;
59
- category: import("../../shared").Category;
59
+ category: import('../../shared').Category;
60
60
  description: string;
61
61
  finishTime: string | null;
62
62
  hasHandicapAccess: boolean | null;
@@ -67,7 +67,7 @@ export declare const EventDTOSchema: z.ZodObject<{
67
67
  isPromoted: boolean;
68
68
  link: string | null;
69
69
  price: number | null;
70
- region: import("../../shared").Region;
70
+ regions: import('../../shared').Region[];
71
71
  startTime: string;
72
72
  title: string;
73
73
  thumbnailUrl: string | null;
@@ -80,7 +80,7 @@ export declare const EventDTOSchema: z.ZodObject<{
80
80
  export declare const CreateEventDTOSchema: z.ZodObject<{
81
81
  adress: z.ZodString;
82
82
  capacity: z.ZodNullable<z.ZodNumber>;
83
- category: z.ZodNativeEnum<typeof import("../../shared").Category>;
83
+ category: z.ZodNativeEnum<typeof import('../../shared').Category>;
84
84
  description: z.ZodString;
85
85
  finishTime: z.ZodNullable<z.ZodString>;
86
86
  hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
@@ -91,14 +91,14 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
91
91
  link: z.ZodNullable<z.ZodString>;
92
92
  organizersIds: z.ZodArray<z.ZodBranded<z.ZodString, "OrganizerId">, "many">;
93
93
  price: z.ZodNullable<z.ZodNumber>;
94
- region: z.ZodNativeEnum<typeof import("../../shared").Region>;
94
+ regions: z.ZodArray<z.ZodNativeEnum<typeof import('../../shared').Region>, "many">;
95
95
  startTime: z.ZodString;
96
96
  title: z.ZodString;
97
97
  thumbnailUrl: z.ZodNullable<z.ZodString>;
98
98
  }, "strip", z.ZodTypeAny, {
99
99
  adress: string;
100
100
  capacity: number | null;
101
- category: import("../../shared").Category;
101
+ category: import('../../shared').Category;
102
102
  description: string;
103
103
  finishTime: string | null;
104
104
  hasHandicapAccess: boolean | null;
@@ -108,7 +108,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
108
108
  isDisplayed: boolean;
109
109
  link: string | null;
110
110
  price: number | null;
111
- region: import("../../shared").Region;
111
+ regions: import('../../shared').Region[];
112
112
  startTime: string;
113
113
  title: string;
114
114
  thumbnailUrl: string | null;
@@ -116,7 +116,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
116
116
  }, {
117
117
  adress: string;
118
118
  capacity: number | null;
119
- category: import("../../shared").Category;
119
+ category: import('../../shared').Category;
120
120
  description: string;
121
121
  finishTime: string | null;
122
122
  hasHandicapAccess: boolean | null;
@@ -126,7 +126,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
126
126
  isDisplayed: boolean;
127
127
  link: string | null;
128
128
  price: number | null;
129
- region: import("../../shared").Region;
129
+ regions: import('../../shared').Region[];
130
130
  startTime: string;
131
131
  title: string;
132
132
  thumbnailUrl: string | null;
@@ -135,7 +135,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
135
135
  export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
136
136
  adress: z.ZodString;
137
137
  capacity: z.ZodNullable<z.ZodNumber>;
138
- category: z.ZodNativeEnum<typeof import("../../shared").Category>;
138
+ category: z.ZodNativeEnum<typeof import('../../shared').Category>;
139
139
  description: z.ZodString;
140
140
  finishTime: z.ZodNullable<z.ZodString>;
141
141
  hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
@@ -146,14 +146,14 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
146
146
  link: z.ZodNullable<z.ZodString>;
147
147
  organizersIds: z.ZodArray<z.ZodBranded<z.ZodString, "OrganizerId">, "many">;
148
148
  price: z.ZodNullable<z.ZodNumber>;
149
- region: z.ZodNativeEnum<typeof import("../../shared").Region>;
149
+ regions: z.ZodArray<z.ZodNativeEnum<typeof import('../../shared').Region>, "many">;
150
150
  startTime: z.ZodString;
151
151
  title: z.ZodString;
152
152
  thumbnailUrl: z.ZodNullable<z.ZodString>;
153
153
  }, "id">, "strip", z.ZodTypeAny, {
154
154
  adress: string;
155
155
  capacity: number | null;
156
- category: import("../../shared").Category;
156
+ category: import('../../shared').Category;
157
157
  description: string;
158
158
  finishTime: string | null;
159
159
  hasHandicapAccess: boolean | null;
@@ -162,7 +162,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
162
162
  isDisplayed: boolean;
163
163
  link: string | null;
164
164
  price: number | null;
165
- region: import("../../shared").Region;
165
+ regions: import('../../shared').Region[];
166
166
  startTime: string;
167
167
  title: string;
168
168
  thumbnailUrl: string | null;
@@ -170,7 +170,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
170
170
  }, {
171
171
  adress: string;
172
172
  capacity: number | null;
173
- category: import("../../shared").Category;
173
+ category: import('../../shared').Category;
174
174
  description: string;
175
175
  finishTime: string | null;
176
176
  hasHandicapAccess: boolean | null;
@@ -179,7 +179,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
179
179
  isDisplayed: boolean;
180
180
  link: string | null;
181
181
  price: number | null;
182
- region: import("../../shared").Region;
182
+ regions: import('../../shared').Region[];
183
183
  startTime: string;
184
184
  title: string;
185
185
  thumbnailUrl: string | null;
@@ -225,7 +225,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
225
225
  partialEventState: z.ZodObject<{
226
226
  adress: z.ZodOptional<z.ZodString>;
227
227
  capacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
228
- category: z.ZodOptional<z.ZodNativeEnum<typeof import("../../shared").Category>>;
228
+ category: z.ZodOptional<z.ZodNativeEnum<typeof import('../../shared').Category>>;
229
229
  description: z.ZodOptional<z.ZodString>;
230
230
  finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
231
231
  hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -236,7 +236,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
236
236
  isPromoted: z.ZodOptional<z.ZodBoolean>;
237
237
  link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
238
238
  price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
239
- region: z.ZodOptional<z.ZodNativeEnum<typeof import("../../shared").Region>>;
239
+ regions: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof import('../../shared').Region>, "many">>;
240
240
  startTime: z.ZodOptional<z.ZodString>;
241
241
  title: z.ZodOptional<z.ZodString>;
242
242
  thumbnailUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -256,7 +256,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
256
256
  }, "strip", z.ZodTypeAny, {
257
257
  adress?: string | undefined;
258
258
  capacity?: number | null | undefined;
259
- category?: import("../../shared").Category | undefined;
259
+ category?: import('../../shared').Category | undefined;
260
260
  description?: string | undefined;
261
261
  finishTime?: string | null | undefined;
262
262
  hasHandicapAccess?: boolean | null | undefined;
@@ -267,7 +267,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
267
267
  isPromoted?: boolean | undefined;
268
268
  link?: string | null | undefined;
269
269
  price?: number | null | undefined;
270
- region?: import("../../shared").Region | undefined;
270
+ regions?: import('../../shared').Region[] | undefined;
271
271
  startTime?: string | undefined;
272
272
  title?: string | undefined;
273
273
  thumbnailUrl?: string | null | undefined;
@@ -279,7 +279,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
279
279
  }, {
280
280
  adress?: string | undefined;
281
281
  capacity?: number | null | undefined;
282
- category?: import("../../shared").Category | undefined;
282
+ category?: import('../../shared').Category | undefined;
283
283
  description?: string | undefined;
284
284
  finishTime?: string | null | undefined;
285
285
  hasHandicapAccess?: boolean | null | undefined;
@@ -290,7 +290,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
290
290
  isPromoted?: boolean | undefined;
291
291
  link?: string | null | undefined;
292
292
  price?: number | null | undefined;
293
- region?: import("../../shared").Region | undefined;
293
+ regions?: import('../../shared').Region[] | undefined;
294
294
  startTime?: string | undefined;
295
295
  title?: string | undefined;
296
296
  thumbnailUrl?: string | null | undefined;
@@ -309,7 +309,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
309
309
  partialEventState: {
310
310
  adress?: string | undefined;
311
311
  capacity?: number | null | undefined;
312
- category?: import("../../shared").Category | undefined;
312
+ category?: import('../../shared').Category | undefined;
313
313
  description?: string | undefined;
314
314
  finishTime?: string | null | undefined;
315
315
  hasHandicapAccess?: boolean | null | undefined;
@@ -320,7 +320,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
320
320
  isPromoted?: boolean | undefined;
321
321
  link?: string | null | undefined;
322
322
  price?: number | null | undefined;
323
- region?: import("../../shared").Region | undefined;
323
+ regions?: import('../../shared').Region[] | undefined;
324
324
  startTime?: string | undefined;
325
325
  title?: string | undefined;
326
326
  thumbnailUrl?: string | null | undefined;
@@ -339,7 +339,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
339
339
  partialEventState: {
340
340
  adress?: string | undefined;
341
341
  capacity?: number | null | undefined;
342
- category?: import("../../shared").Category | undefined;
342
+ category?: import('../../shared').Category | undefined;
343
343
  description?: string | undefined;
344
344
  finishTime?: string | null | undefined;
345
345
  hasHandicapAccess?: boolean | null | undefined;
@@ -350,7 +350,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
350
350
  isPromoted?: boolean | undefined;
351
351
  link?: string | null | undefined;
352
352
  price?: number | null | undefined;
353
- region?: import("../../shared").Region | undefined;
353
+ regions?: import('../../shared').Region[] | undefined;
354
354
  startTime?: string | undefined;
355
355
  title?: string | undefined;
356
356
  thumbnailUrl?: string | null | undefined;
@@ -14,7 +14,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
14
14
  isPromoted: z.ZodOptional<z.ZodBoolean>;
15
15
  link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17
- region: z.ZodOptional<z.ZodNativeEnum<typeof import('../../shared').Region>>;
17
+ regions: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof import('../../shared').Region>, "many">>;
18
18
  startTime: z.ZodOptional<z.ZodString>;
19
19
  title: z.ZodOptional<z.ZodString>;
20
20
  thumbnailUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -45,7 +45,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
45
45
  isPromoted?: boolean | undefined;
46
46
  link?: string | null | undefined;
47
47
  price?: number | null | undefined;
48
- region?: import('../../shared').Region | undefined;
48
+ regions?: import('../../shared').Region[] | undefined;
49
49
  startTime?: string | undefined;
50
50
  title?: string | undefined;
51
51
  thumbnailUrl?: string | null | undefined;
@@ -68,7 +68,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
68
68
  isPromoted?: boolean | undefined;
69
69
  link?: string | null | undefined;
70
70
  price?: number | null | undefined;
71
- region?: import('../../shared').Region | undefined;
71
+ regions?: import('../../shared').Region[] | undefined;
72
72
  startTime?: string | undefined;
73
73
  title?: string | undefined;
74
74
  thumbnailUrl?: string | null | undefined;
@@ -98,7 +98,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
98
98
  isPromoted?: boolean | undefined;
99
99
  link?: string | null | undefined;
100
100
  price?: number | null | undefined;
101
- region?: import('../../shared').Region | undefined;
101
+ regions?: import('../../shared').Region[] | undefined;
102
102
  startTime?: string | undefined;
103
103
  title?: string | undefined;
104
104
  thumbnailUrl?: string | null | undefined;
@@ -127,7 +127,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
127
127
  isPromoted?: boolean | undefined;
128
128
  link?: string | null | undefined;
129
129
  price?: number | null | undefined;
130
- region?: import('../../shared').Region | undefined;
130
+ regions?: import('../../shared').Region[] | undefined;
131
131
  startTime?: string | undefined;
132
132
  title?: string | undefined;
133
133
  thumbnailUrl?: string | null | undefined;
@@ -4067,6 +4067,7 @@ var Region = /* @__PURE__ */ ((Region2) => {
4067
4067
  const RegionSchema = z.nativeEnum(Region);
4068
4068
  var Category = /* @__PURE__ */ ((Category2) => {
4069
4069
  Category2["ArtsAndCulture"] = "ArtsAndCulture";
4070
+ Category2["Community"] = "Community";
4070
4071
  Category2["ConferencesAndWorkshops"] = "ConferencesAndWorkshops";
4071
4072
  Category2["Kids"] = "Kids";
4072
4073
  Category2["LocalLife"] = "LocalLife";
@@ -4081,6 +4082,10 @@ const OrganizerIdSchema = UUIDSchema.brand("OrganizerId");
4081
4082
  const createOrganizerId = (id = crypto.randomUUID()) => OrganizerIdSchema.parse(id);
4082
4083
  const UserIdSchema = UUIDSchema.brand("UserId");
4083
4084
  const createUserId = (id = crypto.randomUUID()) => UserIdSchema.parse(id);
4085
+ const FileUploadDTOSchema = z.object({
4086
+ publicUrl: URLSchema,
4087
+ uploadUrl: URLSchema
4088
+ });
4084
4089
  const EventDTOSchema = z.object({
4085
4090
  adress: StringSchema,
4086
4091
  capacity: SafeNonNegativeIntegerSchema.nullable(),
@@ -4095,7 +4100,7 @@ const EventDTOSchema = z.object({
4095
4100
  isPromoted: z.boolean(),
4096
4101
  link: URLSchema.nullable(),
4097
4102
  price: SafeNonNegativeFloatSchema.nullable(),
4098
- region: RegionSchema,
4103
+ regions: RegionSchema.array(),
4099
4104
  startTime: z.string().datetime(),
4100
4105
  title: StringSchema,
4101
4106
  thumbnailUrl: URLSchema.nullable(),
@@ -4119,7 +4124,7 @@ const CreateEventDTOSchema = z.object({
4119
4124
  link: URLSchema.nullable(),
4120
4125
  organizersIds: OrganizerIdSchema.array().min(1),
4121
4126
  price: SafeNonNegativeFloatSchema.nullable(),
4122
- region: RegionSchema,
4127
+ regions: RegionSchema.array(),
4123
4128
  startTime: z.string().datetime(),
4124
4129
  title: StringSchema,
4125
4130
  thumbnailUrl: URLSchema.nullable()
@@ -4155,6 +4160,10 @@ const ImportDTOSchema = z.object({
4155
4160
  source: z.literal("facebook"),
4156
4161
  userId: StringSchema
4157
4162
  });
4163
+ const EventFileUploadDTOSchema = z.object({
4164
+ imageUploadUrls: FileUploadDTOSchema.array(),
4165
+ thumbnailUploadUrl: FileUploadDTOSchema
4166
+ });
4158
4167
  const OrganizerDTOSchema = z.object({
4159
4168
  eventsIds: EventIdSchema.array(),
4160
4169
  id: OrganizerIdSchema,
@@ -4175,10 +4184,6 @@ const constraints$1 = {
4175
4184
  maxLength: 100
4176
4185
  }
4177
4186
  };
4178
- const FileUploadDTOSchema = z.object({
4179
- publicUrl: URLSchema,
4180
- uploadUrl: URLSchema
4181
- });
4182
4187
  const constraints = {
4183
4188
  events: constraints$2,
4184
4189
  organizers: constraints$1
@@ -4189,6 +4194,7 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
4189
4194
  CreateOrganizerDTOSchema,
4190
4195
  DisplayEventDTOSchema,
4191
4196
  EventDTOSchema,
4197
+ EventFileUploadDTOSchema,
4192
4198
  FileUploadDTOSchema,
4193
4199
  ImportDTOSchema,
4194
4200
  OrganizerDTOSchema,
@@ -4065,6 +4065,7 @@ var Region = /* @__PURE__ */ ((Region2) => {
4065
4065
  const RegionSchema = z.nativeEnum(Region);
4066
4066
  var Category = /* @__PURE__ */ ((Category2) => {
4067
4067
  Category2["ArtsAndCulture"] = "ArtsAndCulture";
4068
+ Category2["Community"] = "Community";
4068
4069
  Category2["ConferencesAndWorkshops"] = "ConferencesAndWorkshops";
4069
4070
  Category2["Kids"] = "Kids";
4070
4071
  Category2["LocalLife"] = "LocalLife";
@@ -4079,6 +4080,10 @@ const OrganizerIdSchema = UUIDSchema.brand("OrganizerId");
4079
4080
  const createOrganizerId = (id = crypto.randomUUID()) => OrganizerIdSchema.parse(id);
4080
4081
  const UserIdSchema = UUIDSchema.brand("UserId");
4081
4082
  const createUserId = (id = crypto.randomUUID()) => UserIdSchema.parse(id);
4083
+ const FileUploadDTOSchema = z.object({
4084
+ publicUrl: URLSchema,
4085
+ uploadUrl: URLSchema
4086
+ });
4082
4087
  const EventDTOSchema = z.object({
4083
4088
  adress: StringSchema,
4084
4089
  capacity: SafeNonNegativeIntegerSchema.nullable(),
@@ -4093,7 +4098,7 @@ const EventDTOSchema = z.object({
4093
4098
  isPromoted: z.boolean(),
4094
4099
  link: URLSchema.nullable(),
4095
4100
  price: SafeNonNegativeFloatSchema.nullable(),
4096
- region: RegionSchema,
4101
+ regions: RegionSchema.array(),
4097
4102
  startTime: z.string().datetime(),
4098
4103
  title: StringSchema,
4099
4104
  thumbnailUrl: URLSchema.nullable(),
@@ -4117,7 +4122,7 @@ const CreateEventDTOSchema = z.object({
4117
4122
  link: URLSchema.nullable(),
4118
4123
  organizersIds: OrganizerIdSchema.array().min(1),
4119
4124
  price: SafeNonNegativeFloatSchema.nullable(),
4120
- region: RegionSchema,
4125
+ regions: RegionSchema.array(),
4121
4126
  startTime: z.string().datetime(),
4122
4127
  title: StringSchema,
4123
4128
  thumbnailUrl: URLSchema.nullable()
@@ -4153,6 +4158,10 @@ const ImportDTOSchema = z.object({
4153
4158
  source: z.literal("facebook"),
4154
4159
  userId: StringSchema
4155
4160
  });
4161
+ const EventFileUploadDTOSchema = z.object({
4162
+ imageUploadUrls: FileUploadDTOSchema.array(),
4163
+ thumbnailUploadUrl: FileUploadDTOSchema
4164
+ });
4156
4165
  const OrganizerDTOSchema = z.object({
4157
4166
  eventsIds: EventIdSchema.array(),
4158
4167
  id: OrganizerIdSchema,
@@ -4173,10 +4182,6 @@ const constraints$1 = {
4173
4182
  maxLength: 100
4174
4183
  }
4175
4184
  };
4176
- const FileUploadDTOSchema = z.object({
4177
- publicUrl: URLSchema,
4178
- uploadUrl: URLSchema
4179
- });
4180
4185
  const constraints = {
4181
4186
  events: constraints$2,
4182
4187
  organizers: constraints$1
@@ -4187,6 +4192,7 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
4187
4192
  CreateOrganizerDTOSchema,
4188
4193
  DisplayEventDTOSchema,
4189
4194
  EventDTOSchema,
4195
+ EventFileUploadDTOSchema,
4190
4196
  FileUploadDTOSchema,
4191
4197
  ImportDTOSchema,
4192
4198
  OrganizerDTOSchema,
@@ -8,6 +8,7 @@ export declare enum Region {
8
8
  export declare const RegionSchema: z.ZodNativeEnum<typeof Region>;
9
9
  export declare enum Category {
10
10
  ArtsAndCulture = "ArtsAndCulture",
11
+ Community = "Community",
11
12
  ConferencesAndWorkshops = "ConferencesAndWorkshops",
12
13
  Kids = "Kids",
13
14
  LocalLife = "LocalLife",
@@ -1 +1 @@
1
- {"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../src/shared/event.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,oBAAY,MAAM;IAChB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,KAAK,UAAU;IACf,IAAI,SAAS;CACd;AAED,eAAO,MAAM,YAAY,gCAAuB,CAAC;AAEjD,oBAAY,QAAQ;IAClB,cAAc,mBAAmB;IACjC,uBAAuB,4BAA4B;IACnD,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,gBAAgB,qBAAqB;CACtC;AAED,eAAO,MAAM,cAAc,kCAAyB,CAAC"}
1
+ {"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../src/shared/event.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,oBAAY,MAAM;IAChB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,KAAK,UAAU;IACf,IAAI,SAAS;CACd;AAED,eAAO,MAAM,YAAY,gCAAuB,CAAC;AAEjD,oBAAY,QAAQ;IAClB,cAAc,mBAAmB;IACjC,SAAS,cAAc;IACvB,uBAAuB,4BAA4B;IACnD,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,gBAAgB,qBAAqB;CACtC;AAED,eAAO,MAAM,cAAc,kCAAyB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sortipei/api-contracts",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
4
4
  "license": "UNLICENCED",
5
5
  "main": "dist/api-contracts.js",
6
6
  "module": "dist/api-contracts.mjs",