Snyk upgrade 03178c54d4c54014129e16dcb9a2eda9#34
Merged
Dargon789 merged 18 commits into21-fixmerge-branch-0xsequencemaster-into-master-f2761efe54451f0b5c2f50f6485c4b5e51ddb32bfrom Jun 12, 2025
Conversation
Bumps the npm_and_yarn group with 1 update in the / directory: [express](https://github.com/expressjs/express). Updates `express` from 4.18.2 to 4.19.2 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](expressjs/express@4.18.2...4.19.2) --- updated-dependencies: - dependency-name: express dependency-type: direct:development dependency-group: npm_and_yarn-security-group ... Signed-off-by: dependabot[bot] <support@github.com>
…ity-group-e0cd778f82
…yarn-security-group-e0cd778f82 Bump the npm_and_yarn group across 1 directory with 1 update
Snyk has created this PR to upgrade @tanstack/react-query from 5.45.1 to 5.64.2. See this package in npm: @tanstack/react-query See this project in Snyk: https://app.snyk.io/org/dargon789/project/bb845543-cbee-4e11-8cf9-8bfdf9205bf1?utm_source=github&utm_medium=referral&page=upgrade-pr
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
Reviewer's GuideThis PR upgrades generated API bindings, adds new blockchain network support, bumps package versions and dependencies, and enhances developer tooling with CI workflows and utilities. Sequence Diagram for Requesting an Inventory PaymentsequenceDiagram
actor Client
participant API
participant Backend
Client->>API: requestInventoryPayment(configId, recipient)
API->>Backend: Process payment request
Backend-->>API: InventoryPaymentResponse
API-->>Client: { payment: InventoryPaymentResponse }
Entity Relationship Diagram for Currency and Inventory ManagementerDiagram
CurrencyGroup {
int id
string name
}
CurrencyGroupToken {
int id
int currencyGroupId
int chainId
string tokenAddress
}
InventoryPaymentConfig {
int id
int projectId
int chainId
string paymentTokenAddress
TokenType paymentTokenType
number paymentAmount
string paymentRecipient
}
InventoryPayment {
int id
int inventoryPaymentConfigId
string productRecipient
int paymentChainId
string paymentTokenAddress
}
CurrencyGroup ||--o{ CurrencyGroupToken : "has"
InventoryPaymentConfig ||--o{ InventoryPayment : "has"
Class Diagram for Updated API InterfaceclassDiagram
class API {
+removeLinkedWallet(args) RemoveLinkedWalletReturn
+generateWaaSVerificationURL(args) GenerateWaaSVerificationURLReturn
+validateWaaSVerificationNonce(args) ValidateWaaSVerificationNonceReturn
+getSwapQuotes(args) GetSwapQuotesReturn
+addCurrencyGroup(args) AddCurrencyGroupReturn
+updateCurrencyGroup(args) UpdateCurrencyGroupReturn
+listCurrencyGroups() ListCurrencyGroupsReturn
+deleteCurrencyGroup(args) DeleteCurrencyGroupReturn
+addInventoryPaymentConfig(args) AddInventoryPaymentConfigReturn
+getInventoryPaymentConfig(args) GetInventoryPaymentConfigReturn
+listInventoryPaymentConfigs(args) ListInventoryPaymentConfigsReturn
+updateInventoryPaymentConfig(args) UpdateInventoryPaymentConfigReturn
+deleteInventoryPaymentConfig(args) DeleteInventoryPaymentConfigReturn
+requestInventoryPayment(args) RequestInventoryPaymentReturn
}
Class Diagram for New and Updated Data ModelsclassDiagram
class TokenType {
<<Enumeration>>
ERC20
ERC721
ERC1155
}
class NftCheckoutParams {
+string tokenAmount
+string tokenAddress
+string tokenSymbol
+int tokenDecimals
+string calldata
+string platform
+string approvedSpenderAddress
}
class SwapQuote {
string currencyAddress
string currencyBalance
string price
string to
string transactionData
string approveData
}
class InventoryPaymentResponse {
int paymentId
int inventoryPaymentConfigId
int chainId
string externalProductId
string paymentTokenAddress
TokenType paymentTokenType
int paymentTokenId
number paymentTotal
string expiration
string signature
string txTo
string txData
}
InventoryPaymentResponse ..> TokenType
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
This comment was marked as outdated.
This comment was marked as outdated.
2ec6a7c
into
21-fixmerge-branch-0xsequencemaster-into-master-f2761efe54451f0b5c2f50f6485c4b5e51ddb32b
10 of 18 checks passed
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary by Sourcery
Regenerate API client and extend it with new endpoints for wallet unlinking, WaaS verification, swap quotes, currency groups, and inventory payment flows. Bump all @0xsequence packages to v1.10.14, add Borne Testnet to network support, introduce a utility for extracting project IDs from access keys (with tests), update development dependencies, and add a Fortify SAST GitHub Actions workflow along with standard issue templates.
New Features:
Enhancements:
Build:
CI:
Documentation:
Tests: