Skip to content

Commit

Permalink
PineOptions Release
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
myarmolinsky committed Dec 3, 2024
1 parent 05dabac commit 129f5cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/release/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default class ReleaseCmd extends Command {
balena: BalenaSdk.BalenaSDK,
options: FlagsDef,
) {
const fields: Array<keyof BalenaSdk.Release> = [
const fields: BalenaSdk.PineOptions<BalenaSdk.Release>['$select'] = [
'id',
'commit',
'created_at',
Expand Down
2 changes: 1 addition & 1 deletion src/commands/release/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class ReleaseListCmd extends Command {
public async run() {
const { args: params, flags: options } = await this.parse(ReleaseListCmd);

const fields: Array<keyof BalenaSdk.Release> = [
const fields: BalenaSdk.PineOptions<BalenaSdk.Release>['$select'] = [
'id',
'commit',
'created_at',
Expand Down

0 comments on commit 129f5cf

Please sign in to comment.