@sortipei/api-contracts 0.2.17 → 0.2.18
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,6 +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
22
|
isDuplicate: z.ZodBoolean;
|
|
22
23
|
name: z.ZodString;
|
|
23
24
|
phoneNumber: z.ZodNullable<z.ZodString>;
|
|
@@ -28,6 +29,7 @@ export declare const OrganizerDTOSchema: z.ZodObject<{
|
|
|
28
29
|
canonicalOrganizerId: (string & z.BRAND<"OrganizerId">) | null;
|
|
29
30
|
email: string | null;
|
|
30
31
|
eventsIds: (string & z.BRAND<"EventId">)[];
|
|
32
|
+
isCanonical: boolean | null;
|
|
31
33
|
isDuplicate: boolean;
|
|
32
34
|
phoneNumber: string | null;
|
|
33
35
|
}, {
|
|
@@ -37,6 +39,7 @@ export declare const OrganizerDTOSchema: z.ZodObject<{
|
|
|
37
39
|
canonicalOrganizerId: string | null;
|
|
38
40
|
email: string | null;
|
|
39
41
|
eventsIds: string[];
|
|
42
|
+
isCanonical: boolean | null;
|
|
40
43
|
isDuplicate: boolean;
|
|
41
44
|
phoneNumber: string | null;
|
|
42
45
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizer.d.ts","sourceRoot":"","sources":["../../../src/V1/api/organizer.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;EAInC,CAAC;AAEH,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"organizer.d.ts","sourceRoot":"","sources":["../../../src/V1/api/organizer.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;EAInC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU7B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,WAAW;;;;;CAKvB,CAAC"}
|
package/dist/api-contracts.js
CHANGED
|
@@ -4385,6 +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
4389
|
isDuplicate: z.boolean(),
|
|
4389
4390
|
name: StringSchema,
|
|
4390
4391
|
phoneNumber: z.string().nullable()
|
package/dist/api-contracts.mjs
CHANGED
|
@@ -4383,6 +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
4387
|
isDuplicate: z.boolean(),
|
|
4387
4388
|
name: StringSchema,
|
|
4388
4389
|
phoneNumber: z.string().nullable()
|