@reservamos/browser-analytics 1.0.13 → 1.0.21

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.
@@ -1,6 +1,6 @@
1
1
  // Generated by dts-bundle-generator v9.5.1
2
2
 
3
- import { AnonymousProfile, CreateFrequentPassengersResponse, FrequentPassengersResponse, GetRecommendedSeatsPayload, GetRecommendedSeatsResponse, GetRecommendedTripsPayload, RecommendedPlacesResponse, RecommendedSeatsPayload, RecommendedSeatsResponse, RecommendedTripsResponse } from '@reservamos/js-api-client/core';
3
+ import { AnonymousProfile, CreateFrequentPassengersResponse, FrequentPassengersResponse, GetRecommendedSeatsPayload, GetRecommendedSeatsResponse, GetRecommendedTripsPayload, NoContentResponse, RecommendedPlacesResponse, RecommendedSeatsPayload, RecommendedSeatsResponse, RecommendedTripsResponse } from '@reservamos/js-api-client/core';
4
4
  import { z } from 'zod';
5
5
 
6
6
  declare const customEventSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
@@ -1105,6 +1105,19 @@ declare const CreateRecommendedSeatsSchema: z.ZodObject<{
1105
1105
  }>;
1106
1106
  export type CreateRecommendedSeatsSchemaProps = z.infer<typeof CreateRecommendedSeatsSchema>;
1107
1107
  declare function createRecommendedSeats(payload: RecommendedSeatsPayload): Promise<RecommendedSeatsResponse>;
1108
+ declare const DeleteFrequentPassengerSchema: z.ZodEffects<z.ZodObject<{
1109
+ passengerId: z.ZodString;
1110
+ }, "strip", z.ZodTypeAny, {
1111
+ passengerId: string;
1112
+ }, {
1113
+ passengerId: string;
1114
+ }>, {
1115
+ passengerId: string;
1116
+ }, {
1117
+ passengerId: string;
1118
+ }>;
1119
+ export type DeleteFrequentPassengerProps = z.infer<typeof DeleteFrequentPassengerSchema>;
1120
+ declare function deleteFrequentPassengers(payload: DeleteFrequentPassengerProps): Promise<NoContentResponse>;
1108
1121
  declare const GetRecommendedSeatsSchema: z.ZodObject<{
1109
1122
  bus_scheme: z.ZodObject<{
1110
1123
  bus: z.ZodArray<z.ZodArray<z.ZodArray<z.ZodObject<{
@@ -1259,6 +1272,7 @@ declare const analytics: {
1259
1272
  getRecommendedTrips: typeof getRecommendedTrips;
1260
1273
  createFrequentPassengers: typeof createFrequentPassengers;
1261
1274
  getFrequentPassengers: typeof getFrequentPassengers;
1275
+ deleteFrequentPassenger: typeof deleteFrequentPassengers;
1262
1276
  };
1263
1277
  track: {
1264
1278
  search: typeof trackSearch$1;