balendar 0.0.14 → 0.0.16

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.
@@ -121,23 +121,4 @@ export declare const MultiUserAvailabilitySchema: z.ZodArray<z.ZodObject<{
121
121
  }, z.core.$strip>>;
122
122
  }, z.core.$strip>>;
123
123
  export type MultiUserAvailability = z.infer<typeof MultiUserAvailabilitySchema>;
124
- /**
125
- * UserDateCheckOutput
126
- * The output schema for a high level availability check for a user.
127
- * This is used for quickly checking the availability of a user for a given date/date range.
128
- *
129
- * Example: We have a calendar picker UI where the user can select a date to check the availability for.
130
- * We want to indicate whether a specific date has any availability or not.
131
- * We don't need to know the exact availability times, just whether it's available or not.
132
- */
133
- export declare const UserDateCheckOutputSchema: z.ZodObject<{
134
- userId: z.ZodNumber;
135
- timeZone: z.ZodString;
136
- anyAvailability: z.ZodBoolean;
137
- availability: z.ZodObject<{
138
- date: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>;
139
- isAvailable: z.ZodBoolean;
140
- }, z.core.$strip>;
141
- bookingLocationId: z.ZodNumber;
142
- }, z.core.$strip>;
143
124
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balendar",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "module": "client.ts",
5
5
  "type": "module",
6
6
  "private": false,
@@ -27,7 +27,7 @@
27
27
  "typescript": "5.9.3"
28
28
  },
29
29
  "dependencies": {
30
- "@elysiajs/eden": "1.4.4",
31
- "elysia": "1.4.15"
30
+ "@elysiajs/eden": "1.4.5",
31
+ "elysia": "1.4.16"
32
32
  }
33
33
  }