lucuma-core 0.137.3 → 0.138.0
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/main.d.ts +6 -0
- package/main.js +81328 -51171
- package/main.js.map +4 -4
- package/package.json +1 -1
package/main.d.ts
CHANGED
|
@@ -7,9 +7,15 @@ export declare function dateToLocalObservingNight(date: Date): string;
|
|
|
7
7
|
|
|
8
8
|
export declare function parseAttachmentId(maybeAttachmentId: string): string | undefined;
|
|
9
9
|
export declare function parseCallForProposalsId(maybeCallForProposalsId: string): string | undefined;
|
|
10
|
+
export declare function parseConfigurationRequestId(maybeConfigurationRequestId: string): string | undefined;
|
|
11
|
+
export declare function parseDatasetId(maybeDatasetId: string): string | undefined;
|
|
12
|
+
export declare function parseExecutionEventId(maybeExecutionEventId: string): string | undefined;
|
|
10
13
|
export declare function parseGroupId(maybeGroupId: string): string | undefined;
|
|
11
14
|
export declare function parseObservationId(maybeObservationId: string): string | undefined;
|
|
12
15
|
export declare function parseProgramId(maybeProgramId: string): string | undefined;
|
|
13
16
|
export declare function parseProgramNoteId(maybeProgramNoteId: string): string | undefined;
|
|
14
17
|
export declare function parseProgramUserId(maybeProgramUserId: string): string | undefined;
|
|
18
|
+
export declare function parseStandardRoleId(maybeStandardRoleId: string): string | undefined;
|
|
19
|
+
export declare function parseTargetId(maybeTargetId: string): string | undefined;
|
|
20
|
+
export declare function parseUserId(maybeUserId: string): string | undefined;
|
|
15
21
|
export declare function parseVisitId(maybeVisitId: string): string | undefined;
|