Skip to content

Commit

Permalink
chore(deps): update dependency lucuma-schemas to v0.116.0 (#398)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency lucuma-schemas to v0.116.0

* Codegen

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Hugo van Rijswijk <[email protected]>
  • Loading branch information
renovate[bot] and hugo-vrijswijk authored Feb 5, 2025
1 parent a5ec23e commit d37ee86
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 41 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"lucuma-schemas": "0.115.0",
"lucuma-schemas": "0.116.0",
"playwright": "1.50.1",
"prettier": "3.4.2",
"sass": "1.83.4",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

77 changes: 42 additions & 35 deletions src/gql/odb/gen/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2018,18 +2018,18 @@ export type Existence =
/** Exposure time mode, either signal to noise or fixed */
export type ExposureTimeMode = {
__typename?: 'ExposureTimeMode';
/** Fixed exposure time mode data, if applicable */
fixedExposure?: Maybe<FixedExposureMode>;
/** Signal to noise exposure time mode data, if applicable */
signalToNoise?: Maybe<SignalToNoiseMode>;
/** Signal to noise exposure time mode data, if applicable. */
signalToNoise?: Maybe<SignalToNoiseExposureTimeMode>;
/** Time and Count mode data, if applicable. */
timeAndCount?: Maybe<TimeAndCountExposureTimeMode>;
};

/** Exposure time mode input. Specify fixed or signal to noise, but not both */
export type ExposureTimeModeInput = {
/** The fixedExposure field must be either specified or skipped altogether. It cannot be unset with a null value. */
fixedExposure?: InputMaybe<FixedExposureModeInput>;
/** The signalToNoise field must be either specified or skipped altogether. It cannot be unset with a null value. */
signalToNoise?: InputMaybe<SignalToNoiseModeInput>;
signalToNoise?: InputMaybe<SignalToNoiseExposureTimeModeInput>;
/** The timeAndCount field must be either specified or skipped altogether. It cannot be unset with a null value. */
timeAndCount?: InputMaybe<TimeAndCountExposureTimeModeInput>;
};

/** Proposal properties for Fast Turnaround CallForProposals. */
Expand Down Expand Up @@ -2092,23 +2092,6 @@ export type FilterTypeMeta = {
tag: FilterType;
};

/** Fixed exposure time mode */
export type FixedExposureMode = {
__typename?: 'FixedExposureMode';
/** Exposure count */
count: Scalars['NonNegInt']['output'];
/** Exposure time */
time: TimeSpan;
};

/** Fixed exposure time mode parameters */
export type FixedExposureModeInput = {
/** exposure count */
count: Scalars['NonNegInt']['input'];
/** exposure time */
time: TimeSpanInput;
};

/** Flamingos2 Disperser */
export type Flamingos2Disperser =
/** Flamingos2Disperser R=1200 (H + K) grism */
Expand Down Expand Up @@ -5945,14 +5928,18 @@ export type SiderealInput = {
};

/** Signal to noise exposure time mode */
export type SignalToNoiseMode = {
__typename?: 'SignalToNoiseMode';
export type SignalToNoiseExposureTimeMode = {
__typename?: 'SignalToNoiseExposureTimeMode';
/** Signal/Noise wavelength */
at: Wavelength;
/** Signal/Noise value */
value: Scalars['SignalToNoise']['output'];
};

/** Signal-to-noise mode parameters */
export type SignalToNoiseModeInput = {
export type SignalToNoiseExposureTimeModeInput = {
/** Corresponding wavelength. */
at: WavelengthInput;
/** s/n value */
value: Scalars['SignalToNoise']['input'];
};
Expand Down Expand Up @@ -6146,16 +6133,14 @@ export type SpectroscopyScienceRequirements = {
__typename?: 'SpectroscopyScienceRequirements';
/** Spectroscopy Capabilities */
capability?: Maybe<SpectroscopyCapabilities>;
/** Requested exposure time mode. */
exposureTimeMode?: Maybe<ExposureTimeMode>;
/** Focal plane choice */
focalPlane?: Maybe<FocalPlane>;
/** Focal plane angle */
focalPlaneAngle?: Maybe<Angle>;
/** Requested resolution */
resolution?: Maybe<Scalars['PosInt']['output']>;
/** Requested signal to noise ratio */
signalToNoise?: Maybe<Scalars['SignalToNoise']['output']>;
/** Requested wavelength for the requested signal to noise */
signalToNoiseAt?: Maybe<Wavelength>;
/** Requested central wavelength */
wavelength?: Maybe<Wavelength>;
/** Wavelength range */
Expand All @@ -6166,16 +6151,17 @@ export type SpectroscopyScienceRequirements = {
export type SpectroscopyScienceRequirementsInput = {
/** The capabilities field may be unset by assigning a null value, or ignored by skipping it altogether */
capability?: InputMaybe<SpectroscopyCapabilities>;
/**
* ExposureTimeMode, which may be unset by assigning a null value, or ignored by
* skipping it altogether.
*/
exposureTimeMode?: InputMaybe<ExposureTimeModeInput>;
/** The focalPlane field may be unset by assigning a null value, or ignored by skipping it altogether */
focalPlane?: InputMaybe<FocalPlane>;
/** The focalPlaneAngle field may be unset by assigning a null value, or ignored by skipping it altogether */
focalPlaneAngle?: InputMaybe<AngleInput>;
/** The resolution field may be unset by assigning a null value, or ignored by skipping it altogether */
resolution?: InputMaybe<Scalars['PosInt']['input']>;
/** The signalToNoise field may be unset by assigning a null value, or ignored by skipping it altogether */
signalToNoise?: InputMaybe<Scalars['SignalToNoise']['input']>;
/** The signalToNoiseAt field may be unset by assigning a null value, or ignored by skipping it altogether */
signalToNoiseAt?: InputMaybe<WavelengthInput>;
/** The wavelength field may be unset by assigning a null value, or ignored by skipping it altogether */
wavelength?: InputMaybe<WavelengthInput>;
/** The wavelengthCoverage field may be unset by assigning a null value, or ignored by skipping it altogether */
Expand Down Expand Up @@ -6882,6 +6868,27 @@ export type TimeAccountingCategory =
/** United States */
| 'US';

/** Time and Count exposure time mode. */
export type TimeAndCountExposureTimeMode = {
__typename?: 'TimeAndCountExposureTimeMode';
/** S/N at Wavelength. */
at: Wavelength;
/** Exposure count. */
count: Scalars['NonNegInt']['output'];
/** Exposure time. */
time: TimeSpan;
};

/** Time And Count exposure time mode parameters */
export type TimeAndCountExposureTimeModeInput = {
/** S/N at wavelength. */
at: WavelengthInput;
/** Exposure count. */
count: Scalars['NonNegInt']['input'];
/** Exposure time. */
time: TimeSpanInput;
};

/**
* A manual correction to time accounting calculations. Note that the
* application of a correction is bounded by a zero time span and the
Expand Down

0 comments on commit d37ee86

Please sign in to comment.