@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.mjs CHANGED
@@ -374,7 +374,7 @@ function requiresWalletAuth(requestMethod, requestPath) {
374
374
  }
375
375
 
376
376
  // src/version.ts
377
- var VERSION = "0.7.2";
377
+ var VERSION = "0.7.3";
378
378
  var PACKAGE = "@openfort/openfort-node";
379
379
 
380
380
  // src/openapi-client/openfortApiClient.ts
@@ -1861,28 +1861,6 @@ var me = (options) => {
1861
1861
  );
1862
1862
  };
1863
1863
 
1864
- // src/openapi-client/generated/auth-v2/auth-v2.ts
1865
- var meV2 = (options) => {
1866
- return openfortApiClient(
1867
- {
1868
- url: `/iam/v2/me`,
1869
- method: "GET"
1870
- },
1871
- options
1872
- );
1873
- };
1874
- var thirdPartyV2 = (thirdPartyOAuthRequest, options) => {
1875
- return openfortApiClient(
1876
- {
1877
- url: `/iam/v2/user/third_party`,
1878
- method: "POST",
1879
- headers: { "Content-Type": "application/json" },
1880
- data: thirdPartyOAuthRequest
1881
- },
1882
- options
1883
- );
1884
- };
1885
-
1886
1864
  // src/openapi-client/generated/backend-wallets/backend-wallets.ts
1887
1865
  var listBackendWallets = (params, options) => {
1888
1866
  return openfortApiClient(
@@ -3400,6 +3378,26 @@ var pregenerateUserV2 = (pregenerateUserRequestV2, options) => {
3400
3378
  options
3401
3379
  );
3402
3380
  };
3381
+ var meV2 = (options) => {
3382
+ return openfortApiClient(
3383
+ {
3384
+ url: `/iam/v2/me`,
3385
+ method: "GET"
3386
+ },
3387
+ options
3388
+ );
3389
+ };
3390
+ var thirdPartyV2 = (thirdPartyOAuthRequest, options) => {
3391
+ return openfortApiClient(
3392
+ {
3393
+ url: `/iam/v2/user/third_party`,
3394
+ method: "POST",
3395
+ headers: { "Content-Type": "application/json" },
3396
+ data: thirdPartyOAuthRequest
3397
+ },
3398
+ options
3399
+ );
3400
+ };
3403
3401
 
3404
3402
  // src/utilities/signer.ts
3405
3403
  import { createHmac } from "crypto";