@sortipei/api-contracts 0.1.26 → 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.
@@ -4057,10 +4057,6 @@ const SafeIntegerSchema = SafeFloatSchema.int();
4057
4057
  const SafeNonNegativeIntegerSchema = SafeIntegerSchema.nonnegative();
4058
4058
  const SafeNonNegativeFloatSchema = SafeFloatSchema.nonnegative();
4059
4059
  const URLSchema = StringSchema.url();
4060
- const GPSCoordinatesSchema = z.object({
4061
- latitude: z.number().min(-90).max(90),
4062
- longitude: z.number().min(-180).max(180)
4063
- });
4064
4060
  var Region = /* @__PURE__ */ ((Region2) => {
4065
4061
  Region2["East"] = "East";
4066
4062
  Region2["North"] = "North";
@@ -4105,7 +4101,6 @@ const EventDTOSchema = z.object({
4105
4101
  createdAt: z.string().datetime(),
4106
4102
  description: StringSchema,
4107
4103
  finishTime: z.string().datetime().nullable(),
4108
- gpsCoordinates: GPSCoordinatesSchema,
4109
4104
  hasHandicapAccess: z.boolean().nullable(),
4110
4105
  id: EventIdSchema,
4111
4106
  imageBlurHashes: StringSchema.array(),
@@ -4255,7 +4250,6 @@ exports.CoerceDateSchema = CoerceDateSchema;
4255
4250
  exports.CoerceNullableDateSchema = CoerceNullableDateSchema;
4256
4251
  exports.ErrorCodes = ErrorCodes;
4257
4252
  exports.EventIdSchema = EventIdSchema;
4258
- exports.GPSCoordinatesSchema = GPSCoordinatesSchema;
4259
4253
  exports.OrganizerIdSchema = OrganizerIdSchema;
4260
4254
  exports.Region = Region;
4261
4255
  exports.RegionSchema = RegionSchema;
@@ -4055,10 +4055,6 @@ const SafeIntegerSchema = SafeFloatSchema.int();
4055
4055
  const SafeNonNegativeIntegerSchema = SafeIntegerSchema.nonnegative();
4056
4056
  const SafeNonNegativeFloatSchema = SafeFloatSchema.nonnegative();
4057
4057
  const URLSchema = StringSchema.url();
4058
- const GPSCoordinatesSchema = z.object({
4059
- latitude: z.number().min(-90).max(90),
4060
- longitude: z.number().min(-180).max(180)
4061
- });
4062
4058
  var Region = /* @__PURE__ */ ((Region2) => {
4063
4059
  Region2["East"] = "East";
4064
4060
  Region2["North"] = "North";
@@ -4103,7 +4099,6 @@ const EventDTOSchema = z.object({
4103
4099
  createdAt: z.string().datetime(),
4104
4100
  description: StringSchema,
4105
4101
  finishTime: z.string().datetime().nullable(),
4106
- gpsCoordinates: GPSCoordinatesSchema,
4107
4102
  hasHandicapAccess: z.boolean().nullable(),
4108
4103
  id: EventIdSchema,
4109
4104
  imageBlurHashes: StringSchema.array(),
@@ -4254,7 +4249,6 @@ export {
4254
4249
  CoerceNullableDateSchema,
4255
4250
  ErrorCodes,
4256
4251
  EventIdSchema,
4257
- GPSCoordinatesSchema,
4258
4252
  OrganizerIdSchema,
4259
4253
  Region,
4260
4254
  RegionSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sortipei/api-contracts",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "license": "UNLICENCED",
5
5
  "main": "dist/api-contracts.js",
6
6
  "module": "dist/api-contracts.mjs",