@revenuecat/purchases-js 1.26.3 → 1.27.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/README.md CHANGED
@@ -47,18 +47,18 @@ pnpm install
47
47
  pnpm run build:dev
48
48
  ```
49
49
 
50
- To avoid publishing the package you can use Yarn's link feature:
50
+ To avoid publishing the package you can use pnpm's link feature:
51
51
 
52
52
  1. In the purchases-js directory, register the package:
53
53
 
54
54
  ```bash
55
- yarn link
55
+ pnpm link
56
56
  ```
57
57
 
58
58
  2. In your testing project, link to the registered package:
59
59
 
60
60
  ```bash
61
- yarn link "@revenuecat/purchases-js"
61
+ pnpm link "@revenuecat/purchases-js"
62
62
  ```
63
63
 
64
64
  > **Note:** Any changes you make to the library will be automatically reflected in your testing project after running `pnpm run build:dev` or `pnpm run build`.
@@ -326,6 +326,7 @@ export declare interface GetOfferingsParams {
326
326
  * Can be a string identifier or one of the predefined keywords.
327
327
  */
328
328
  readonly offeringIdentifier?: string | OfferingKeyword;
329
+ /* Excluded from this release type: discountCode */
329
330
  }
330
331
 
331
332
  /**
@@ -343,6 +344,7 @@ export declare interface HttpConfig {
343
344
  * a trailing slash.
344
345
  */
345
346
  proxyURL?: string;
347
+ /* Excluded from this release type: eventsURL */
346
348
  }
347
349
 
348
350
  /**