@openfort/openfort-node 0.7.2 → 0.7.3

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.js CHANGED
@@ -719,7 +719,7 @@ function requiresWalletAuth(requestMethod, requestPath) {
719
719
  }
720
720
 
721
721
  // src/version.ts
722
- var VERSION = "0.7.2";
722
+ var VERSION = "0.7.3";
723
723
  var PACKAGE = "@openfort/openfort-node";
724
724
 
725
725
  // src/openapi-client/openfortApiClient.ts
@@ -2206,28 +2206,6 @@ var me = (options) => {
2206
2206
  );
2207
2207
  };
2208
2208
 
2209
- // src/openapi-client/generated/auth-v2/auth-v2.ts
2210
- var meV2 = (options) => {
2211
- return openfortApiClient(
2212
- {
2213
- url: `/iam/v2/me`,
2214
- method: "GET"
2215
- },
2216
- options
2217
- );
2218
- };
2219
- var thirdPartyV2 = (thirdPartyOAuthRequest, options) => {
2220
- return openfortApiClient(
2221
- {
2222
- url: `/iam/v2/user/third_party`,
2223
- method: "POST",
2224
- headers: { "Content-Type": "application/json" },
2225
- data: thirdPartyOAuthRequest
2226
- },
2227
- options
2228
- );
2229
- };
2230
-
2231
2209
  // src/openapi-client/generated/backend-wallets/backend-wallets.ts
2232
2210
  var listBackendWallets = (params, options) => {
2233
2211
  return openfortApiClient(
@@ -3745,6 +3723,26 @@ var pregenerateUserV2 = (pregenerateUserRequestV2, options) => {
3745
3723
  options
3746
3724
  );
3747
3725
  };
3726
+ var meV2 = (options) => {
3727
+ return openfortApiClient(
3728
+ {
3729
+ url: `/iam/v2/me`,
3730
+ method: "GET"
3731
+ },
3732
+ options
3733
+ );
3734
+ };
3735
+ var thirdPartyV2 = (thirdPartyOAuthRequest, options) => {
3736
+ return openfortApiClient(
3737
+ {
3738
+ url: `/iam/v2/user/third_party`,
3739
+ method: "POST",
3740
+ headers: { "Content-Type": "application/json" },
3741
+ data: thirdPartyOAuthRequest
3742
+ },
3743
+ options
3744
+ );
3745
+ };
3748
3746
 
3749
3747
  // src/utilities/signer.ts
3750
3748
  var import_node_crypto2 = require("crypto");