@sortipei/api-contracts 0.5.0 → 0.6.0
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 +2 -2
- package/dist/V1/api/index.d.ts +1 -0
- package/dist/V1/api/index.d.ts.map +1 -1
- package/dist/V1/api/propose.d.ts +50 -0
- package/dist/V1/api/propose.d.ts.map +1 -0
- package/dist/api-contracts.js +39 -1
- package/dist/api-contracts.mjs +39 -1
- package/dist/flavors.d.ts +3 -0
- package/dist/flavors.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/V1/api/event.d.ts
CHANGED
|
@@ -107,7 +107,7 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
107
107
|
regions: z.ZodArray<z.ZodEnum<typeof import('../../shared').Region>>;
|
|
108
108
|
secondaryCategory: z.ZodNullable<z.ZodEnum<typeof import('../../shared').Category>>;
|
|
109
109
|
startTime: z.ZodISODateTime;
|
|
110
|
-
tagIds: z.ZodArray<z.core.$ZodBranded<z.ZodUUID, "TagId", "out"
|
|
110
|
+
tagIds: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodUUID, "TagId", "out">>>;
|
|
111
111
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
112
112
|
ticketsUrl: z.ZodNullable<z.ZodString>;
|
|
113
113
|
title: z.ZodString;
|
|
@@ -137,7 +137,7 @@ export declare const UpdateEventDTOSchema: z.ZodObject<{
|
|
|
137
137
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
138
138
|
ticketsUrl: z.ZodNullable<z.ZodString>;
|
|
139
139
|
organizersIds: z.ZodArray<z.core.$ZodBranded<z.ZodUUID, "OrganizerId", "out">>;
|
|
140
|
-
tagIds: z.ZodArray<z.core.$ZodBranded<z.ZodUUID, "TagId", "out"
|
|
140
|
+
tagIds: z.ZodDefault<z.ZodArray<z.core.$ZodBranded<z.ZodUUID, "TagId", "out">>>;
|
|
141
141
|
}, z.core.$strip>;
|
|
142
142
|
export declare const DisplayEventDTOSchema: z.ZodObject<{
|
|
143
143
|
isDisplayed: z.ZodBoolean;
|
package/dist/V1/api/index.d.ts
CHANGED
|
@@ -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,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,OAAO,CAAC;AAMtB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIvB,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,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,OAAO,CAAC;AAMtB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIvB,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const MinimalProposeEventDTOSchema: z.ZodObject<{
|
|
3
|
+
email: z.ZodString;
|
|
4
|
+
hasHandicapAccess: z.ZodBoolean;
|
|
5
|
+
link: z.ZodString;
|
|
6
|
+
promotionEnd: z.ZodNullable<z.ZodISODateTime>;
|
|
7
|
+
promotionStart: z.ZodNullable<z.ZodISODateTime>;
|
|
8
|
+
}, z.core.$strict>;
|
|
9
|
+
export declare const FullProposeEventDTOSchema: z.ZodObject<{
|
|
10
|
+
adress: z.ZodString;
|
|
11
|
+
description: z.ZodString;
|
|
12
|
+
email: z.ZodString;
|
|
13
|
+
finishTime: z.ZodNullable<z.ZodISODateTime>;
|
|
14
|
+
hasHandicapAccess: z.ZodBoolean;
|
|
15
|
+
link: z.ZodString;
|
|
16
|
+
organizerName: z.ZodString;
|
|
17
|
+
price: z.ZodFloat32;
|
|
18
|
+
promotionEnd: z.ZodNullable<z.ZodISODateTime>;
|
|
19
|
+
promotionStart: z.ZodNullable<z.ZodISODateTime>;
|
|
20
|
+
startTime: z.ZodISODateTime;
|
|
21
|
+
title: z.ZodString;
|
|
22
|
+
}, z.core.$strict>;
|
|
23
|
+
export declare const ProposeEventDTOSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
24
|
+
adress: z.ZodString;
|
|
25
|
+
description: z.ZodString;
|
|
26
|
+
email: z.ZodString;
|
|
27
|
+
finishTime: z.ZodNullable<z.ZodISODateTime>;
|
|
28
|
+
hasHandicapAccess: z.ZodBoolean;
|
|
29
|
+
link: z.ZodString;
|
|
30
|
+
organizerName: z.ZodString;
|
|
31
|
+
price: z.ZodFloat32;
|
|
32
|
+
promotionEnd: z.ZodNullable<z.ZodISODateTime>;
|
|
33
|
+
promotionStart: z.ZodNullable<z.ZodISODateTime>;
|
|
34
|
+
startTime: z.ZodISODateTime;
|
|
35
|
+
title: z.ZodString;
|
|
36
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
37
|
+
email: z.ZodString;
|
|
38
|
+
hasHandicapAccess: z.ZodBoolean;
|
|
39
|
+
link: z.ZodString;
|
|
40
|
+
promotionEnd: z.ZodNullable<z.ZodISODateTime>;
|
|
41
|
+
promotionStart: z.ZodNullable<z.ZodISODateTime>;
|
|
42
|
+
}, z.core.$strict>]>;
|
|
43
|
+
export declare const ProposeEventResponseDTOSchema: z.ZodObject<{
|
|
44
|
+
id: z.core.$ZodBranded<z.ZodUUID, "EventProposalId", "out">;
|
|
45
|
+
}, z.core.$strip>;
|
|
46
|
+
export type FullProposeEventDTO = z.infer<typeof FullProposeEventDTOSchema>;
|
|
47
|
+
export type MinimalProposeEventDTO = z.infer<typeof MinimalProposeEventDTOSchema>;
|
|
48
|
+
export type ProposeEventDTO = z.infer<typeof ProposeEventDTOSchema>;
|
|
49
|
+
export type ProposeEventResponseDTO = z.infer<typeof ProposeEventResponseDTOSchema>;
|
|
50
|
+
//# sourceMappingURL=propose.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"propose.d.ts","sourceRoot":"","sources":["../../../src/V1/api/propose.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAgBxB,eAAO,MAAM,4BAA4B;;;;;;kBAS6B,CAAC;AAEvE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;kBAgBgC,CAAC;AAEvE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;oBAAqE,CAAC;AAExG,eAAO,MAAM,6BAA6B;;iBAExC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAClF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC"}
|
package/dist/api-contracts.js
CHANGED
|
@@ -4537,6 +4537,8 @@ var ImportReminderFrequency = /* @__PURE__ */ ((ImportReminderFrequency2) => {
|
|
|
4537
4537
|
const ImportReminderFrequencySchema = nativeEnum(ImportReminderFrequency);
|
|
4538
4538
|
const EventIdSchema = UUIDSchema.brand("EventId");
|
|
4539
4539
|
const createEventId = (id = crypto.randomUUID()) => EventIdSchema.parse(id);
|
|
4540
|
+
const EventProposalIdSchema = UUIDSchema.brand("EventProposalId");
|
|
4541
|
+
const createEventProposalId = (id = crypto.randomUUID()) => EventProposalIdSchema.parse(id);
|
|
4540
4542
|
const OrganizerIdSchema = UUIDSchema.brand("OrganizerId");
|
|
4541
4543
|
const createOrganizerId = (id = crypto.randomUUID()) => OrganizerIdSchema.parse(id);
|
|
4542
4544
|
const TagIdSchema = UUIDSchema.brand("TagId");
|
|
@@ -4676,7 +4678,7 @@ const CreateEventDTOSchema = object({
|
|
|
4676
4678
|
regions: RegionSchema.array(),
|
|
4677
4679
|
secondaryCategory: CategorySchema.nullable(),
|
|
4678
4680
|
startTime: datetime(),
|
|
4679
|
-
tagIds: TagIdSchema.array(),
|
|
4681
|
+
tagIds: TagIdSchema.array().default([]),
|
|
4680
4682
|
thumbnailUrl: URLSchema.nullable(),
|
|
4681
4683
|
ticketsUrl: URLSchema.nullable(),
|
|
4682
4684
|
title: StringSchema
|
|
@@ -4790,6 +4792,36 @@ const constraints$1 = {
|
|
|
4790
4792
|
maxLength: 100
|
|
4791
4793
|
}
|
|
4792
4794
|
};
|
|
4795
|
+
const bothPromotionDatesNullOrBothSet = (data) => data.promotionStart === null === (data.promotionEnd === null);
|
|
4796
|
+
const pairedPromotionDatesRefine = {
|
|
4797
|
+
message: "promotionStart and promotionEnd must both be null or both be set",
|
|
4798
|
+
path: ["promotionEnd"]
|
|
4799
|
+
};
|
|
4800
|
+
const MinimalProposeEventDTOSchema = object({
|
|
4801
|
+
email: StringSchema,
|
|
4802
|
+
hasHandicapAccess: boolean(),
|
|
4803
|
+
link: URLSchema,
|
|
4804
|
+
promotionEnd: datetime().nullable(),
|
|
4805
|
+
promotionStart: datetime().nullable()
|
|
4806
|
+
}).strict().refine(bothPromotionDatesNullOrBothSet, pairedPromotionDatesRefine);
|
|
4807
|
+
const FullProposeEventDTOSchema = object({
|
|
4808
|
+
adress: StringSchema,
|
|
4809
|
+
description: StringSchema,
|
|
4810
|
+
email: StringSchema,
|
|
4811
|
+
finishTime: datetime().nullable(),
|
|
4812
|
+
hasHandicapAccess: boolean(),
|
|
4813
|
+
link: URLSchema,
|
|
4814
|
+
organizerName: StringSchema,
|
|
4815
|
+
price: SafeNonNegativeFloatSchema,
|
|
4816
|
+
promotionEnd: datetime().nullable(),
|
|
4817
|
+
promotionStart: datetime().nullable(),
|
|
4818
|
+
startTime: datetime(),
|
|
4819
|
+
title: StringSchema
|
|
4820
|
+
}).strict().refine(bothPromotionDatesNullOrBothSet, pairedPromotionDatesRefine);
|
|
4821
|
+
const ProposeEventDTOSchema = union([FullProposeEventDTOSchema, MinimalProposeEventDTOSchema]);
|
|
4822
|
+
const ProposeEventResponseDTOSchema = object({
|
|
4823
|
+
id: EventProposalIdSchema
|
|
4824
|
+
});
|
|
4793
4825
|
const PushTokenPlatformSchema = _enum(["android", "ios"]);
|
|
4794
4826
|
const RegisterPushTokenDTOSchema = object({
|
|
4795
4827
|
expoPushToken: string().regex(/^ExponentPushToken\[.+\]$/),
|
|
@@ -4868,16 +4900,20 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
4868
4900
|
EventStatisticsDTOSchema,
|
|
4869
4901
|
ExtractedDatesDTOSchema,
|
|
4870
4902
|
FileUploadDTOSchema,
|
|
4903
|
+
FullProposeEventDTOSchema,
|
|
4871
4904
|
GPSCoordinatesSchema,
|
|
4872
4905
|
GlobalStatsDTOSchema,
|
|
4873
4906
|
ImportDTOSchema,
|
|
4874
4907
|
ImportFromUrlDTOSchema,
|
|
4875
4908
|
ImportReminderDTOSchema,
|
|
4876
4909
|
MainAdDTOSchema,
|
|
4910
|
+
MinimalProposeEventDTOSchema,
|
|
4877
4911
|
NotificationDTOSchema,
|
|
4878
4912
|
NotificationLinkDTOSchema,
|
|
4879
4913
|
NotificationTagDTOSchema,
|
|
4880
4914
|
OrganizerDTOSchema,
|
|
4915
|
+
ProposeEventDTOSchema,
|
|
4916
|
+
ProposeEventResponseDTOSchema,
|
|
4881
4917
|
PublicEventDTOSchema,
|
|
4882
4918
|
PublicOrganizerDTOSchema,
|
|
4883
4919
|
PushTokenPlatformSchema,
|
|
@@ -4925,6 +4961,7 @@ exports.EventAddedToCalendarStatisticSchema = EventAddedToCalendarStatisticSchem
|
|
|
4925
4961
|
exports.EventAddedToFavoritesStatisticSchema = EventAddedToFavoritesStatisticSchema;
|
|
4926
4962
|
exports.EventDisplayedStatisticSchema = EventDisplayedStatisticSchema;
|
|
4927
4963
|
exports.EventIdSchema = EventIdSchema;
|
|
4964
|
+
exports.EventProposalIdSchema = EventProposalIdSchema;
|
|
4928
4965
|
exports.EventSeeMoreClickedStatisticsSchema = EventSeeMoreClickedStatisticsSchema;
|
|
4929
4966
|
exports.EventSharedStatisticSchema = EventSharedStatisticSchema;
|
|
4930
4967
|
exports.EventTicketsClickedStatisticsSchema = EventTicketsClickedStatisticsSchema;
|
|
@@ -4952,6 +4989,7 @@ exports.UUIDSchema = UUIDSchema;
|
|
|
4952
4989
|
exports.UserIdSchema = UserIdSchema;
|
|
4953
4990
|
exports.V1 = index;
|
|
4954
4991
|
exports.createEventId = createEventId;
|
|
4992
|
+
exports.createEventProposalId = createEventProposalId;
|
|
4955
4993
|
exports.createImportReminderId = createImportReminderId;
|
|
4956
4994
|
exports.createMainAdId = createMainAdId;
|
|
4957
4995
|
exports.createNotificationId = createNotificationId;
|
package/dist/api-contracts.mjs
CHANGED
|
@@ -4535,6 +4535,8 @@ var ImportReminderFrequency = /* @__PURE__ */ ((ImportReminderFrequency2) => {
|
|
|
4535
4535
|
const ImportReminderFrequencySchema = nativeEnum(ImportReminderFrequency);
|
|
4536
4536
|
const EventIdSchema = UUIDSchema.brand("EventId");
|
|
4537
4537
|
const createEventId = (id = crypto.randomUUID()) => EventIdSchema.parse(id);
|
|
4538
|
+
const EventProposalIdSchema = UUIDSchema.brand("EventProposalId");
|
|
4539
|
+
const createEventProposalId = (id = crypto.randomUUID()) => EventProposalIdSchema.parse(id);
|
|
4538
4540
|
const OrganizerIdSchema = UUIDSchema.brand("OrganizerId");
|
|
4539
4541
|
const createOrganizerId = (id = crypto.randomUUID()) => OrganizerIdSchema.parse(id);
|
|
4540
4542
|
const TagIdSchema = UUIDSchema.brand("TagId");
|
|
@@ -4674,7 +4676,7 @@ const CreateEventDTOSchema = object({
|
|
|
4674
4676
|
regions: RegionSchema.array(),
|
|
4675
4677
|
secondaryCategory: CategorySchema.nullable(),
|
|
4676
4678
|
startTime: datetime(),
|
|
4677
|
-
tagIds: TagIdSchema.array(),
|
|
4679
|
+
tagIds: TagIdSchema.array().default([]),
|
|
4678
4680
|
thumbnailUrl: URLSchema.nullable(),
|
|
4679
4681
|
ticketsUrl: URLSchema.nullable(),
|
|
4680
4682
|
title: StringSchema
|
|
@@ -4788,6 +4790,36 @@ const constraints$1 = {
|
|
|
4788
4790
|
maxLength: 100
|
|
4789
4791
|
}
|
|
4790
4792
|
};
|
|
4793
|
+
const bothPromotionDatesNullOrBothSet = (data) => data.promotionStart === null === (data.promotionEnd === null);
|
|
4794
|
+
const pairedPromotionDatesRefine = {
|
|
4795
|
+
message: "promotionStart and promotionEnd must both be null or both be set",
|
|
4796
|
+
path: ["promotionEnd"]
|
|
4797
|
+
};
|
|
4798
|
+
const MinimalProposeEventDTOSchema = object({
|
|
4799
|
+
email: StringSchema,
|
|
4800
|
+
hasHandicapAccess: boolean(),
|
|
4801
|
+
link: URLSchema,
|
|
4802
|
+
promotionEnd: datetime().nullable(),
|
|
4803
|
+
promotionStart: datetime().nullable()
|
|
4804
|
+
}).strict().refine(bothPromotionDatesNullOrBothSet, pairedPromotionDatesRefine);
|
|
4805
|
+
const FullProposeEventDTOSchema = object({
|
|
4806
|
+
adress: StringSchema,
|
|
4807
|
+
description: StringSchema,
|
|
4808
|
+
email: StringSchema,
|
|
4809
|
+
finishTime: datetime().nullable(),
|
|
4810
|
+
hasHandicapAccess: boolean(),
|
|
4811
|
+
link: URLSchema,
|
|
4812
|
+
organizerName: StringSchema,
|
|
4813
|
+
price: SafeNonNegativeFloatSchema,
|
|
4814
|
+
promotionEnd: datetime().nullable(),
|
|
4815
|
+
promotionStart: datetime().nullable(),
|
|
4816
|
+
startTime: datetime(),
|
|
4817
|
+
title: StringSchema
|
|
4818
|
+
}).strict().refine(bothPromotionDatesNullOrBothSet, pairedPromotionDatesRefine);
|
|
4819
|
+
const ProposeEventDTOSchema = union([FullProposeEventDTOSchema, MinimalProposeEventDTOSchema]);
|
|
4820
|
+
const ProposeEventResponseDTOSchema = object({
|
|
4821
|
+
id: EventProposalIdSchema
|
|
4822
|
+
});
|
|
4791
4823
|
const PushTokenPlatformSchema = _enum(["android", "ios"]);
|
|
4792
4824
|
const RegisterPushTokenDTOSchema = object({
|
|
4793
4825
|
expoPushToken: string().regex(/^ExponentPushToken\[.+\]$/),
|
|
@@ -4866,16 +4898,20 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
4866
4898
|
EventStatisticsDTOSchema,
|
|
4867
4899
|
ExtractedDatesDTOSchema,
|
|
4868
4900
|
FileUploadDTOSchema,
|
|
4901
|
+
FullProposeEventDTOSchema,
|
|
4869
4902
|
GPSCoordinatesSchema,
|
|
4870
4903
|
GlobalStatsDTOSchema,
|
|
4871
4904
|
ImportDTOSchema,
|
|
4872
4905
|
ImportFromUrlDTOSchema,
|
|
4873
4906
|
ImportReminderDTOSchema,
|
|
4874
4907
|
MainAdDTOSchema,
|
|
4908
|
+
MinimalProposeEventDTOSchema,
|
|
4875
4909
|
NotificationDTOSchema,
|
|
4876
4910
|
NotificationLinkDTOSchema,
|
|
4877
4911
|
NotificationTagDTOSchema,
|
|
4878
4912
|
OrganizerDTOSchema,
|
|
4913
|
+
ProposeEventDTOSchema,
|
|
4914
|
+
ProposeEventResponseDTOSchema,
|
|
4879
4915
|
PublicEventDTOSchema,
|
|
4880
4916
|
PublicOrganizerDTOSchema,
|
|
4881
4917
|
PushTokenPlatformSchema,
|
|
@@ -4924,6 +4960,7 @@ export {
|
|
|
4924
4960
|
EventAddedToFavoritesStatisticSchema,
|
|
4925
4961
|
EventDisplayedStatisticSchema,
|
|
4926
4962
|
EventIdSchema,
|
|
4963
|
+
EventProposalIdSchema,
|
|
4927
4964
|
EventSeeMoreClickedStatisticsSchema,
|
|
4928
4965
|
EventSharedStatisticSchema,
|
|
4929
4966
|
EventTicketsClickedStatisticsSchema,
|
|
@@ -4951,6 +4988,7 @@ export {
|
|
|
4951
4988
|
UserIdSchema,
|
|
4952
4989
|
index as V1,
|
|
4953
4990
|
createEventId,
|
|
4991
|
+
createEventProposalId,
|
|
4954
4992
|
createImportReminderId,
|
|
4955
4993
|
createMainAdId,
|
|
4956
4994
|
createNotificationId,
|
package/dist/flavors.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const EventIdSchema: z.core.$ZodBranded<z.ZodUUID, "EventId", "out">;
|
|
3
3
|
export type EventId = z.infer<typeof EventIdSchema>;
|
|
4
4
|
export declare const createEventId: (id?: string) => EventId;
|
|
5
|
+
export declare const EventProposalIdSchema: z.core.$ZodBranded<z.ZodUUID, "EventProposalId", "out">;
|
|
6
|
+
export type EventProposalId = z.infer<typeof EventProposalIdSchema>;
|
|
7
|
+
export declare const createEventProposalId: (id?: string) => EventProposalId;
|
|
5
8
|
export declare const OrganizerIdSchema: z.core.$ZodBranded<z.ZodUUID, "OrganizerId", "out">;
|
|
6
9
|
export type OrganizerId = z.infer<typeof OrganizerIdSchema>;
|
|
7
10
|
export declare const createOrganizerId: (id?: string) => OrganizerId;
|
package/dist/flavors.d.ts.map
CHANGED
|
@@ -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,WAAW,+CAA4B,CAAC;AACrD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEhD,eAAO,MAAM,WAAW,QAAQ,MAAM,KAAyB,KAA8B,CAAC;AAE9F,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;AAEjC,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"}
|
|
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,qBAAqB,yDAAsC,CAAC;AACzE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,qBAAqB,QAAQ,MAAM,KAAyB,eACxC,CAAC;AAElC,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,WAAW,+CAA4B,CAAC;AACrD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEhD,eAAO,MAAM,WAAW,QAAQ,MAAM,KAAyB,KAA8B,CAAC;AAE9F,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;AAEjC,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"}
|