@propriety/court-calendar 1.0.16 → 1.0.17

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/dev/App.tsx CHANGED
@@ -40,7 +40,7 @@ function App() {
40
40
  </button>
41
41
  </div>
42
42
 
43
- <CCalendar apiKey={import.meta.env.VITE_CALENDAR_API_KEY || ''} activeUser={29} />
43
+ <CCalendar apiKey={import.meta.env.VITE_CALENDAR_API_KEY || ''} activeUser={27} />
44
44
  </div>
45
45
  );
46
46
  }
@@ -1,4 +1,5 @@
1
1
  import { User, HearingOfficer } from '../types';
2
+ export declare const primaryUserIds: number[];
2
3
  export declare function getAllUsers(apiKey: string): Promise<Record<number, User>>;
3
4
  export declare function getAllHearingOfficers(apiKey: string): Promise<Record<number, HearingOfficer>>;
4
5
  export declare function isUserAdmin(User: User, apiKey: string): Promise<boolean>;