@sortipei/api-contracts 0.1.15 → 0.1.16
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/V1/api/event.d.ts +14 -0
- package/dist/V1/api/event.d.ts.map +1 -1
- package/dist/V1/external/partial-imported-event.d.ts +5 -0
- package/dist/V1/external/partial-imported-event.d.ts.map +1 -1
- package/dist/api-contracts.js +2 -0
- package/dist/api-contracts.mjs +2 -0
- package/package.json +1 -1
package/dist/V1/api/event.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
7
7
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
8
8
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
9
9
|
id: z.ZodBranded<z.ZodString, "EventId">;
|
|
10
|
+
imageBlurHashes: z.ZodArray<z.ZodString, "many">;
|
|
10
11
|
imageUrls: z.ZodArray<z.ZodString, "many">;
|
|
11
12
|
isDisplayed: z.ZodBoolean;
|
|
12
13
|
isPromoted: z.ZodBoolean;
|
|
@@ -36,6 +37,7 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
36
37
|
finishTime: string | null;
|
|
37
38
|
hasHandicapAccess: boolean | null;
|
|
38
39
|
id: string & z.BRAND<"EventId">;
|
|
40
|
+
imageBlurHashes: string[];
|
|
39
41
|
imageUrls: string[];
|
|
40
42
|
isDisplayed: boolean;
|
|
41
43
|
isPromoted: boolean;
|
|
@@ -57,6 +59,7 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
57
59
|
finishTime: string | null;
|
|
58
60
|
hasHandicapAccess: boolean | null;
|
|
59
61
|
id: string;
|
|
62
|
+
imageBlurHashes: string[];
|
|
60
63
|
imageUrls: string[];
|
|
61
64
|
isDisplayed: boolean;
|
|
62
65
|
isPromoted: boolean;
|
|
@@ -79,6 +82,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
79
82
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
80
83
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
81
84
|
id: z.ZodBranded<z.ZodString, "EventId">;
|
|
85
|
+
imageBlurHashes: z.ZodArray<z.ZodString, "many">;
|
|
82
86
|
imageUrls: z.ZodArray<z.ZodString, "many">;
|
|
83
87
|
isDisplayed: z.ZodBoolean;
|
|
84
88
|
link: z.ZodNullable<z.ZodString>;
|
|
@@ -95,6 +99,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
95
99
|
finishTime: string | null;
|
|
96
100
|
hasHandicapAccess: boolean | null;
|
|
97
101
|
id: string & z.BRAND<"EventId">;
|
|
102
|
+
imageBlurHashes: string[];
|
|
98
103
|
imageUrls: string[];
|
|
99
104
|
isDisplayed: boolean;
|
|
100
105
|
link: string | null;
|
|
@@ -111,6 +116,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
111
116
|
finishTime: string | null;
|
|
112
117
|
hasHandicapAccess: boolean | null;
|
|
113
118
|
id: string;
|
|
119
|
+
imageBlurHashes: string[];
|
|
114
120
|
imageUrls: string[];
|
|
115
121
|
isDisplayed: boolean;
|
|
116
122
|
link: string | null;
|
|
@@ -128,6 +134,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
|
128
134
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
129
135
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
130
136
|
id: z.ZodBranded<z.ZodString, "EventId">;
|
|
137
|
+
imageBlurHashes: z.ZodArray<z.ZodString, "many">;
|
|
131
138
|
imageUrls: z.ZodArray<z.ZodString, "many">;
|
|
132
139
|
isDisplayed: z.ZodBoolean;
|
|
133
140
|
link: z.ZodNullable<z.ZodString>;
|
|
@@ -143,6 +150,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
|
143
150
|
description: string;
|
|
144
151
|
finishTime: string | null;
|
|
145
152
|
hasHandicapAccess: boolean | null;
|
|
153
|
+
imageBlurHashes: string[];
|
|
146
154
|
imageUrls: string[];
|
|
147
155
|
isDisplayed: boolean;
|
|
148
156
|
link: string | null;
|
|
@@ -158,6 +166,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
|
158
166
|
description: string;
|
|
159
167
|
finishTime: string | null;
|
|
160
168
|
hasHandicapAccess: boolean | null;
|
|
169
|
+
imageBlurHashes: string[];
|
|
161
170
|
imageUrls: string[];
|
|
162
171
|
isDisplayed: boolean;
|
|
163
172
|
link: string | null;
|
|
@@ -212,6 +221,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
212
221
|
finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
213
222
|
hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
214
223
|
id: z.ZodOptional<z.ZodBranded<z.ZodString, "EventId">>;
|
|
224
|
+
imageBlurHashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
215
225
|
imageUrls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
216
226
|
isDisplayed: z.ZodOptional<z.ZodBoolean>;
|
|
217
227
|
isPromoted: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -241,6 +251,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
241
251
|
finishTime?: string | null | undefined;
|
|
242
252
|
hasHandicapAccess?: boolean | null | undefined;
|
|
243
253
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
254
|
+
imageBlurHashes?: string[] | undefined;
|
|
244
255
|
imageUrls?: string[] | undefined;
|
|
245
256
|
isDisplayed?: boolean | undefined;
|
|
246
257
|
isPromoted?: boolean | undefined;
|
|
@@ -262,6 +273,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
262
273
|
finishTime?: string | null | undefined;
|
|
263
274
|
hasHandicapAccess?: boolean | null | undefined;
|
|
264
275
|
id?: string | undefined;
|
|
276
|
+
imageBlurHashes?: string[] | undefined;
|
|
265
277
|
imageUrls?: string[] | undefined;
|
|
266
278
|
isDisplayed?: boolean | undefined;
|
|
267
279
|
isPromoted?: boolean | undefined;
|
|
@@ -290,6 +302,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
290
302
|
finishTime?: string | null | undefined;
|
|
291
303
|
hasHandicapAccess?: boolean | null | undefined;
|
|
292
304
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
305
|
+
imageBlurHashes?: string[] | undefined;
|
|
293
306
|
imageUrls?: string[] | undefined;
|
|
294
307
|
isDisplayed?: boolean | undefined;
|
|
295
308
|
isPromoted?: boolean | undefined;
|
|
@@ -318,6 +331,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
318
331
|
finishTime?: string | null | undefined;
|
|
319
332
|
hasHandicapAccess?: boolean | null | undefined;
|
|
320
333
|
id?: string | undefined;
|
|
334
|
+
imageBlurHashes?: string[] | undefined;
|
|
321
335
|
imageUrls?: string[] | undefined;
|
|
322
336
|
isDisplayed?: boolean | undefined;
|
|
323
337
|
isPromoted?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../src/V1/api/event.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../src/V1/api/event.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BzB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiB/B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE/B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;EAEhC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;EAEhC,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAavB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -8,6 +8,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
8
8
|
finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
9
|
hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
10
10
|
id: z.ZodOptional<z.ZodBranded<z.ZodString, "EventId">>;
|
|
11
|
+
imageBlurHashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11
12
|
imageUrls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12
13
|
isDisplayed: z.ZodOptional<z.ZodBoolean>;
|
|
13
14
|
isPromoted: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37,6 +38,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
37
38
|
finishTime?: string | null | undefined;
|
|
38
39
|
hasHandicapAccess?: boolean | null | undefined;
|
|
39
40
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
41
|
+
imageBlurHashes?: string[] | undefined;
|
|
40
42
|
imageUrls?: string[] | undefined;
|
|
41
43
|
isDisplayed?: boolean | undefined;
|
|
42
44
|
isPromoted?: boolean | undefined;
|
|
@@ -58,6 +60,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
58
60
|
finishTime?: string | null | undefined;
|
|
59
61
|
hasHandicapAccess?: boolean | null | undefined;
|
|
60
62
|
id?: string | undefined;
|
|
63
|
+
imageBlurHashes?: string[] | undefined;
|
|
61
64
|
imageUrls?: string[] | undefined;
|
|
62
65
|
isDisplayed?: boolean | undefined;
|
|
63
66
|
isPromoted?: boolean | undefined;
|
|
@@ -86,6 +89,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
86
89
|
finishTime?: string | null | undefined;
|
|
87
90
|
hasHandicapAccess?: boolean | null | undefined;
|
|
88
91
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
92
|
+
imageBlurHashes?: string[] | undefined;
|
|
89
93
|
imageUrls?: string[] | undefined;
|
|
90
94
|
isDisplayed?: boolean | undefined;
|
|
91
95
|
isPromoted?: boolean | undefined;
|
|
@@ -113,6 +117,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
113
117
|
finishTime?: string | null | undefined;
|
|
114
118
|
hasHandicapAccess?: boolean | null | undefined;
|
|
115
119
|
id?: string | undefined;
|
|
120
|
+
imageBlurHashes?: string[] | undefined;
|
|
116
121
|
imageUrls?: string[] | undefined;
|
|
117
122
|
isDisplayed?: boolean | undefined;
|
|
118
123
|
isPromoted?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"partial-imported-event.d.ts","sourceRoot":"","sources":["../../../src/V1/external/partial-imported-event.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,mCAAmC
|
|
1
|
+
{"version":3,"file":"partial-imported-event.d.ts","sourceRoot":"","sources":["../../../src/V1/external/partial-imported-event.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM9C,CAAC;AAEH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC"}
|
package/dist/api-contracts.js
CHANGED
|
@@ -4089,6 +4089,7 @@ const EventDTOSchema = z.object({
|
|
|
4089
4089
|
finishTime: z.string().datetime().nullable(),
|
|
4090
4090
|
hasHandicapAccess: z.boolean().nullable(),
|
|
4091
4091
|
id: EventIdSchema,
|
|
4092
|
+
imageBlurHashes: StringSchema.array(),
|
|
4092
4093
|
imageUrls: URLSchema.array(),
|
|
4093
4094
|
isDisplayed: z.boolean(),
|
|
4094
4095
|
isPromoted: z.boolean(),
|
|
@@ -4111,6 +4112,7 @@ const CreateEventDTOSchema = z.object({
|
|
|
4111
4112
|
finishTime: z.string().datetime().nullable(),
|
|
4112
4113
|
hasHandicapAccess: z.boolean().nullable(),
|
|
4113
4114
|
id: EventIdSchema,
|
|
4115
|
+
imageBlurHashes: StringSchema.array(),
|
|
4114
4116
|
imageUrls: URLSchema.array(),
|
|
4115
4117
|
isDisplayed: z.boolean(),
|
|
4116
4118
|
link: URLSchema.nullable(),
|
package/dist/api-contracts.mjs
CHANGED
|
@@ -4087,6 +4087,7 @@ const EventDTOSchema = z.object({
|
|
|
4087
4087
|
finishTime: z.string().datetime().nullable(),
|
|
4088
4088
|
hasHandicapAccess: z.boolean().nullable(),
|
|
4089
4089
|
id: EventIdSchema,
|
|
4090
|
+
imageBlurHashes: StringSchema.array(),
|
|
4090
4091
|
imageUrls: URLSchema.array(),
|
|
4091
4092
|
isDisplayed: z.boolean(),
|
|
4092
4093
|
isPromoted: z.boolean(),
|
|
@@ -4109,6 +4110,7 @@ const CreateEventDTOSchema = z.object({
|
|
|
4109
4110
|
finishTime: z.string().datetime().nullable(),
|
|
4110
4111
|
hasHandicapAccess: z.boolean().nullable(),
|
|
4111
4112
|
id: EventIdSchema,
|
|
4113
|
+
imageBlurHashes: StringSchema.array(),
|
|
4112
4114
|
imageUrls: URLSchema.array(),
|
|
4113
4115
|
isDisplayed: z.boolean(),
|
|
4114
4116
|
link: URLSchema.nullable(),
|