Skip to content

Commit

Permalink
Fix primary key type on action edits (#502)
Browse files Browse the repository at this point in the history
* fix primary key type on action edits

* add changeset
  • Loading branch information
ssanjay1 authored Jul 23, 2024
1 parent 489d13f commit 3615522
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/small-glasses-eat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@osdk/client.api": patch
---

Fix primary key type on action edits
2 changes: 1 addition & 1 deletion packages/client.api/src/actions/ActionResults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type ObjectEdit =
bSideObject: ObjectReference;
});
interface ObjectReference {
primaryKey: unknown;
primaryKey: string | number;
objectType: string;
}
export interface ValidateActionResponseV2 {
Expand Down

0 comments on commit 3615522

Please sign in to comment.