@sortipei/api-contracts 0.3.0 → 0.3.2

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.
@@ -3,6 +3,7 @@ export * from './app-configuration';
3
3
  export * from './common';
4
4
  export * from './event';
5
5
  export * from './import-reminder';
6
+ export * from './notification';
6
7
  export * from './organizer';
7
8
  export * from './statistics';
8
9
  export declare const constraints: {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/V1/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,MAAM,CAAC;AACrB,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAK7B,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;CAGvB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/V1/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,MAAM,CAAC;AACrB,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAK7B,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;CAGvB,CAAC"}
@@ -0,0 +1,38 @@
1
+ import { z } from 'zod';
2
+ export declare const NotificationTagDTOSchema: z.ZodEnum<{
3
+ cancelled: "cancelled";
4
+ feature: "feature";
5
+ postponed: "postponed";
6
+ reminder: "reminder";
7
+ }>;
8
+ export type NotificationTag = z.infer<typeof NotificationTagDTOSchema>;
9
+ export declare const NotificationLinkDTOSchema: z.ZodUnion<readonly [z.ZodObject<{
10
+ type: z.ZodLiteral<"event">;
11
+ eventId: z.core.$ZodBranded<z.ZodUUID, "EventId", "out">;
12
+ }, z.core.$strip>, z.ZodObject<{
13
+ type: z.ZodLiteral<"favorites">;
14
+ }, z.core.$strip>, z.ZodNull]>;
15
+ export type NotificationLinkDTO = z.infer<typeof NotificationLinkDTOSchema>;
16
+ export declare const NotificationDTOSchema: z.ZodObject<{
17
+ author: z.ZodNullable<z.ZodString>;
18
+ authorImageUrl: z.ZodNullable<z.ZodString>;
19
+ content: z.ZodNullable<z.ZodString>;
20
+ createdAt: z.ZodString;
21
+ id: z.core.$ZodBranded<z.ZodUUID, "NotificationId", "out">;
22
+ imageUrl: z.ZodNullable<z.ZodString>;
23
+ link: z.ZodUnion<readonly [z.ZodObject<{
24
+ type: z.ZodLiteral<"event">;
25
+ eventId: z.core.$ZodBranded<z.ZodUUID, "EventId", "out">;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ type: z.ZodLiteral<"favorites">;
28
+ }, z.core.$strip>, z.ZodNull]>;
29
+ tag: z.ZodNullable<z.ZodEnum<{
30
+ cancelled: "cancelled";
31
+ feature: "feature";
32
+ postponed: "postponed";
33
+ reminder: "reminder";
34
+ }>>;
35
+ title: z.ZodNullable<z.ZodString>;
36
+ }, z.core.$strip>;
37
+ export type NotificationDTO = z.infer<typeof NotificationDTOSchema>;
38
+ //# sourceMappingURL=notification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification.d.ts","sourceRoot":"","sources":["../../../src/V1/api/notification.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,wBAAwB;;;;;EAA4D,CAAC;AAClG,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEvE,eAAO,MAAM,yBAAyB;;;;;8BAIpC,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;iBAUhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
@@ -8,7 +8,9 @@ export declare const TopEventDTOSchema: z.ZodObject<{
8
8
  export declare const AdStatDTOSchema: z.ZodObject<{
9
9
  adId: z.ZodUnion<readonly [z.core.$ZodBranded<z.ZodUUID, "MainAdId", "out">, z.core.$ZodBranded<z.ZodUUID, "RegionalAdId", "out">]>;
10
10
  adTitle: z.ZodString;
11
+ isActive: z.ZodBoolean;
11
12
  pressedCount: z.ZodNumber;
13
+ regions: z.ZodNullable<z.ZodArray<z.ZodEnum<typeof import('../../shared').Region>>>;
12
14
  }, z.core.$strip>;
13
15
  export declare const EventStatisticsDTOSchema: z.ZodObject<{
14
16
  addedToCalendarCount: z.ZodFloat32;
@@ -22,7 +24,9 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
22
24
  allAdsStats: z.ZodArray<z.ZodObject<{
23
25
  adId: z.ZodUnion<readonly [z.core.$ZodBranded<z.ZodUUID, "MainAdId", "out">, z.core.$ZodBranded<z.ZodUUID, "RegionalAdId", "out">]>;
24
26
  adTitle: z.ZodString;
27
+ isActive: z.ZodBoolean;
25
28
  pressedCount: z.ZodNumber;
29
+ regions: z.ZodNullable<z.ZodArray<z.ZodEnum<typeof import('../../shared').Region>>>;
26
30
  }, z.core.$strip>>;
27
31
  eventsCount: z.ZodNumber;
28
32
  openedEventsCount: z.ZodNumber;
@@ -1 +1 @@
1
- {"version":3,"file":"statistics.d.ts","sourceRoot":"","sources":["../../../src/V1/api/statistics.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAgC,eAAe,EAAgB,MAAM,cAAc,CAAC;AAG3F,eAAO,MAAM,iBAAiB;;;;iBAI5B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;iBAI1B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;iBAOnC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgB/B,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;iBAWrC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;kBAAqC,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
1
+ {"version":3,"file":"statistics.d.ts","sourceRoot":"","sources":["../../../src/V1/api/statistics.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAA8C,eAAe,EAAgB,MAAM,cAAc,CAAC;AAGzG,eAAO,MAAM,iBAAiB;;;;iBAI5B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;iBAM1B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;iBAOnC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgB/B,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;iBAWrC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;kBAAqC,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
@@ -4546,6 +4546,8 @@ const RegionalAdIdSchema = UUIDSchema.brand("RegionalAdId");
4546
4546
  const createRegionalAdId = (id = crypto.randomUUID()) => RegionalAdIdSchema.parse(id);
4547
4547
  const ImportReminderIdSchema = UUIDSchema.brand("ImportReminderId");
4548
4548
  const createImportReminderId = (id = crypto.randomUUID()) => ImportReminderIdSchema.parse(id);
4549
+ const NotificationIdSchema = UUIDSchema.brand("NotificationId");
4550
+ const createNotificationId = (id = crypto.randomUUID()) => NotificationIdSchema.parse(id);
4549
4551
  const MainAdDTOSchema = object({
4550
4552
  createdAt: datetime(),
4551
4553
  endTime: StringSchema,
@@ -4704,6 +4706,23 @@ const ImportReminderDTOSchema = object({
4704
4706
  });
4705
4707
  const CreateImportReminderDTOSchema = ImportReminderDTOSchema;
4706
4708
  const UpdateImportReminderDTOSchema = ImportReminderDTOSchema.omit({ id: true }).partial();
4709
+ const NotificationTagDTOSchema = _enum(["cancelled", "feature", "postponed", "reminder"]);
4710
+ const NotificationLinkDTOSchema = union([
4711
+ object({ type: literal("event"), eventId: EventIdSchema }),
4712
+ object({ type: literal("favorites") }),
4713
+ _null()
4714
+ ]);
4715
+ const NotificationDTOSchema = object({
4716
+ author: StringSchema.nullable(),
4717
+ authorImageUrl: URLSchema.nullable(),
4718
+ content: StringSchema.nullable(),
4719
+ createdAt: string(),
4720
+ id: NotificationIdSchema,
4721
+ imageUrl: URLSchema.nullable(),
4722
+ link: NotificationLinkDTOSchema,
4723
+ tag: NotificationTagDTOSchema.nullable(),
4724
+ title: StringSchema.nullable()
4725
+ });
4707
4726
  const PublicOrganizerDTOSchema = object({
4708
4727
  id: OrganizerIdSchema,
4709
4728
  imageUrl: URLSchema.nullable(),
@@ -4749,7 +4768,9 @@ const TopEventDTOSchema = object({
4749
4768
  const AdStatDTOSchema = object({
4750
4769
  adId: union([MainAdIdSchema, RegionalAdIdSchema]),
4751
4770
  adTitle: StringSchema,
4752
- pressedCount: number()
4771
+ isActive: boolean(),
4772
+ pressedCount: number(),
4773
+ regions: RegionSchema.array().nullable()
4753
4774
  });
4754
4775
  const EventStatisticsDTOSchema = object({
4755
4776
  addedToCalendarCount: SafeNonNegativeIntegerSchema,
@@ -4815,6 +4836,9 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
4815
4836
  ImportFromUrlDTOSchema,
4816
4837
  ImportReminderDTOSchema,
4817
4838
  MainAdDTOSchema,
4839
+ NotificationDTOSchema,
4840
+ NotificationLinkDTOSchema,
4841
+ NotificationTagDTOSchema,
4818
4842
  OrganizerDTOSchema,
4819
4843
  PublicEventDTOSchema,
4820
4844
  PublicOrganizerDTOSchema,
@@ -4868,6 +4892,7 @@ exports.ImportReminderFrequency = ImportReminderFrequency;
4868
4892
  exports.ImportReminderFrequencySchema = ImportReminderFrequencySchema;
4869
4893
  exports.ImportReminderIdSchema = ImportReminderIdSchema;
4870
4894
  exports.MainAdIdSchema = MainAdIdSchema;
4895
+ exports.NotificationIdSchema = NotificationIdSchema;
4871
4896
  exports.OldTimesFilterAppliedStatisticSchema = OldTimesFilterAppliedStatisticSchema;
4872
4897
  exports.OrganizerDisplayedStatisticSchema = OrganizerDisplayedStatisticSchema;
4873
4898
  exports.OrganizerIdSchema = OrganizerIdSchema;
@@ -4886,6 +4911,7 @@ exports.V1 = index;
4886
4911
  exports.createEventId = createEventId;
4887
4912
  exports.createImportReminderId = createImportReminderId;
4888
4913
  exports.createMainAdId = createMainAdId;
4914
+ exports.createNotificationId = createNotificationId;
4889
4915
  exports.createOrganizerId = createOrganizerId;
4890
4916
  exports.createRegionalAdId = createRegionalAdId;
4891
4917
  exports.createUserId = createUserId;
@@ -4544,6 +4544,8 @@ const RegionalAdIdSchema = UUIDSchema.brand("RegionalAdId");
4544
4544
  const createRegionalAdId = (id = crypto.randomUUID()) => RegionalAdIdSchema.parse(id);
4545
4545
  const ImportReminderIdSchema = UUIDSchema.brand("ImportReminderId");
4546
4546
  const createImportReminderId = (id = crypto.randomUUID()) => ImportReminderIdSchema.parse(id);
4547
+ const NotificationIdSchema = UUIDSchema.brand("NotificationId");
4548
+ const createNotificationId = (id = crypto.randomUUID()) => NotificationIdSchema.parse(id);
4547
4549
  const MainAdDTOSchema = object({
4548
4550
  createdAt: datetime(),
4549
4551
  endTime: StringSchema,
@@ -4702,6 +4704,23 @@ const ImportReminderDTOSchema = object({
4702
4704
  });
4703
4705
  const CreateImportReminderDTOSchema = ImportReminderDTOSchema;
4704
4706
  const UpdateImportReminderDTOSchema = ImportReminderDTOSchema.omit({ id: true }).partial();
4707
+ const NotificationTagDTOSchema = _enum(["cancelled", "feature", "postponed", "reminder"]);
4708
+ const NotificationLinkDTOSchema = union([
4709
+ object({ type: literal("event"), eventId: EventIdSchema }),
4710
+ object({ type: literal("favorites") }),
4711
+ _null()
4712
+ ]);
4713
+ const NotificationDTOSchema = object({
4714
+ author: StringSchema.nullable(),
4715
+ authorImageUrl: URLSchema.nullable(),
4716
+ content: StringSchema.nullable(),
4717
+ createdAt: string(),
4718
+ id: NotificationIdSchema,
4719
+ imageUrl: URLSchema.nullable(),
4720
+ link: NotificationLinkDTOSchema,
4721
+ tag: NotificationTagDTOSchema.nullable(),
4722
+ title: StringSchema.nullable()
4723
+ });
4705
4724
  const PublicOrganizerDTOSchema = object({
4706
4725
  id: OrganizerIdSchema,
4707
4726
  imageUrl: URLSchema.nullable(),
@@ -4747,7 +4766,9 @@ const TopEventDTOSchema = object({
4747
4766
  const AdStatDTOSchema = object({
4748
4767
  adId: union([MainAdIdSchema, RegionalAdIdSchema]),
4749
4768
  adTitle: StringSchema,
4750
- pressedCount: number()
4769
+ isActive: boolean(),
4770
+ pressedCount: number(),
4771
+ regions: RegionSchema.array().nullable()
4751
4772
  });
4752
4773
  const EventStatisticsDTOSchema = object({
4753
4774
  addedToCalendarCount: SafeNonNegativeIntegerSchema,
@@ -4813,6 +4834,9 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
4813
4834
  ImportFromUrlDTOSchema,
4814
4835
  ImportReminderDTOSchema,
4815
4836
  MainAdDTOSchema,
4837
+ NotificationDTOSchema,
4838
+ NotificationLinkDTOSchema,
4839
+ NotificationTagDTOSchema,
4816
4840
  OrganizerDTOSchema,
4817
4841
  PublicEventDTOSchema,
4818
4842
  PublicOrganizerDTOSchema,
@@ -4867,6 +4891,7 @@ export {
4867
4891
  ImportReminderFrequencySchema,
4868
4892
  ImportReminderIdSchema,
4869
4893
  MainAdIdSchema,
4894
+ NotificationIdSchema,
4870
4895
  OldTimesFilterAppliedStatisticSchema,
4871
4896
  OrganizerDisplayedStatisticSchema,
4872
4897
  OrganizerIdSchema,
@@ -4885,6 +4910,7 @@ export {
4885
4910
  createEventId,
4886
4911
  createImportReminderId,
4887
4912
  createMainAdId,
4913
+ createNotificationId,
4888
4914
  createOrganizerId,
4889
4915
  createRegionalAdId,
4890
4916
  createUserId
package/dist/flavors.d.ts CHANGED
@@ -17,4 +17,7 @@ export declare const createRegionalAdId: (id?: string) => RegionalAdId;
17
17
  export declare const ImportReminderIdSchema: z.core.$ZodBranded<z.ZodUUID, "ImportReminderId", "out">;
18
18
  export type ImportReminderId = z.infer<typeof ImportReminderIdSchema>;
19
19
  export declare const createImportReminderId: (id?: string) => ImportReminderId;
20
+ export declare const NotificationIdSchema: z.core.$ZodBranded<z.ZodUUID, "NotificationId", "out">;
21
+ export type NotificationId = z.infer<typeof NotificationIdSchema>;
22
+ export declare const createNotificationId: (id?: string) => NotificationId;
20
23
  //# sourceMappingURL=flavors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"flavors.d.ts","sourceRoot":"","sources":["../src/flavors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,aAAa,iDAA8B,CAAC;AACzD,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,aAAa,QAAQ,MAAM,KAAyB,OAAkC,CAAC;AAEpG,eAAO,MAAM,iBAAiB,qDAAkC,CAAC;AACjE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB,QAAQ,MAAM,KAAyB,WAA0C,CAAC;AAEhH,eAAO,MAAM,YAAY,gDAA6B,CAAC;AACvD,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD,eAAO,MAAM,YAAY,QAAQ,MAAM,KAAyB,MAAgC,CAAC;AAEjG,eAAO,MAAM,cAAc,kDAA+B,CAAC;AAC3D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,cAAc,QAAQ,MAAM,KAAyB,QAAoC,CAAC;AAEvG,eAAO,MAAM,kBAAkB,sDAAmC,CAAC;AACnE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,kBAAkB,QAAQ,MAAM,KAAyB,YAA4C,CAAC;AAEnH,eAAO,MAAM,sBAAsB,0DAAuC,CAAC;AAC3E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB,QAAQ,MAAM,KAAyB,gBACxC,CAAC"}
1
+ {"version":3,"file":"flavors.d.ts","sourceRoot":"","sources":["../src/flavors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,aAAa,iDAA8B,CAAC;AACzD,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,aAAa,QAAQ,MAAM,KAAyB,OAAkC,CAAC;AAEpG,eAAO,MAAM,iBAAiB,qDAAkC,CAAC;AACjE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB,QAAQ,MAAM,KAAyB,WAA0C,CAAC;AAEhH,eAAO,MAAM,YAAY,gDAA6B,CAAC;AACvD,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD,eAAO,MAAM,YAAY,QAAQ,MAAM,KAAyB,MAAgC,CAAC;AAEjG,eAAO,MAAM,cAAc,kDAA+B,CAAC;AAC3D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,cAAc,QAAQ,MAAM,KAAyB,QAAoC,CAAC;AAEvG,eAAO,MAAM,kBAAkB,sDAAmC,CAAC;AACnE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,kBAAkB,QAAQ,MAAM,KAAyB,YAA4C,CAAC;AAEnH,eAAO,MAAM,sBAAsB,0DAAuC,CAAC;AAC3E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB,QAAQ,MAAM,KAAyB,gBACxC,CAAC;AAEnC,eAAO,MAAM,oBAAoB,wDAAqC,CAAC;AACvE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,oBAAoB,QAAQ,MAAM,KAAyB,cACxC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sortipei/api-contracts",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "license": "UNLICENCED",
5
5
  "main": "dist/api-contracts.js",
6
6
  "module": "dist/api-contracts.mjs",