balendar 0.0.16 → 0.0.20

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.
@@ -73,12 +73,8 @@ export declare function createBalendar(config: BalendarConfig): {
73
73
  };
74
74
  fetch?: RequestInit | undefined;
75
75
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
76
- 500: {
77
- success: boolean;
78
- };
79
- 200: {
80
- success: boolean;
81
- };
76
+ 500: string;
77
+ 200: Response;
82
78
  422: {
83
79
  type: "validation";
84
80
  on: string;
@@ -461,6 +457,7 @@ export declare function createBalendar(config: BalendarConfig): {
461
457
  isAvailable?: boolean | undefined;
462
458
  dateFrom?: string | undefined;
463
459
  dateTo?: string | undefined;
460
+ excludeExpiredBefore?: string | undefined;
464
461
  }, options?: {
465
462
  headers?: Record<string, unknown> | undefined;
466
463
  query?: Record<string, unknown> | undefined;
@@ -3,4 +3,5 @@ export * from '../src/modules/calendar-mappings/calendar-mappings.domain.ts';
3
3
  export * from '../src/modules/event-mappings/event-mappings.domain.ts';
4
4
  export * from '../src/modules/events/events.domain.ts';
5
5
  export * from '../src/orchestrators/availability/availability.domain.ts';
6
+ export * from '../src/orchestrators/calendars/connections.domain.ts';
6
7
  export * from '../src/shared/schemas/index.ts';