@sortipei/api-contracts 0.1.27 → 0.1.28
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
CHANGED
|
@@ -8,16 +8,6 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
8
8
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
9
9
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
10
10
|
id: z.ZodBranded<z.ZodString, "EventId">;
|
|
11
|
-
gpsCoordinates: z.ZodObject<{
|
|
12
|
-
latitude: z.ZodNumber;
|
|
13
|
-
longitude: z.ZodNumber;
|
|
14
|
-
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
latitude: number;
|
|
16
|
-
longitude: number;
|
|
17
|
-
}, {
|
|
18
|
-
latitude: number;
|
|
19
|
-
longitude: number;
|
|
20
|
-
}>;
|
|
21
11
|
imageBlurHashes: z.ZodArray<z.ZodString, "many">;
|
|
22
12
|
imageUrls: z.ZodArray<z.ZodString, "many">;
|
|
23
13
|
isDisplayed: z.ZodBoolean;
|
|
@@ -52,10 +42,6 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
52
42
|
finishTime: string | null;
|
|
53
43
|
hasHandicapAccess: boolean | null;
|
|
54
44
|
id: string & z.BRAND<"EventId">;
|
|
55
|
-
gpsCoordinates: {
|
|
56
|
-
latitude: number;
|
|
57
|
-
longitude: number;
|
|
58
|
-
};
|
|
59
45
|
imageBlurHashes: string[];
|
|
60
46
|
imageUrls: string[];
|
|
61
47
|
isDisplayed: boolean;
|
|
@@ -82,10 +68,6 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
82
68
|
finishTime: string | null;
|
|
83
69
|
hasHandicapAccess: boolean | null;
|
|
84
70
|
id: string;
|
|
85
|
-
gpsCoordinates: {
|
|
86
|
-
latitude: number;
|
|
87
|
-
longitude: number;
|
|
88
|
-
};
|
|
89
71
|
imageBlurHashes: string[];
|
|
90
72
|
imageUrls: string[];
|
|
91
73
|
isDisplayed: boolean;
|
|
@@ -270,16 +252,6 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
270
252
|
finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
271
253
|
hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
272
254
|
id: z.ZodOptional<z.ZodBranded<z.ZodString, "EventId">>;
|
|
273
|
-
gpsCoordinates: z.ZodOptional<z.ZodObject<{
|
|
274
|
-
latitude: z.ZodNumber;
|
|
275
|
-
longitude: z.ZodNumber;
|
|
276
|
-
}, "strip", z.ZodTypeAny, {
|
|
277
|
-
latitude: number;
|
|
278
|
-
longitude: number;
|
|
279
|
-
}, {
|
|
280
|
-
latitude: number;
|
|
281
|
-
longitude: number;
|
|
282
|
-
}>>;
|
|
283
255
|
imageBlurHashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
284
256
|
imageUrls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
285
257
|
isDisplayed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -314,10 +286,6 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
314
286
|
finishTime?: string | null | undefined;
|
|
315
287
|
hasHandicapAccess?: boolean | null | undefined;
|
|
316
288
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
317
|
-
gpsCoordinates?: {
|
|
318
|
-
latitude: number;
|
|
319
|
-
longitude: number;
|
|
320
|
-
} | undefined;
|
|
321
289
|
imageBlurHashes?: string[] | undefined;
|
|
322
290
|
imageUrls?: string[] | undefined;
|
|
323
291
|
isDisplayed?: boolean | undefined;
|
|
@@ -344,10 +312,6 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
344
312
|
finishTime?: string | null | undefined;
|
|
345
313
|
hasHandicapAccess?: boolean | null | undefined;
|
|
346
314
|
id?: string | undefined;
|
|
347
|
-
gpsCoordinates?: {
|
|
348
|
-
latitude: number;
|
|
349
|
-
longitude: number;
|
|
350
|
-
} | undefined;
|
|
351
315
|
imageBlurHashes?: string[] | undefined;
|
|
352
316
|
imageUrls?: string[] | undefined;
|
|
353
317
|
isDisplayed?: boolean | undefined;
|
|
@@ -381,10 +345,6 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
381
345
|
finishTime?: string | null | undefined;
|
|
382
346
|
hasHandicapAccess?: boolean | null | undefined;
|
|
383
347
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
384
|
-
gpsCoordinates?: {
|
|
385
|
-
latitude: number;
|
|
386
|
-
longitude: number;
|
|
387
|
-
} | undefined;
|
|
388
348
|
imageBlurHashes?: string[] | undefined;
|
|
389
349
|
imageUrls?: string[] | undefined;
|
|
390
350
|
isDisplayed?: boolean | undefined;
|
|
@@ -418,10 +378,6 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
418
378
|
finishTime?: string | null | undefined;
|
|
419
379
|
hasHandicapAccess?: boolean | null | undefined;
|
|
420
380
|
id?: string | undefined;
|
|
421
|
-
gpsCoordinates?: {
|
|
422
|
-
latitude: number;
|
|
423
|
-
longitude: number;
|
|
424
|
-
} | undefined;
|
|
425
381
|
imageBlurHashes?: string[] | undefined;
|
|
426
382
|
imageUrls?: string[] | undefined;
|
|
427
383
|
isDisplayed?: 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;AAGxB,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;AAGxB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BzB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB/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;AAExD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,sBAAsB;;;;;;EAEjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -9,16 +9,6 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
9
9
|
finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10
10
|
hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
11
11
|
id: z.ZodOptional<z.ZodBranded<z.ZodString, "EventId">>;
|
|
12
|
-
gpsCoordinates: z.ZodOptional<z.ZodObject<{
|
|
13
|
-
latitude: z.ZodNumber;
|
|
14
|
-
longitude: z.ZodNumber;
|
|
15
|
-
}, "strip", z.ZodTypeAny, {
|
|
16
|
-
latitude: number;
|
|
17
|
-
longitude: number;
|
|
18
|
-
}, {
|
|
19
|
-
latitude: number;
|
|
20
|
-
longitude: number;
|
|
21
|
-
}>>;
|
|
22
12
|
imageBlurHashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23
13
|
imageUrls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24
14
|
isDisplayed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -53,10 +43,6 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
53
43
|
finishTime?: string | null | undefined;
|
|
54
44
|
hasHandicapAccess?: boolean | null | undefined;
|
|
55
45
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
56
|
-
gpsCoordinates?: {
|
|
57
|
-
latitude: number;
|
|
58
|
-
longitude: number;
|
|
59
|
-
} | undefined;
|
|
60
46
|
imageBlurHashes?: string[] | undefined;
|
|
61
47
|
imageUrls?: string[] | undefined;
|
|
62
48
|
isDisplayed?: boolean | undefined;
|
|
@@ -83,10 +69,6 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
83
69
|
finishTime?: string | null | undefined;
|
|
84
70
|
hasHandicapAccess?: boolean | null | undefined;
|
|
85
71
|
id?: string | undefined;
|
|
86
|
-
gpsCoordinates?: {
|
|
87
|
-
latitude: number;
|
|
88
|
-
longitude: number;
|
|
89
|
-
} | undefined;
|
|
90
72
|
imageBlurHashes?: string[] | undefined;
|
|
91
73
|
imageUrls?: string[] | undefined;
|
|
92
74
|
isDisplayed?: boolean | undefined;
|
|
@@ -120,10 +102,6 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
120
102
|
finishTime?: string | null | undefined;
|
|
121
103
|
hasHandicapAccess?: boolean | null | undefined;
|
|
122
104
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
123
|
-
gpsCoordinates?: {
|
|
124
|
-
latitude: number;
|
|
125
|
-
longitude: number;
|
|
126
|
-
} | undefined;
|
|
127
105
|
imageBlurHashes?: string[] | undefined;
|
|
128
106
|
imageUrls?: string[] | undefined;
|
|
129
107
|
isDisplayed?: boolean | undefined;
|
|
@@ -156,10 +134,6 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
156
134
|
finishTime?: string | null | undefined;
|
|
157
135
|
hasHandicapAccess?: boolean | null | undefined;
|
|
158
136
|
id?: string | undefined;
|
|
159
|
-
gpsCoordinates?: {
|
|
160
|
-
latitude: number;
|
|
161
|
-
longitude: number;
|
|
162
|
-
} | undefined;
|
|
163
137
|
imageBlurHashes?: string[] | undefined;
|
|
164
138
|
imageUrls?: string[] | undefined;
|
|
165
139
|
isDisplayed?: 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"}
|