@clerk/clerk-react 5.50.0 → 5.51.0-canary.v20251006143443

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
@@ -1619,6 +1619,45 @@ var StateProxy = class {
1619
1619
  status: "needs_identifier",
1620
1620
  availableStrategies: [],
1621
1621
  isTransferable: false,
1622
+ get id() {
1623
+ return gateProperty(target, "id", void 0);
1624
+ },
1625
+ get supportedFirstFactors() {
1626
+ return gateProperty(target, "supportedFirstFactors", []);
1627
+ },
1628
+ get supportedSecondFactors() {
1629
+ return gateProperty(target, "supportedSecondFactors", []);
1630
+ },
1631
+ get secondFactorVerification() {
1632
+ return gateProperty(target, "secondFactorVerification", {
1633
+ status: null,
1634
+ error: null,
1635
+ expireAt: null,
1636
+ externalVerificationRedirectURL: null,
1637
+ nonce: null,
1638
+ attempts: null,
1639
+ message: null,
1640
+ strategy: null,
1641
+ verifiedAtClient: null,
1642
+ verifiedFromTheSameClient: () => false,
1643
+ __internal_toSnapshot: () => {
1644
+ throw new Error("__internal_toSnapshot called before Clerk is loaded");
1645
+ },
1646
+ pathRoot: "",
1647
+ reload: () => {
1648
+ throw new Error("__internal_toSnapshot called before Clerk is loaded");
1649
+ }
1650
+ });
1651
+ },
1652
+ get identifier() {
1653
+ return gateProperty(target, "identifier", null);
1654
+ },
1655
+ get createdSessionId() {
1656
+ return gateProperty(target, "createdSessionId", null);
1657
+ },
1658
+ get userData() {
1659
+ return gateProperty(target, "userData", {});
1660
+ },
1622
1661
  get firstFactorVerification() {
1623
1662
  return gateProperty(target, "firstFactorVerification", {
1624
1663
  status: null,
@@ -1677,6 +1716,54 @@ var StateProxy = class {
1677
1716
  errors: defaultErrors(),
1678
1717
  fetchStatus: "idle",
1679
1718
  signUp: {
1719
+ get id() {
1720
+ return gateProperty(target, "id", void 0);
1721
+ },
1722
+ get requiredFields() {
1723
+ return gateProperty(target, "requiredFields", []);
1724
+ },
1725
+ get optionalFields() {
1726
+ return gateProperty(target, "optionalFields", []);
1727
+ },
1728
+ get missingFields() {
1729
+ return gateProperty(target, "missingFields", []);
1730
+ },
1731
+ get username() {
1732
+ return gateProperty(target, "username", null);
1733
+ },
1734
+ get firstName() {
1735
+ return gateProperty(target, "firstName", null);
1736
+ },
1737
+ get lastName() {
1738
+ return gateProperty(target, "lastName", null);
1739
+ },
1740
+ get emailAddress() {
1741
+ return gateProperty(target, "emailAddress", null);
1742
+ },
1743
+ get phoneNumber() {
1744
+ return gateProperty(target, "phoneNumber", null);
1745
+ },
1746
+ get web3Wallet() {
1747
+ return gateProperty(target, "web3Wallet", null);
1748
+ },
1749
+ get hasPassword() {
1750
+ return gateProperty(target, "hasPassword", false);
1751
+ },
1752
+ get unsafeMetadata() {
1753
+ return gateProperty(target, "unsafeMetadata", {});
1754
+ },
1755
+ get createdSessionId() {
1756
+ return gateProperty(target, "createdSessionId", null);
1757
+ },
1758
+ get createdUserId() {
1759
+ return gateProperty(target, "createdUserId", null);
1760
+ },
1761
+ get abandonAt() {
1762
+ return gateProperty(target, "abandonAt", null);
1763
+ },
1764
+ get legalAcceptedAt() {
1765
+ return gateProperty(target, "legalAcceptedAt", null);
1766
+ },
1680
1767
  get status() {
1681
1768
  return gateProperty(target, "status", "missing_requirements");
1682
1769
  },
@@ -1760,7 +1847,7 @@ if (typeof globalThis.__BUILD_DISABLE_RHC__ === "undefined") {
1760
1847
  }
1761
1848
  var SDK_METADATA = {
1762
1849
  name: "@clerk/clerk-react",
1763
- version: "5.50.0",
1850
+ version: "5.51.0-canary.v20251006143443",
1764
1851
  environment: process.env.NODE_ENV
1765
1852
  };
1766
1853
  var _status, _domain, _proxyUrl, _publishableKey, _eventBus, _stateProxy, _instance, _IsomorphicClerk_instances, waitForClerkJS_fn;