Skip to content

Commit

Permalink
fix: missing SDK config
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalavedra committed May 29, 2024
1 parent 388dc71 commit 7916114
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.1] - 2024-05-29
### Fix
- Add missing rollup configuration for the SDK with openapi code generation


## [0.7.0] - 2024-05-28
### Feat
- Automatic code generation from openapi spec
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@ export const AuthenticationApiAxiosParamCreator = function (configuration?: Conf
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
localVarRequestOptions.data = serializeDataIfNeeded(thirdPartyOAuthRequest, localVarRequestOptions, configuration)

return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
Expand Down
2 changes: 1 addition & 1 deletion sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openfort/openfort-js",
"version": "0.7.0",
"version": "0.7.1",
"author": "Openfort (https://www.openfort.xyz)",
"bugs": "https://github.com/openfort-xyz/openfort-js/issues",
"repository": "openfort-xyz/openfort-js.git",
Expand Down
1 change: 1 addition & 0 deletions sdk/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const packages = [
{location: '.', name: 'js-openfort-sdk'},
{location: 'packages/platform-bridge', name: '@openfort/platform-bridge'},
{location: 'sdk', name: '@openfort/openfort-js'},
{location:"packages/internal/openapi-clients",name:"@openfort/openapi-clients"},
];

// const packages = JSON.parse(
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const VERSION = '0.7.0';
export const VERSION = '0.7.1';
export const PACKAGE = '@openfort/openfort-js';
22 changes: 21 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,27 @@ __metadata:
languageName: unknown
linkType: soft

"@openfort/[email protected], @openfort/openfort-js@workspace:sdk":
"@openfort/openfort-js@npm:0.7.0":
version: 0.7.0
resolution: "@openfort/openfort-js@npm:0.7.0"
dependencies:
"@ethersproject/abstract-signer": ^5.7.0
"@ethersproject/bytes": ^5.7.0
"@ethersproject/hash": ^5.7.0
"@ethersproject/signing-key": ^5.7.0
"@ethersproject/transactions": ^5.7.0
"@noble/curves": ^1.1.0
"@openfort/shield-js": ^0.0.3
axios: 1.6.7
crypto-js: ^4.2.0
es6-promise: ^4.2.8
jose: ^5.2.2
path: ^0.12.7
checksum: e40fd0accf597af7bb41682c29c632d02580fd7f03d19e0b14c8cf4e7db96acca11a6455000c80ff6556d50ef44d05c8e22f70466f9ee92828ed4d0fe9b89bd2
languageName: node
linkType: hard

"@openfort/openfort-js@workspace:sdk":
version: 0.0.0-use.local
resolution: "@openfort/openfort-js@workspace:sdk"
dependencies:
Expand Down

0 comments on commit 7916114

Please sign in to comment.