Skip to content

Commit

Permalink
feat: deprecated fields optional
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Feb 29, 2024
1 parent a58d6c1 commit b649d77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/config/src/mainnet/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface OrbiterConfig {
/**
* @deprecated `orbiterId` will be removed in the future. Use `id` instead.
*/
orbiterId: string;
orbiterId?: string;
}

export interface JunoConfig {
Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/mainnet/satellite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface SatelliteId {
/**
* @deprecated `satelliteId` will be removed in the future. Use `id` instead.
*/
satelliteId: string;
satelliteId?: string;
}

export interface SatelliteIds {
Expand Down

0 comments on commit b649d77

Please sign in to comment.