@revenuecat/purchases-js 0.0.13 → 0.0.14

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.
@@ -198,31 +198,31 @@ export declare interface Offering {
198
198
  /**
199
199
  * Lifetime package type configured in the RevenueCat dashboard, if available.
200
200
  */
201
- readonly lifetimePackage: Package | null;
201
+ readonly lifetime: Package | null;
202
202
  /**
203
203
  * Annual package type configured in the RevenueCat dashboard, if available.
204
204
  */
205
- readonly annualPackage: Package | null;
205
+ readonly annual: Package | null;
206
206
  /**
207
207
  * Six month package type configured in the RevenueCat dashboard, if available.
208
208
  */
209
- readonly sixMonthPackage: Package | null;
209
+ readonly sixMonth: Package | null;
210
210
  /**
211
211
  * Three month package type configured in the RevenueCat dashboard, if available.
212
212
  */
213
- readonly threeMonthPackage: Package | null;
213
+ readonly threeMonth: Package | null;
214
214
  /**
215
215
  * Two month package type configured in the RevenueCat dashboard, if available.
216
216
  */
217
- readonly twoMonthPackage: Package | null;
217
+ readonly twoMonth: Package | null;
218
218
  /**
219
219
  * Monthly package type configured in the RevenueCat dashboard, if available.
220
220
  */
221
- readonly monthlyPackage: Package | null;
221
+ readonly monthly: Package | null;
222
222
  /**
223
223
  * Weekly package type configured in the RevenueCat dashboard, if available.
224
224
  */
225
- readonly weeklyPackage: Package | null;
225
+ readonly weekly: Package | null;
226
226
  }
227
227
 
228
228
  /**