@openfort/openfort-node 0.7.4 → 0.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -374,7 +374,7 @@ function requiresWalletAuth(requestMethod, requestPath) {
374
374
  }
375
375
 
376
376
  // src/version.ts
377
- var VERSION = "0.7.4";
377
+ var VERSION = "0.7.5";
378
378
  var PACKAGE = "@openfort/openfort-node";
379
379
 
380
380
  // src/openapi-client/openfortApiClient.ts
@@ -2598,7 +2598,8 @@ var ApiKeyType = {
2598
2598
  pk: "pk",
2599
2599
  sk: "sk",
2600
2600
  pk_shield: "pk_shield",
2601
- sk_shield: "sk_shield"
2601
+ sk_shield: "sk_shield",
2602
+ pk_wallet: "pk_wallet"
2602
2603
  };
2603
2604
  var AuthProviderResponse = {
2604
2605
  email: "email",
@@ -3186,6 +3187,19 @@ var getVerificationPayload = (params, options) => {
3186
3187
  );
3187
3188
  };
3188
3189
 
3190
+ // src/openapi-client/generated/solana-rpc/solana-rpc.ts
3191
+ var handleSolanaRpcRequest = (cluster, jsonRpcRequest, options) => {
3192
+ return openfortApiClient(
3193
+ {
3194
+ url: `/rpc/solana/${cluster}`,
3195
+ method: "POST",
3196
+ headers: { "Content-Type": "application/json" },
3197
+ data: jsonRpcRequest
3198
+ },
3199
+ options
3200
+ );
3201
+ };
3202
+
3189
3203
  // src/openapi-client/generated/subscriptions/subscriptions.ts
3190
3204
  var getSubscriptions = (options) => {
3191
3205
  return openfortApiClient(
@@ -4917,6 +4931,7 @@ export {
4917
4931
  grantOAuth,
4918
4932
  handleChainRpcRequest,
4919
4933
  handleRpcRequest,
4934
+ handleSolanaRpcRequest,
4920
4935
  importPrivateKey,
4921
4936
  initOAuth,
4922
4937
  initSIWE,