lucuma-core 0.137.1 → 0.137.3

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.
Files changed (4) hide show
  1. package/main.d.ts +9 -0
  2. package/main.js +15189 -14594
  3. package/main.js.map +4 -4
  4. package/package.json +1 -1
package/main.d.ts CHANGED
@@ -4,3 +4,12 @@ export declare function hms2deg(hms: string): number;
4
4
  export declare function dms2deg(dms: string): number;
5
5
 
6
6
  export declare function dateToLocalObservingNight(date: Date): string;
7
+
8
+ export declare function parseAttachmentId(maybeAttachmentId: string): string | undefined;
9
+ export declare function parseCallForProposalsId(maybeCallForProposalsId: string): string | undefined;
10
+ export declare function parseGroupId(maybeGroupId: string): string | undefined;
11
+ export declare function parseObservationId(maybeObservationId: string): string | undefined;
12
+ export declare function parseProgramId(maybeProgramId: string): string | undefined;
13
+ export declare function parseProgramNoteId(maybeProgramNoteId: string): string | undefined;
14
+ export declare function parseProgramUserId(maybeProgramUserId: string): string | undefined;
15
+ export declare function parseVisitId(maybeVisitId: string): string | undefined;