@sortipei/api-contracts 0.2.3 → 0.2.4
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.
|
@@ -27,11 +27,26 @@ export declare const AdStatDTOSchema: z.ZodObject<{
|
|
|
27
27
|
pressedCount: number;
|
|
28
28
|
}>;
|
|
29
29
|
export declare const EventStatisticsDTOSchema: z.ZodObject<{
|
|
30
|
+
addedToCalendarCount: z.ZodNumber;
|
|
31
|
+
favoritesCount: z.ZodNumber;
|
|
30
32
|
openedCount: z.ZodNumber;
|
|
33
|
+
seeMoreClickedCount: z.ZodNumber;
|
|
34
|
+
sharedCount: z.ZodNumber;
|
|
35
|
+
ticketsUrlClickedCount: z.ZodNumber;
|
|
31
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
+
addedToCalendarCount: number;
|
|
38
|
+
favoritesCount: number;
|
|
32
39
|
openedCount: number;
|
|
40
|
+
seeMoreClickedCount: number;
|
|
41
|
+
sharedCount: number;
|
|
42
|
+
ticketsUrlClickedCount: number;
|
|
33
43
|
}, {
|
|
44
|
+
addedToCalendarCount: number;
|
|
45
|
+
favoritesCount: number;
|
|
34
46
|
openedCount: number;
|
|
47
|
+
seeMoreClickedCount: number;
|
|
48
|
+
sharedCount: number;
|
|
49
|
+
ticketsUrlClickedCount: number;
|
|
35
50
|
}>;
|
|
36
51
|
export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
37
52
|
allAdsStats: z.ZodArray<z.ZodObject<{
|
|
@@ -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;;;;;;;;;;;;EAI5B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;EAI1B,CAAC;AAEH,eAAO,MAAM,wBAAwB
|
|
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;;;;;;;;;;;;EAI5B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;EAI1B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe/B,CAAC;AAEH,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;AAE5D,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEjC,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"}
|
package/dist/api-contracts.js
CHANGED
|
@@ -4384,7 +4384,12 @@ const AdStatDTOSchema = z.object({
|
|
|
4384
4384
|
pressedCount: z.number()
|
|
4385
4385
|
});
|
|
4386
4386
|
const EventStatisticsDTOSchema = z.object({
|
|
4387
|
-
|
|
4387
|
+
addedToCalendarCount: SafeNonNegativeIntegerSchema,
|
|
4388
|
+
favoritesCount: SafeNonNegativeIntegerSchema,
|
|
4389
|
+
openedCount: SafeNonNegativeIntegerSchema,
|
|
4390
|
+
seeMoreClickedCount: SafeNonNegativeIntegerSchema,
|
|
4391
|
+
sharedCount: SafeNonNegativeIntegerSchema,
|
|
4392
|
+
ticketsUrlClickedCount: SafeNonNegativeIntegerSchema
|
|
4388
4393
|
});
|
|
4389
4394
|
const GlobalStatsDTOSchema = z.object({
|
|
4390
4395
|
allAdsStats: AdStatDTOSchema.array(),
|
package/dist/api-contracts.mjs
CHANGED
|
@@ -4382,7 +4382,12 @@ const AdStatDTOSchema = z.object({
|
|
|
4382
4382
|
pressedCount: z.number()
|
|
4383
4383
|
});
|
|
4384
4384
|
const EventStatisticsDTOSchema = z.object({
|
|
4385
|
-
|
|
4385
|
+
addedToCalendarCount: SafeNonNegativeIntegerSchema,
|
|
4386
|
+
favoritesCount: SafeNonNegativeIntegerSchema,
|
|
4387
|
+
openedCount: SafeNonNegativeIntegerSchema,
|
|
4388
|
+
seeMoreClickedCount: SafeNonNegativeIntegerSchema,
|
|
4389
|
+
sharedCount: SafeNonNegativeIntegerSchema,
|
|
4390
|
+
ticketsUrlClickedCount: SafeNonNegativeIntegerSchema
|
|
4386
4391
|
});
|
|
4387
4392
|
const GlobalStatsDTOSchema = z.object({
|
|
4388
4393
|
allAdsStats: AdStatDTOSchema.array(),
|