Skip to content

Commit

Permalink
🔖 (core): Add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyuzhuang committed Apr 30, 2024
1 parent d40f3e2 commit 0fc032a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/shaggy-experts-flash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ledgerhq/device-sdk-core": minor
---

Implement GetAppAndVersion command.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Command } from "@api/command/Command";
import { ApduResponse } from "@internal/device-session/model/ApduResponse";
import { Command } from "../Command";

import {
GetAppAndVersionResponse,
GetAppAndVersionCommand,
GetAppAndVersionResponse,
} from "./GetAppAndVersionCommand";

const GET_APP_AND_VERSION_APDU = Uint8Array.from([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Apdu } from "@api/apdu/model/Apdu";
import { ApduBuilder, ApduBuilderArgs } from "@api/apdu/utils/ApduBuilder";
import { ApduParser } from "@api/apdu/utils/ApduParser";
import { Command } from "@api/command/Command";
import { ApduResponse } from "@internal/device-session/model/ApduResponse";
import { CommandUtils } from "@api/command/utils/CommandUtils";
import { ApduResponse } from "@internal/device-session/model/ApduResponse";

export type GetAppAndVersionResponse = {
name: string;
Expand Down

0 comments on commit 0fc032a

Please sign in to comment.