@sortipei/api-contracts 0.2.18 → 0.2.19

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.
@@ -18,7 +18,7 @@ export declare const OrganizerDTOSchema: z.ZodObject<{
18
18
  eventsIds: z.ZodArray<z.ZodBranded<z.ZodString, "EventId">, "many">;
19
19
  id: z.ZodBranded<z.ZodString, "OrganizerId">;
20
20
  imageUrl: z.ZodNullable<z.ZodString>;
21
- isCanonical: z.ZodNullable<z.ZodBoolean>;
21
+ isCanonical: z.ZodBoolean;
22
22
  isDuplicate: z.ZodBoolean;
23
23
  name: z.ZodString;
24
24
  phoneNumber: z.ZodNullable<z.ZodString>;
@@ -29,7 +29,7 @@ export declare const OrganizerDTOSchema: z.ZodObject<{
29
29
  canonicalOrganizerId: (string & z.BRAND<"OrganizerId">) | null;
30
30
  email: string | null;
31
31
  eventsIds: (string & z.BRAND<"EventId">)[];
32
- isCanonical: boolean | null;
32
+ isCanonical: boolean;
33
33
  isDuplicate: boolean;
34
34
  phoneNumber: string | null;
35
35
  }, {
@@ -39,7 +39,7 @@ export declare const OrganizerDTOSchema: z.ZodObject<{
39
39
  canonicalOrganizerId: string | null;
40
40
  email: string | null;
41
41
  eventsIds: string[];
42
- isCanonical: boolean | null;
42
+ isCanonical: boolean;
43
43
  isDuplicate: boolean;
44
44
  phoneNumber: string | null;
45
45
  }>;
@@ -4385,7 +4385,7 @@ const OrganizerDTOSchema = z.object({
4385
4385
  eventsIds: EventIdSchema.array(),
4386
4386
  id: OrganizerIdSchema,
4387
4387
  imageUrl: URLSchema.nullable(),
4388
- isCanonical: z.boolean().nullable(),
4388
+ isCanonical: z.boolean(),
4389
4389
  isDuplicate: z.boolean(),
4390
4390
  name: StringSchema,
4391
4391
  phoneNumber: z.string().nullable()
@@ -4383,7 +4383,7 @@ const OrganizerDTOSchema = z.object({
4383
4383
  eventsIds: EventIdSchema.array(),
4384
4384
  id: OrganizerIdSchema,
4385
4385
  imageUrl: URLSchema.nullable(),
4386
- isCanonical: z.boolean().nullable(),
4386
+ isCanonical: z.boolean(),
4387
4387
  isDuplicate: z.boolean(),
4388
4388
  name: StringSchema,
4389
4389
  phoneNumber: z.string().nullable()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sortipei/api-contracts",
3
- "version": "0.2.18",
3
+ "version": "0.2.19",
4
4
  "license": "UNLICENCED",
5
5
  "main": "dist/api-contracts.js",
6
6
  "module": "dist/api-contracts.mjs",