@sortipei/api-contracts 0.2.6 → 0.2.8
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/ad.d.ts +28 -28
- package/dist/V1/api/event.d.ts +60 -60
- package/dist/V1/api/import-reminder.d.ts +9 -11
- package/dist/V1/api/import-reminder.d.ts.map +1 -1
- package/dist/V1/api/organizer.d.ts +2 -2
- package/dist/V1/api/statistics.d.ts +106 -106
- package/dist/V1/external/partial-imported-event.d.ts +23 -23
- package/dist/api-contracts.js +30 -0
- package/dist/api-contracts.mjs +30 -0
- package/dist/flavors.d.ts.map +1 -1
- package/dist/shared/import-reminder.d.ts +9 -0
- package/dist/shared/import-reminder.d.ts.map +1 -0
- package/dist/shared/index.d.ts +1 -0
- package/dist/shared/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
3
3
|
partialEventState: z.ZodObject<{
|
|
4
4
|
adress: z.ZodOptional<z.ZodString>;
|
|
5
5
|
capacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
-
category: z.ZodOptional<z.ZodNativeEnum<typeof import(
|
|
6
|
+
category: z.ZodOptional<z.ZodNativeEnum<typeof import('../../shared').Category>>;
|
|
7
7
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8
8
|
description: z.ZodOptional<z.ZodString>;
|
|
9
9
|
externalSourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29,8 +29,8 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
29
29
|
isPromoted: z.ZodOptional<z.ZodBoolean>;
|
|
30
30
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
31
|
price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32
|
-
regions: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof import(
|
|
33
|
-
secondaryCategory: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import(
|
|
32
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof import('../../shared').Region>, "many">>;
|
|
33
|
+
secondaryCategory: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import('../../shared').Category>>>;
|
|
34
34
|
startTime: z.ZodOptional<z.ZodString>;
|
|
35
35
|
thumbnailUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
ticketsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -49,14 +49,15 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
49
49
|
name: string;
|
|
50
50
|
}>, "many">>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
|
|
52
|
+
regions?: import('../../shared').Region[] | undefined;
|
|
53
|
+
category?: import('../../shared').Category | undefined;
|
|
53
54
|
startTime?: string | undefined;
|
|
54
|
-
|
|
55
|
+
createdAt?: string | undefined;
|
|
55
56
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
57
|
+
link?: string | null | undefined;
|
|
56
58
|
title?: string | undefined;
|
|
57
59
|
adress?: string | undefined;
|
|
58
60
|
capacity?: number | null | undefined;
|
|
59
|
-
createdAt?: string | undefined;
|
|
60
61
|
description?: string | undefined;
|
|
61
62
|
externalSourceId?: string | null | undefined;
|
|
62
63
|
finishTime?: string | null | undefined;
|
|
@@ -72,9 +73,8 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
72
73
|
isOldTimes?: boolean | undefined;
|
|
73
74
|
isPriceRange?: boolean | undefined;
|
|
74
75
|
isPromoted?: boolean | undefined;
|
|
75
|
-
link?: string | null | undefined;
|
|
76
76
|
price?: number | null | undefined;
|
|
77
|
-
secondaryCategory?: import(
|
|
77
|
+
secondaryCategory?: import('../../shared').Category | null | undefined;
|
|
78
78
|
thumbnailUrl?: string | null | undefined;
|
|
79
79
|
ticketsUrl?: string | null | undefined;
|
|
80
80
|
organizers?: {
|
|
@@ -83,14 +83,15 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
83
83
|
name: string;
|
|
84
84
|
}[] | undefined;
|
|
85
85
|
}, {
|
|
86
|
-
|
|
86
|
+
regions?: import('../../shared').Region[] | undefined;
|
|
87
|
+
category?: import('../../shared').Category | undefined;
|
|
87
88
|
startTime?: string | undefined;
|
|
88
|
-
|
|
89
|
+
createdAt?: string | undefined;
|
|
89
90
|
id?: string | undefined;
|
|
91
|
+
link?: string | null | undefined;
|
|
90
92
|
title?: string | undefined;
|
|
91
93
|
adress?: string | undefined;
|
|
92
94
|
capacity?: number | null | undefined;
|
|
93
|
-
createdAt?: string | undefined;
|
|
94
95
|
description?: string | undefined;
|
|
95
96
|
externalSourceId?: string | null | undefined;
|
|
96
97
|
finishTime?: string | null | undefined;
|
|
@@ -106,9 +107,8 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
106
107
|
isOldTimes?: boolean | undefined;
|
|
107
108
|
isPriceRange?: boolean | undefined;
|
|
108
109
|
isPromoted?: boolean | undefined;
|
|
109
|
-
link?: string | null | undefined;
|
|
110
110
|
price?: number | null | undefined;
|
|
111
|
-
secondaryCategory?: import(
|
|
111
|
+
secondaryCategory?: import('../../shared').Category | null | undefined;
|
|
112
112
|
thumbnailUrl?: string | null | undefined;
|
|
113
113
|
ticketsUrl?: string | null | undefined;
|
|
114
114
|
organizers?: {
|
|
@@ -125,14 +125,15 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
125
125
|
userId: string;
|
|
126
126
|
organizersNames: string[];
|
|
127
127
|
partialEventState: {
|
|
128
|
-
|
|
128
|
+
regions?: import('../../shared').Region[] | undefined;
|
|
129
|
+
category?: import('../../shared').Category | undefined;
|
|
129
130
|
startTime?: string | undefined;
|
|
130
|
-
|
|
131
|
+
createdAt?: string | undefined;
|
|
131
132
|
id?: (string & z.BRAND<"EventId">) | undefined;
|
|
133
|
+
link?: string | null | undefined;
|
|
132
134
|
title?: string | undefined;
|
|
133
135
|
adress?: string | undefined;
|
|
134
136
|
capacity?: number | null | undefined;
|
|
135
|
-
createdAt?: string | undefined;
|
|
136
137
|
description?: string | undefined;
|
|
137
138
|
externalSourceId?: string | null | undefined;
|
|
138
139
|
finishTime?: string | null | undefined;
|
|
@@ -148,9 +149,8 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
148
149
|
isOldTimes?: boolean | undefined;
|
|
149
150
|
isPriceRange?: boolean | undefined;
|
|
150
151
|
isPromoted?: boolean | undefined;
|
|
151
|
-
link?: string | null | undefined;
|
|
152
152
|
price?: number | null | undefined;
|
|
153
|
-
secondaryCategory?: import(
|
|
153
|
+
secondaryCategory?: import('../../shared').Category | null | undefined;
|
|
154
154
|
thumbnailUrl?: string | null | undefined;
|
|
155
155
|
ticketsUrl?: string | null | undefined;
|
|
156
156
|
organizers?: {
|
|
@@ -165,14 +165,15 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
165
165
|
userId: string;
|
|
166
166
|
organizersNames: string[];
|
|
167
167
|
partialEventState: {
|
|
168
|
-
|
|
168
|
+
regions?: import('../../shared').Region[] | undefined;
|
|
169
|
+
category?: import('../../shared').Category | undefined;
|
|
169
170
|
startTime?: string | undefined;
|
|
170
|
-
|
|
171
|
+
createdAt?: string | undefined;
|
|
171
172
|
id?: string | undefined;
|
|
173
|
+
link?: string | null | undefined;
|
|
172
174
|
title?: string | undefined;
|
|
173
175
|
adress?: string | undefined;
|
|
174
176
|
capacity?: number | null | undefined;
|
|
175
|
-
createdAt?: string | undefined;
|
|
176
177
|
description?: string | undefined;
|
|
177
178
|
externalSourceId?: string | null | undefined;
|
|
178
179
|
finishTime?: string | null | undefined;
|
|
@@ -188,9 +189,8 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
188
189
|
isOldTimes?: boolean | undefined;
|
|
189
190
|
isPriceRange?: boolean | undefined;
|
|
190
191
|
isPromoted?: boolean | undefined;
|
|
191
|
-
link?: string | null | undefined;
|
|
192
192
|
price?: number | null | undefined;
|
|
193
|
-
secondaryCategory?: import(
|
|
193
|
+
secondaryCategory?: import('../../shared').Category | null | undefined;
|
|
194
194
|
thumbnailUrl?: string | null | undefined;
|
|
195
195
|
ticketsUrl?: string | null | undefined;
|
|
196
196
|
organizers?: {
|
package/dist/api-contracts.js
CHANGED
|
@@ -4203,6 +4203,14 @@ const StatisticSchema = z.discriminatedUnion("type", [
|
|
|
4203
4203
|
OrganizerDisplayedStatisticSchema,
|
|
4204
4204
|
RegionFilterAppliedStatisticSchema
|
|
4205
4205
|
]);
|
|
4206
|
+
var ImportReminderFrequency = /* @__PURE__ */ ((ImportReminderFrequency2) => {
|
|
4207
|
+
ImportReminderFrequency2["TWO_DAYS"] = "TWO_DAYS";
|
|
4208
|
+
ImportReminderFrequency2["FOUR_DAYS"] = "FOUR_DAYS";
|
|
4209
|
+
ImportReminderFrequency2["ONE_WEEK"] = "ONE_WEEK";
|
|
4210
|
+
ImportReminderFrequency2["TWO_WEEKS"] = "TWO_WEEKS";
|
|
4211
|
+
return ImportReminderFrequency2;
|
|
4212
|
+
})(ImportReminderFrequency || {});
|
|
4213
|
+
const ImportReminderFrequencySchema = z.nativeEnum(ImportReminderFrequency);
|
|
4206
4214
|
const EventIdSchema = UUIDSchema.brand("EventId");
|
|
4207
4215
|
const createEventId = (id = crypto.randomUUID()) => EventIdSchema.parse(id);
|
|
4208
4216
|
const OrganizerIdSchema = UUIDSchema.brand("OrganizerId");
|
|
@@ -4213,6 +4221,8 @@ const MainAdIdSchema = UUIDSchema.brand("MainAdId");
|
|
|
4213
4221
|
const createMainAdId = (id = crypto.randomUUID()) => MainAdIdSchema.parse(id);
|
|
4214
4222
|
const RegionalAdIdSchema = UUIDSchema.brand("RegionalAdId");
|
|
4215
4223
|
const createRegionalAdId = (id = crypto.randomUUID()) => RegionalAdIdSchema.parse(id);
|
|
4224
|
+
const ImportReminderIdSchema = UUIDSchema.brand("ImportReminderId");
|
|
4225
|
+
const createImportReminderId = (id = crypto.randomUUID()) => ImportReminderIdSchema.parse(id);
|
|
4216
4226
|
const MainAdDTOSchema = z.object({
|
|
4217
4227
|
createdAt: StringSchema.datetime(),
|
|
4218
4228
|
endTime: StringSchema,
|
|
@@ -4353,6 +4363,18 @@ const EventFileUploadDTOSchema = z.object({
|
|
|
4353
4363
|
const ImportFromUrlDTOSchema = z.object({
|
|
4354
4364
|
url: URLSchema
|
|
4355
4365
|
});
|
|
4366
|
+
const ExtractedDatesDTOSchema = z.object({
|
|
4367
|
+
startTime: z.string().datetime(),
|
|
4368
|
+
finishTime: z.string().datetime().nullable()
|
|
4369
|
+
});
|
|
4370
|
+
const ImportReminderDTOSchema = z.object({
|
|
4371
|
+
frequency: ImportReminderFrequencySchema,
|
|
4372
|
+
id: ImportReminderIdSchema,
|
|
4373
|
+
title: StringSchema,
|
|
4374
|
+
url: URLSchema
|
|
4375
|
+
});
|
|
4376
|
+
const CreateImportReminderDTOSchema = ImportReminderDTOSchema;
|
|
4377
|
+
const UpdateImportReminderDTOSchema = ImportReminderDTOSchema.omit({ id: true }).partial();
|
|
4356
4378
|
const OrganizerDTOSchema = z.object({
|
|
4357
4379
|
eventsIds: EventIdSchema.array(),
|
|
4358
4380
|
id: OrganizerIdSchema,
|
|
@@ -4419,16 +4441,19 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
4419
4441
|
AdStatDTOSchema,
|
|
4420
4442
|
AppConfigurationDTOSchema,
|
|
4421
4443
|
CreateEventDTOSchema,
|
|
4444
|
+
CreateImportReminderDTOSchema,
|
|
4422
4445
|
CreateOrganizerDTOSchema,
|
|
4423
4446
|
DisplayEventDTOSchema,
|
|
4424
4447
|
EventDTOSchema,
|
|
4425
4448
|
EventFileUploadDTOSchema,
|
|
4426
4449
|
EventStatisticsDTOSchema,
|
|
4450
|
+
ExtractedDatesDTOSchema,
|
|
4427
4451
|
FileUploadDTOSchema,
|
|
4428
4452
|
GPSCoordinatesSchema,
|
|
4429
4453
|
GlobalStatsDTOSchema,
|
|
4430
4454
|
ImportDTOSchema,
|
|
4431
4455
|
ImportFromUrlDTOSchema,
|
|
4456
|
+
ImportReminderDTOSchema,
|
|
4432
4457
|
MainAdDTOSchema,
|
|
4433
4458
|
OrganizerDTOSchema,
|
|
4434
4459
|
PromoteEventDTOSchema,
|
|
@@ -4437,6 +4462,7 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
4437
4462
|
TopEventDTOSchema,
|
|
4438
4463
|
UpdateAppConfigurationDTOSchema,
|
|
4439
4464
|
UpdateEventDTOSchema,
|
|
4465
|
+
UpdateImportReminderDTOSchema,
|
|
4440
4466
|
UpdateMainAdDTOSchema,
|
|
4441
4467
|
UpdateOrganizerDTOSchema,
|
|
4442
4468
|
UpdateRegionalAdDTOSchema,
|
|
@@ -4475,6 +4501,9 @@ exports.EventSeeMoreClickedStatisticsSchema = EventSeeMoreClickedStatisticsSchem
|
|
|
4475
4501
|
exports.EventSharedStatisticSchema = EventSharedStatisticSchema;
|
|
4476
4502
|
exports.EventTicketsClickedStatisticsSchema = EventTicketsClickedStatisticsSchema;
|
|
4477
4503
|
exports.FreeFilterAppliedStatisticSchema = FreeFilterAppliedStatisticSchema;
|
|
4504
|
+
exports.ImportReminderFrequency = ImportReminderFrequency;
|
|
4505
|
+
exports.ImportReminderFrequencySchema = ImportReminderFrequencySchema;
|
|
4506
|
+
exports.ImportReminderIdSchema = ImportReminderIdSchema;
|
|
4478
4507
|
exports.MainAdIdSchema = MainAdIdSchema;
|
|
4479
4508
|
exports.OldTimesFilterAppliedStatisticSchema = OldTimesFilterAppliedStatisticSchema;
|
|
4480
4509
|
exports.OrganizerDisplayedStatisticSchema = OrganizerDisplayedStatisticSchema;
|
|
@@ -4492,6 +4521,7 @@ exports.UUIDSchema = UUIDSchema;
|
|
|
4492
4521
|
exports.UserIdSchema = UserIdSchema;
|
|
4493
4522
|
exports.V1 = index;
|
|
4494
4523
|
exports.createEventId = createEventId;
|
|
4524
|
+
exports.createImportReminderId = createImportReminderId;
|
|
4495
4525
|
exports.createMainAdId = createMainAdId;
|
|
4496
4526
|
exports.createOrganizerId = createOrganizerId;
|
|
4497
4527
|
exports.createRegionalAdId = createRegionalAdId;
|
package/dist/api-contracts.mjs
CHANGED
|
@@ -4201,6 +4201,14 @@ const StatisticSchema = z.discriminatedUnion("type", [
|
|
|
4201
4201
|
OrganizerDisplayedStatisticSchema,
|
|
4202
4202
|
RegionFilterAppliedStatisticSchema
|
|
4203
4203
|
]);
|
|
4204
|
+
var ImportReminderFrequency = /* @__PURE__ */ ((ImportReminderFrequency2) => {
|
|
4205
|
+
ImportReminderFrequency2["TWO_DAYS"] = "TWO_DAYS";
|
|
4206
|
+
ImportReminderFrequency2["FOUR_DAYS"] = "FOUR_DAYS";
|
|
4207
|
+
ImportReminderFrequency2["ONE_WEEK"] = "ONE_WEEK";
|
|
4208
|
+
ImportReminderFrequency2["TWO_WEEKS"] = "TWO_WEEKS";
|
|
4209
|
+
return ImportReminderFrequency2;
|
|
4210
|
+
})(ImportReminderFrequency || {});
|
|
4211
|
+
const ImportReminderFrequencySchema = z.nativeEnum(ImportReminderFrequency);
|
|
4204
4212
|
const EventIdSchema = UUIDSchema.brand("EventId");
|
|
4205
4213
|
const createEventId = (id = crypto.randomUUID()) => EventIdSchema.parse(id);
|
|
4206
4214
|
const OrganizerIdSchema = UUIDSchema.brand("OrganizerId");
|
|
@@ -4211,6 +4219,8 @@ const MainAdIdSchema = UUIDSchema.brand("MainAdId");
|
|
|
4211
4219
|
const createMainAdId = (id = crypto.randomUUID()) => MainAdIdSchema.parse(id);
|
|
4212
4220
|
const RegionalAdIdSchema = UUIDSchema.brand("RegionalAdId");
|
|
4213
4221
|
const createRegionalAdId = (id = crypto.randomUUID()) => RegionalAdIdSchema.parse(id);
|
|
4222
|
+
const ImportReminderIdSchema = UUIDSchema.brand("ImportReminderId");
|
|
4223
|
+
const createImportReminderId = (id = crypto.randomUUID()) => ImportReminderIdSchema.parse(id);
|
|
4214
4224
|
const MainAdDTOSchema = z.object({
|
|
4215
4225
|
createdAt: StringSchema.datetime(),
|
|
4216
4226
|
endTime: StringSchema,
|
|
@@ -4351,6 +4361,18 @@ const EventFileUploadDTOSchema = z.object({
|
|
|
4351
4361
|
const ImportFromUrlDTOSchema = z.object({
|
|
4352
4362
|
url: URLSchema
|
|
4353
4363
|
});
|
|
4364
|
+
const ExtractedDatesDTOSchema = z.object({
|
|
4365
|
+
startTime: z.string().datetime(),
|
|
4366
|
+
finishTime: z.string().datetime().nullable()
|
|
4367
|
+
});
|
|
4368
|
+
const ImportReminderDTOSchema = z.object({
|
|
4369
|
+
frequency: ImportReminderFrequencySchema,
|
|
4370
|
+
id: ImportReminderIdSchema,
|
|
4371
|
+
title: StringSchema,
|
|
4372
|
+
url: URLSchema
|
|
4373
|
+
});
|
|
4374
|
+
const CreateImportReminderDTOSchema = ImportReminderDTOSchema;
|
|
4375
|
+
const UpdateImportReminderDTOSchema = ImportReminderDTOSchema.omit({ id: true }).partial();
|
|
4354
4376
|
const OrganizerDTOSchema = z.object({
|
|
4355
4377
|
eventsIds: EventIdSchema.array(),
|
|
4356
4378
|
id: OrganizerIdSchema,
|
|
@@ -4417,16 +4439,19 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
4417
4439
|
AdStatDTOSchema,
|
|
4418
4440
|
AppConfigurationDTOSchema,
|
|
4419
4441
|
CreateEventDTOSchema,
|
|
4442
|
+
CreateImportReminderDTOSchema,
|
|
4420
4443
|
CreateOrganizerDTOSchema,
|
|
4421
4444
|
DisplayEventDTOSchema,
|
|
4422
4445
|
EventDTOSchema,
|
|
4423
4446
|
EventFileUploadDTOSchema,
|
|
4424
4447
|
EventStatisticsDTOSchema,
|
|
4448
|
+
ExtractedDatesDTOSchema,
|
|
4425
4449
|
FileUploadDTOSchema,
|
|
4426
4450
|
GPSCoordinatesSchema,
|
|
4427
4451
|
GlobalStatsDTOSchema,
|
|
4428
4452
|
ImportDTOSchema,
|
|
4429
4453
|
ImportFromUrlDTOSchema,
|
|
4454
|
+
ImportReminderDTOSchema,
|
|
4430
4455
|
MainAdDTOSchema,
|
|
4431
4456
|
OrganizerDTOSchema,
|
|
4432
4457
|
PromoteEventDTOSchema,
|
|
@@ -4435,6 +4460,7 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
4435
4460
|
TopEventDTOSchema,
|
|
4436
4461
|
UpdateAppConfigurationDTOSchema,
|
|
4437
4462
|
UpdateEventDTOSchema,
|
|
4463
|
+
UpdateImportReminderDTOSchema,
|
|
4438
4464
|
UpdateMainAdDTOSchema,
|
|
4439
4465
|
UpdateOrganizerDTOSchema,
|
|
4440
4466
|
UpdateRegionalAdDTOSchema,
|
|
@@ -4474,6 +4500,9 @@ export {
|
|
|
4474
4500
|
EventSharedStatisticSchema,
|
|
4475
4501
|
EventTicketsClickedStatisticsSchema,
|
|
4476
4502
|
FreeFilterAppliedStatisticSchema,
|
|
4503
|
+
ImportReminderFrequency,
|
|
4504
|
+
ImportReminderFrequencySchema,
|
|
4505
|
+
ImportReminderIdSchema,
|
|
4477
4506
|
MainAdIdSchema,
|
|
4478
4507
|
OldTimesFilterAppliedStatisticSchema,
|
|
4479
4508
|
OrganizerDisplayedStatisticSchema,
|
|
@@ -4491,6 +4520,7 @@ export {
|
|
|
4491
4520
|
UserIdSchema,
|
|
4492
4521
|
index as V1,
|
|
4493
4522
|
createEventId,
|
|
4523
|
+
createImportReminderId,
|
|
4494
4524
|
createMainAdId,
|
|
4495
4525
|
createOrganizerId,
|
|
4496
4526
|
createRegionalAdId,
|
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,sCAA8B,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,0CAAkC,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,qCAA6B,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,uCAA+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,2CAAmC,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,+CAAuC,CAAC;AAC3E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB,QAAQ,MAAM,KAAyB,
|
|
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,sCAA8B,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,0CAAkC,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,qCAA6B,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,uCAA+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,2CAAmC,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,+CAAuC,CAAC;AAC3E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB,QAAQ,MAAM,KAAyB,gBACxC,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare enum ImportReminderFrequency {
|
|
3
|
+
TWO_DAYS = "TWO_DAYS",
|
|
4
|
+
FOUR_DAYS = "FOUR_DAYS",
|
|
5
|
+
ONE_WEEK = "ONE_WEEK",
|
|
6
|
+
TWO_WEEKS = "TWO_WEEKS"
|
|
7
|
+
}
|
|
8
|
+
export declare const ImportReminderFrequencySchema: z.ZodNativeEnum<typeof ImportReminderFrequency>;
|
|
9
|
+
//# sourceMappingURL=import-reminder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"import-reminder.d.ts","sourceRoot":"","sources":["../../src/shared/import-reminder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,oBAAY,uBAAuB;IACjC,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,SAAS,cAAc;CACxB;AAED,eAAO,MAAM,6BAA6B,iDAAwC,CAAC"}
|
package/dist/shared/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/shared/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/shared/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC"}
|