@moonpay/platform-sdk-core 0.3.0-next.0 → 0.3.0

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.d.cts CHANGED
@@ -93,6 +93,7 @@ interface FrameTransport {
93
93
 
94
94
  declare const FRAME_PATHS: {
95
95
  readonly connect: "/platform/v1/connect";
96
+ readonly auth: "/platform/v1/auth";
96
97
  readonly checkConnection: "/platform/v1/check-connection";
97
98
  readonly applePay: "/platform/v1/apple-pay";
98
99
  readonly googlePay: "/platform/v1/google-pay";
package/dist/index.d.ts CHANGED
@@ -93,6 +93,7 @@ interface FrameTransport {
93
93
 
94
94
  declare const FRAME_PATHS: {
95
95
  readonly connect: "/platform/v1/connect";
96
+ readonly auth: "/platform/v1/auth";
96
97
  readonly checkConnection: "/platform/v1/check-connection";
97
98
  readonly applePay: "/platform/v1/apple-pay";
98
99
  readonly googlePay: "/platform/v1/google-pay";
package/dist/index.js CHANGED
@@ -754,9 +754,8 @@ function aoutput2(out, instance) {
754
754
  }
755
755
  }
756
756
 
757
- // ../../node_modules/.bun/@noble+hashes@1.7.0/node_modules/@noble/hashes/esm/cryptoNode.js
758
- import * as nc from "crypto";
759
- var crypto = nc && typeof nc === "object" && "webcrypto" in nc ? nc.webcrypto : nc && typeof nc === "object" && "randomBytes" in nc ? nc : void 0;
757
+ // ../../node_modules/.bun/@noble+hashes@1.7.0/node_modules/@noble/hashes/esm/crypto.js
758
+ var crypto = typeof globalThis === "object" && "crypto" in globalThis ? globalThis.crypto : void 0;
760
759
 
761
760
  // ../../node_modules/.bun/@noble+hashes@1.7.0/node_modules/@noble/hashes/esm/utils.js
762
761
  var createView2 = (arr) => new DataView(arr.buffer, arr.byteOffset, arr.byteLength);
@@ -1558,6 +1557,7 @@ function createFrameOrchestrator(options) {
1558
1557
  // src/frames/url-builder.ts
1559
1558
  var FRAME_PATHS = {
1560
1559
  connect: "/platform/v1/connect",
1560
+ auth: "/platform/v1/auth",
1561
1561
  checkConnection: "/platform/v1/check-connection",
1562
1562
  applePay: "/platform/v1/apple-pay",
1563
1563
  googlePay: "/platform/v1/google-pay",