Skip to content

Commit

Permalink
fix(typescript): rollback bundle type omit
Browse files Browse the repository at this point in the history
  • Loading branch information
GenaRazmakhnin committed Nov 7, 2024
1 parent 25d4901 commit 0497bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/sdk/typescript/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ export class Client<T extends BasicAuthorization | ResourceOwnerAuthorization> {
}

resource = {
processBundle: (data: ProcessableBundle): Promise<ResourceTypeMap['Bundle']> => {
processBundle: (data: ResourceTypeMap['Bundle']): Promise<ResourceTypeMap['Bundle']> => {
return this.client
.post(buildResourceUrl(''), { json: data })
.json<ResourceTypeMap['Bundle']>();
Expand Down

0 comments on commit 0497bae

Please sign in to comment.