@frontiertower/frontier-sdk 0.3.3 → 0.3.4

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.mts CHANGED
@@ -497,16 +497,16 @@ interface ReferralOverview {
497
497
  * Detailed referral information
498
498
  */
499
499
  interface ReferralDetails {
500
- /** Referral ID */
501
- id: number;
502
- /** Referred user email */
500
+ /** Name of the referred user */
501
+ name: string;
502
+ /** Email of the referred user */
503
503
  email: string;
504
- /** First name */
505
- firstName: string;
506
- /** Last name */
507
- lastName: string;
508
- /** Date user joined */
509
- dateJoined: string;
504
+ /** Date when the referral was made */
505
+ referralDate: string;
506
+ /** Reward information (if any) */
507
+ reward: string;
508
+ /** Status of the referral */
509
+ status: string;
510
510
  }
511
511
  /**
512
512
  * Single contact entry
package/dist/index.d.ts CHANGED
@@ -497,16 +497,16 @@ interface ReferralOverview {
497
497
  * Detailed referral information
498
498
  */
499
499
  interface ReferralDetails {
500
- /** Referral ID */
501
- id: number;
502
- /** Referred user email */
500
+ /** Name of the referred user */
501
+ name: string;
502
+ /** Email of the referred user */
503
503
  email: string;
504
- /** First name */
505
- firstName: string;
506
- /** Last name */
507
- lastName: string;
508
- /** Date user joined */
509
- dateJoined: string;
504
+ /** Date when the referral was made */
505
+ referralDate: string;
506
+ /** Reward information (if any) */
507
+ reward: string;
508
+ /** Status of the referral */
509
+ status: string;
510
510
  }
511
511
  /**
512
512
  * Single contact entry
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontiertower/frontier-sdk",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "SDK for building apps on Frontier Wallet",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",