Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .apigen-state
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"version": "1",
"algorithm": "sha256",
"generated_at": "2026-03-18T22:53:13.035771Z",
"generated_at": "2026-03-13T22:19:43.014785Z",
"spec_files": {
"resources/account-data-api.yaml": "2d366acf63b1412c3b49583b22aea07829f297332ebd1b0680954d0d248f2998",
"resources/auth-api.yaml": "7fa07edd6586d00e8fd1e23fc81c83698800aa9cbfd3fa107072952d96bbf99a",
"resources/auth-common.yaml": "dbc5d97472a5051fe79a4fef919bc3e4c4d5d2e4751d0aab65c051be56174e1f",
"resources/auth-api.yaml": "0d6fcdb4ed69131adc765b20ea0e6dc4ef735a0a579c3e44e62ed23dde4a0d84",
"resources/bluefin-api.yaml": "b81cebbb70822b4806a9c56e819d6dd1b52453f4b37d63a95a14dae7cf0edb9c",
"resources/common.yaml": "71dc565fccebcc9e71b49b48448d2583903aec7e2d16ef1d69972b50f2e4250f",
"resources/exchange-api.yaml": "a309b3a5c29fb71dcc26d6f8018883ec51b42db43c29fee7b7ed4f0997146f77",
Expand All @@ -14,5 +13,5 @@
"resources/vera-api.yaml": "f4c51b5f6614dd4e3b9f5f1f01f945e06d9090849530ecb916ad4ae18d8f61a0",
"resources/websocket-api.yaml": "c2c51ceea701bff0b7e911e9afdb0addeb4d7f173b2a25b996d13f5462cb535b"
},
"combined_hash": "752605421bfad83cb0424a9a943d7430a3b34bf812412955da279ac70e7df15e"
}
"combined_hash": "84124ae2265b7acb3be586b12a4f7a848f85abb212120f7b29c9ab6989ef55fc"
}
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
/target/
.idea/
.vscode/
.zed
.venv
/ts/dist
/ts/sdk/node_modules
/ts/sdk/dist
**/openapitools.json
out
tools/**/target
.DS_Store
40 changes: 0 additions & 40 deletions Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion python/sdk/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ additionalProperties:
library: asyncio
generateSourceCodeOnly: true
useOneOfDiscriminatorLookup: true
packageVersion: 1.16.0
packageVersion: 1.15.0
2 changes: 1 addition & 1 deletion python/sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ description = "Python Boilerplate contains all the boilerplate you need to creat
name = "bluefin_pro_sdk"
readme = "README.rst"
requires-python = ">=3.9.2,<3.14.0"
version = "1.16.0"
version = "1.15.0"

[[project.authors]]
email = "audreyr@example.com"
Expand Down
6 changes: 0 additions & 6 deletions python/sdk/src/.openapi-generator-ignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/sdk/src/openapi_client/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/sdk/src/openapi_client/api_client.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/sdk/src/openapi_client/configuration.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/sdk/src/openapi_client_README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 34 additions & 7 deletions resources/auth-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ servers:
- sui-prod

components:
responses:
DefaultError:
description: Unexpected error
content:
application/json:
schema:
$ref: './common.yaml#/components/schemas/Error'
schemas:
JwksResponse:
type: object
Expand Down Expand Up @@ -75,6 +82,26 @@ components:
- accountAddress
- signedAtMillis
- audience
LoginResponse:
type: object
required:
- accessToken
- accessTokenValidForSeconds
- refreshToken
- refreshTokenValidForSeconds
properties:
accessToken:
type: string
accessTokenValidForSeconds:
type: integer
format: int64
x-go-type: int64
refreshToken:
type: string
refreshTokenValidForSeconds:
type: integer
format: int64
x-go-type: int64
RefreshTokenRequest:
type: object
required:
Expand Down Expand Up @@ -245,7 +272,7 @@ paths:
schema:
$ref: '#/components/schemas/OpenIDConfigurationResponse'
default:
$ref: './auth-common.yaml#/components/responses/DefaultError'
$ref: '#/components/responses/DefaultError'
/auth/zklogin:
get:
tags:
Expand Down Expand Up @@ -332,7 +359,7 @@ paths:
schema:
$ref: '#/components/schemas/JwksResponse'
default:
$ref: './auth-common.yaml#/components/responses/DefaultError'
$ref: '#/components/responses/DefaultError'
/auth/token:
post:
tags:
Expand Down Expand Up @@ -378,7 +405,7 @@ paths:
content:
application/json:
schema:
$ref: './auth-common.yaml#/components/schemas/LoginResponse'
$ref: '#/components/schemas/LoginResponse'
'400':
description: "bad signature"
content:
Expand All @@ -404,7 +431,7 @@ paths:
schema:
$ref: "./common.yaml#/components/schemas/Error"
default:
$ref: './auth-common.yaml#/components/responses/DefaultError'
$ref: '#/components/responses/DefaultError'
/auth/v2/token:
post:
tags:
Expand Down Expand Up @@ -450,7 +477,7 @@ paths:
content:
application/json:
schema:
$ref: './auth-common.yaml#/components/schemas/LoginResponse'
$ref: '#/components/schemas/LoginResponse'
'400':
description: "bad signature"
content:
Expand All @@ -476,7 +503,7 @@ paths:
schema:
$ref: "./common.yaml#/components/schemas/Error"
default:
$ref: './auth-common.yaml#/components/responses/DefaultError'
$ref: '#/components/responses/DefaultError'
/auth/token/refresh:
put:
tags:
Expand Down Expand Up @@ -514,7 +541,7 @@ paths:
schema:
$ref: "./common.yaml#/components/schemas/Error"
default:
$ref: './auth-common.yaml#/components/responses/DefaultError'
$ref: '#/components/responses/DefaultError'

/auth/client-credentials:
post:
Expand Down
34 changes: 0 additions & 34 deletions resources/auth-common.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sha2 = "0.10.9"

[dependencies.bluefin_api]
path = "gen/bluefin_api"
version = "1.16.0"
version = "1.15.0"

[dependencies.ed25519-dalek]
features = ["rand_core"]
Expand Down
1 change: 0 additions & 1 deletion rust/gen/bluefin_api/.openapi-generator/FILES

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/gen/bluefin_api/Cargo.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/gen/bluefin_api/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions rust/gen/bluefin_api/docs/AffiliateMetadataFees.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions rust/gen/bluefin_api/docs/CampaignRewards.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions rust/gen/bluefin_api/docs/CreateOrderRequestTwapConfig.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions rust/gen/bluefin_api/docs/PingRequest.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions rust/gen/bluefin_api/docs/PingResponse.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions rust/gen/bluefin_api/docs/PostCreateOrder202Response.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading