expo-iap 2.9.0-rc.4 → 2.9.1

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.
Files changed (50) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/CONTRIBUTING.md +2 -2
  3. package/README.md +3 -3
  4. package/build/ExpoIap.types.d.ts +33 -15
  5. package/build/ExpoIap.types.d.ts.map +1 -1
  6. package/build/ExpoIap.types.js +64 -17
  7. package/build/ExpoIap.types.js.map +1 -1
  8. package/build/helpers/subscription.d.ts.map +1 -1
  9. package/build/helpers/subscription.js +2 -3
  10. package/build/helpers/subscription.js.map +1 -1
  11. package/build/index.d.ts +0 -13
  12. package/build/index.d.ts.map +1 -1
  13. package/build/index.js +22 -22
  14. package/build/index.js.map +1 -1
  15. package/build/modules/ios.d.ts +3 -7
  16. package/build/modules/ios.d.ts.map +1 -1
  17. package/build/modules/ios.js +1 -6
  18. package/build/modules/ios.js.map +1 -1
  19. package/build/types/ExpoIapAndroid.types.d.ts +0 -32
  20. package/build/types/ExpoIapAndroid.types.d.ts.map +1 -1
  21. package/build/types/ExpoIapAndroid.types.js +1 -5
  22. package/build/types/ExpoIapAndroid.types.js.map +1 -1
  23. package/build/types/ExpoIapIOS.types.d.ts +3 -27
  24. package/build/types/ExpoIapIOS.types.d.ts.map +1 -1
  25. package/build/types/ExpoIapIOS.types.js.map +1 -1
  26. package/build/useIAP.d.ts +1 -5
  27. package/build/useIAP.d.ts.map +1 -1
  28. package/build/useIAP.js +35 -26
  29. package/build/useIAP.js.map +1 -1
  30. package/build/utils/errorMapping.d.ts.map +1 -1
  31. package/build/utils/errorMapping.js +24 -0
  32. package/build/utils/errorMapping.js.map +1 -1
  33. package/ios/ExpoIap.podspec +1 -1
  34. package/ios/ExpoIapModule.swift +54 -34
  35. package/package.json +2 -3
  36. package/plugin/build/withIAP.js +8 -4
  37. package/plugin/build/withLocalOpenIAP.js +5 -1
  38. package/plugin/src/withIAP.ts +12 -7
  39. package/plugin/src/withLocalOpenIAP.ts +5 -1
  40. package/plugin/tsconfig.tsbuildinfo +1 -1
  41. package/src/ExpoIap.types.ts +84 -37
  42. package/src/helpers/subscription.ts +2 -3
  43. package/src/index.ts +25 -49
  44. package/src/modules/ios.ts +4 -9
  45. package/src/types/ExpoIapAndroid.types.ts +2 -36
  46. package/src/types/ExpoIapIOS.types.ts +3 -27
  47. package/src/useIAP.ts +41 -34
  48. package/src/utils/errorMapping.ts +24 -0
  49. package/ios/expoiap.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  50. package/ios/expoiap.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
@@ -155,13 +155,18 @@ const withIap: ConfigPlugin<ExpoIapPluginOptions | void> = (
155
155
 
156
156
  // iOS: choose one path to avoid overlap
157
157
  if (options?.enableLocalDev || options?.localPath) {
158
- const localPath =
159
- options.localPath ||
160
- '/Users/crossplatformkorea/Github/hyodotdev/openiap-apple';
161
- logOnce(
162
- `🔧 [expo-iap] Enabling local OpenIAP development at: ${localPath}`,
163
- );
164
- result = withLocalOpenIAP(result, {localPath});
158
+ if (!options?.localPath) {
159
+ WarningAggregator.addWarningIOS(
160
+ 'expo-iap',
161
+ 'enableLocalDev is true but no localPath provided. Skipping local OpenIAP integration.',
162
+ );
163
+ } else {
164
+ const localPath = path.resolve(options.localPath);
165
+ logOnce(
166
+ `🔧 [expo-iap] Enabling local OpenIAP development at: ${localPath}`,
167
+ );
168
+ result = withLocalOpenIAP(result, {localPath});
169
+ }
165
170
  } else {
166
171
  // Ensure iOS Podfile is set up to resolve public CocoaPods specs
167
172
  result = withIapIOS(result);
@@ -19,7 +19,7 @@ const withLocalOpenIAP: ConfigPlugin<{localPath?: string} | void> = (
19
19
  // Default local path or use provided one
20
20
  const localOpenIapPath =
21
21
  props?.localPath ||
22
- '/Users/crossplatformkorea/Github/hyodotdev/openiap-apple';
22
+ path.resolve(config.modRequest.projectRoot, 'openiap-apple');
23
23
 
24
24
  // Check if local path exists
25
25
  if (!fs.existsSync(localOpenIapPath)) {
@@ -33,6 +33,10 @@ const withLocalOpenIAP: ConfigPlugin<{localPath?: string} | void> = (
33
33
  }
34
34
 
35
35
  // Read Podfile
36
+ if (!fs.existsSync(podfilePath)) {
37
+ console.warn(`⚠️ Podfile not found at ${podfilePath}. Skipping.`);
38
+ return config;
39
+ }
36
40
  let podfileContent = fs.readFileSync(podfilePath, 'utf8');
37
41
 
38
42
  // Check if already has the local pod reference
@@ -1 +1 @@
1
- {"root":["./src/withiap.ts","./src/withlocalopeniap.ts"],"version":"5.9.2"}
1
+ {"root":["./src/withIAP.ts","./src/withLocalOpenIAP.ts"],"version":"5.9.2"}
@@ -70,15 +70,7 @@ export type Purchase =
70
70
  | (PurchaseAndroid & AndroidPlatform)
71
71
  | (PurchaseIOS & IosPlatform);
72
72
 
73
- // Legacy type aliases - deprecated, use Purchase instead
74
- /**
75
- * @deprecated Use `Purchase` instead. This type alias will be removed in v2.9.0.
76
- */
77
- export type ProductPurchase = Purchase;
78
- /**
79
- * @deprecated Use `Purchase` instead. This type alias will be removed in v2.9.0.
80
- */
81
- export type SubscriptionPurchase = Purchase;
73
+ // Removed legacy type aliases `ProductPurchase` and `SubscriptionPurchase` in v2.9.0
82
74
 
83
75
  export type PurchaseResult = {
84
76
  responseCode?: number;
@@ -120,6 +112,16 @@ export enum ErrorCode {
120
112
  E_ALREADY_PREPARED = 'E_ALREADY_PREPARED',
121
113
  E_PENDING = 'E_PENDING',
122
114
  E_CONNECTION_CLOSED = 'E_CONNECTION_CLOSED',
115
+ // Additional detailed errors (Android-focused, kept cross-platform)
116
+ E_INIT_CONNECTION = 'E_INIT_CONNECTION',
117
+ E_SERVICE_DISCONNECTED = 'E_SERVICE_DISCONNECTED',
118
+ E_QUERY_PRODUCT = 'E_QUERY_PRODUCT',
119
+ E_SKU_NOT_FOUND = 'E_SKU_NOT_FOUND',
120
+ E_SKU_OFFER_MISMATCH = 'E_SKU_OFFER_MISMATCH',
121
+ E_ITEM_NOT_OWNED = 'E_ITEM_NOT_OWNED',
122
+ E_BILLING_UNAVAILABLE = 'E_BILLING_UNAVAILABLE',
123
+ E_FEATURE_NOT_SUPPORTED = 'E_FEATURE_NOT_SUPPORTED',
124
+ E_EMPTY_SKU_LIST = 'E_EMPTY_SKU_LIST',
123
125
  }
124
126
 
125
127
  /**
@@ -180,26 +182,59 @@ export const ErrorCodeMapping = {
180
182
  [ErrorCode.E_ALREADY_PREPARED]: 'E_ALREADY_PREPARED',
181
183
  [ErrorCode.E_PENDING]: 'E_PENDING',
182
184
  [ErrorCode.E_CONNECTION_CLOSED]: 'E_CONNECTION_CLOSED',
185
+ [ErrorCode.E_INIT_CONNECTION]: 'E_INIT_CONNECTION',
186
+ [ErrorCode.E_SERVICE_DISCONNECTED]: 'E_SERVICE_DISCONNECTED',
187
+ [ErrorCode.E_QUERY_PRODUCT]: 'E_QUERY_PRODUCT',
188
+ [ErrorCode.E_SKU_NOT_FOUND]: 'E_SKU_NOT_FOUND',
189
+ [ErrorCode.E_SKU_OFFER_MISMATCH]: 'E_SKU_OFFER_MISMATCH',
190
+ [ErrorCode.E_ITEM_NOT_OWNED]: 'E_ITEM_NOT_OWNED',
191
+ [ErrorCode.E_BILLING_UNAVAILABLE]: 'E_BILLING_UNAVAILABLE',
192
+ [ErrorCode.E_FEATURE_NOT_SUPPORTED]: 'E_FEATURE_NOT_SUPPORTED',
193
+ [ErrorCode.E_EMPTY_SKU_LIST]: 'E_EMPTY_SKU_LIST',
183
194
  },
184
195
  } as const;
185
196
 
197
+ export type PurchaseErrorProps = {
198
+ message: string;
199
+ responseCode?: number;
200
+ debugMessage?: string;
201
+ code?: ErrorCode;
202
+ productId?: string;
203
+ platform?: 'ios' | 'android';
204
+ };
205
+
186
206
  export class PurchaseError implements Error {
187
- constructor(
188
- public name: string,
189
- public message: string,
190
- public responseCode?: number,
191
- public debugMessage?: string,
192
- public code?: ErrorCode,
193
- public productId?: string,
194
- public platform?: 'ios' | 'android',
195
- ) {
207
+ public name: string;
208
+ public message: string;
209
+ public responseCode?: number;
210
+ public debugMessage?: string;
211
+ public code?: ErrorCode;
212
+ public productId?: string;
213
+ public platform?: 'ios' | 'android';
214
+
215
+ // Backwards-compatible constructor: accepts either props object or legacy positional args
216
+ constructor(messageOrProps: string | PurchaseErrorProps, ...rest: any[]) {
196
217
  this.name = '[expo-iap]: PurchaseError';
197
- this.message = message;
198
- this.responseCode = responseCode;
199
- this.debugMessage = debugMessage;
200
- this.code = code;
201
- this.productId = productId;
202
- this.platform = platform;
218
+
219
+ if (typeof messageOrProps === 'string') {
220
+ // Legacy signature: (name, message, responseCode?, debugMessage?, code?, productId?, platform?)
221
+ // The first legacy argument was a name which we always override, so treat it as message here
222
+ const message = messageOrProps;
223
+ this.message = message;
224
+ this.responseCode = rest[0];
225
+ this.debugMessage = rest[1];
226
+ this.code = rest[2];
227
+ this.productId = rest[3];
228
+ this.platform = rest[4];
229
+ } else {
230
+ const props = messageOrProps;
231
+ this.message = props.message;
232
+ this.responseCode = props.responseCode;
233
+ this.debugMessage = props.debugMessage;
234
+ this.code = props.code;
235
+ this.productId = props.productId;
236
+ this.platform = props.platform;
237
+ }
203
238
  }
204
239
 
205
240
  /**
@@ -216,15 +251,14 @@ export class PurchaseError implements Error {
216
251
  ? ErrorCodeUtils.fromPlatformCode(errorData.code, platform)
217
252
  : ErrorCode.E_UNKNOWN;
218
253
 
219
- return new PurchaseError(
220
- '[expo-iap]: PurchaseError',
221
- errorData.message || 'Unknown error occurred',
222
- errorData.responseCode,
223
- errorData.debugMessage,
224
- errorCode,
225
- errorData.productId,
254
+ return new PurchaseError({
255
+ message: errorData.message || 'Unknown error occurred',
256
+ responseCode: errorData.responseCode,
257
+ debugMessage: errorData.debugMessage,
258
+ code: errorCode,
259
+ productId: errorData.productId,
226
260
  platform,
227
- );
261
+ });
228
262
  }
229
263
 
230
264
  /**
@@ -260,8 +294,16 @@ export const ErrorCodeUtils = {
260
294
  platformCode: string | number,
261
295
  platform: 'ios' | 'android',
262
296
  ): ErrorCode => {
263
- const mapping = ErrorCodeMapping[platform];
297
+ // Prefer dynamic native mapping for iOS to avoid drift
298
+ if (platform === 'ios') {
299
+ for (const [key, value] of Object.entries(NATIVE_ERROR_CODES || {})) {
300
+ if (value === platformCode) {
301
+ return key as ErrorCode;
302
+ }
303
+ }
304
+ }
264
305
 
306
+ const mapping = ErrorCodeMapping[platform];
265
307
  for (const [errorCode, mappedCode] of Object.entries(mapping)) {
266
308
  if (mappedCode === platformCode) {
267
309
  return errorCode as ErrorCode;
@@ -281,10 +323,15 @@ export const ErrorCodeUtils = {
281
323
  errorCode: ErrorCode,
282
324
  platform: 'ios' | 'android',
283
325
  ): string | number => {
284
- return (
285
- ErrorCodeMapping[platform][errorCode] ??
286
- (platform === 'ios' ? 0 : 'E_UNKNOWN')
287
- );
326
+ if (platform === 'ios') {
327
+ const native = NATIVE_ERROR_CODES?.[errorCode];
328
+ if (native !== undefined) return native;
329
+ }
330
+ const mapping = ErrorCodeMapping[platform] as Record<
331
+ ErrorCode,
332
+ string | number
333
+ >;
334
+ return mapping[errorCode] ?? (platform === 'ios' ? 0 : 'E_UNKNOWN');
288
335
  },
289
336
 
290
337
  /**
@@ -38,9 +38,8 @@ export const getActiveSubscriptions = async (
38
38
 
39
39
  // Check if this purchase has subscription-specific fields
40
40
  const hasSubscriptionFields =
41
- ('expirationDateIOS' in purchase && purchase.expirationDateIOS) ||
42
- 'autoRenewingAndroid' in purchase ||
43
- ('environmentIOS' in purchase && purchase.environmentIOS === 'Sandbox');
41
+ ('expirationDateIOS' in purchase && !!purchase.expirationDateIOS) ||
42
+ 'autoRenewingAndroid' in purchase;
44
43
 
45
44
  if (!hasSubscriptionFields) {
46
45
  return false;
package/src/index.ts CHANGED
@@ -143,7 +143,12 @@ export const getProducts = async (skus: string[]): Promise<Product[]> => {
143
143
  "`getProducts` is deprecated. Use `fetchProducts({ skus, type: 'inapp' })` instead. This function will be removed in version 3.0.0.",
144
144
  );
145
145
  if (!skus?.length) {
146
- return Promise.reject(new Error('"skus" is required'));
146
+ return Promise.reject(
147
+ new PurchaseError({
148
+ message: 'No SKUs provided',
149
+ code: ErrorCode.E_EMPTY_SKU_LIST,
150
+ }),
151
+ );
147
152
  }
148
153
 
149
154
  return Platform.select({
@@ -177,7 +182,12 @@ export const getSubscriptions = async (
177
182
  "`getSubscriptions` is deprecated. Use `fetchProducts({ skus, type: 'subs' })` instead. This function will be removed in version 3.0.0.",
178
183
  );
179
184
  if (!skus?.length) {
180
- return Promise.reject(new Error('"skus" is required'));
185
+ return Promise.reject(
186
+ new PurchaseError({
187
+ message: 'No SKUs provided',
188
+ code: ErrorCode.E_EMPTY_SKU_LIST,
189
+ }),
190
+ );
181
191
  }
182
192
 
183
193
  return Platform.select({
@@ -245,7 +255,10 @@ export const fetchProducts = async ({
245
255
  type?: 'inapp' | 'subs';
246
256
  }): Promise<Product[] | SubscriptionProduct[]> => {
247
257
  if (!skus?.length) {
248
- throw new Error('No SKUs provided');
258
+ throw new PurchaseError({
259
+ message: 'No SKUs provided',
260
+ code: ErrorCode.E_EMPTY_SKU_LIST,
261
+ });
249
262
  }
250
263
 
251
264
  if (Platform.OS === 'ios') {
@@ -344,7 +357,8 @@ export const getPurchaseHistory = ({
344
357
  console.warn(
345
358
  '`getPurchaseHistory` is deprecated. Use `getPurchaseHistories` instead. This function will be removed in version 3.0.0.',
346
359
  );
347
- return getPurchaseHistories({
360
+ // Use available purchases as a best-effort replacement
361
+ return getAvailablePurchases({
348
362
  alsoPublishToEventListenerIOS:
349
363
  alsoPublishToEventListenerIOS ?? alsoPublishToEventListener,
350
364
  onlyIncludeActiveItemsIOS:
@@ -352,42 +366,7 @@ export const getPurchaseHistory = ({
352
366
  });
353
367
  };
354
368
 
355
- /**
356
- * @deprecated Use getAvailablePurchases instead. This function is just calling getAvailablePurchases internally on iOS
357
- * and returns an empty array on Android (Google Play Billing v8 removed purchase history API).
358
- * Will be removed in v2.9.0
359
- */
360
- export const getPurchaseHistories = ({
361
- alsoPublishToEventListener = false,
362
- onlyIncludeActiveItems = false,
363
- alsoPublishToEventListenerIOS,
364
- onlyIncludeActiveItemsIOS,
365
- }: {
366
- /** @deprecated Use alsoPublishToEventListenerIOS instead */
367
- alsoPublishToEventListener?: boolean;
368
- /** @deprecated Use onlyIncludeActiveItemsIOS instead */
369
- onlyIncludeActiveItems?: boolean;
370
- alsoPublishToEventListenerIOS?: boolean;
371
- onlyIncludeActiveItemsIOS?: boolean;
372
- } = {}): Promise<Purchase[]> =>
373
- (
374
- Platform.select({
375
- ios: async () => {
376
- return ExpoIapModule.getAvailableItems(
377
- alsoPublishToEventListenerIOS ?? alsoPublishToEventListener,
378
- onlyIncludeActiveItemsIOS ?? onlyIncludeActiveItems,
379
- );
380
- },
381
- android: async () => {
382
- // getPurchaseHistoryByType was removed in Google Play Billing Library v8
383
- // Android doesn't provide purchase history anymore, only active purchases
384
- console.warn(
385
- 'getPurchaseHistories is not supported on Android with Google Play Billing Library v8. Use getAvailablePurchases instead to get active purchases.',
386
- );
387
- return [];
388
- },
389
- }) || (() => Promise.resolve([]))
390
- )();
369
+ // NOTE: `getPurchaseHistories` removed in v2.9.0. Use `getAvailablePurchases` instead.
391
370
 
392
371
  export const getAvailablePurchases = ({
393
372
  alsoPublishToEventListener = false,
@@ -652,15 +631,12 @@ export const finishTransaction = ({
652
631
 
653
632
  if (!token) {
654
633
  return Promise.reject(
655
- new PurchaseError(
656
- '[expo-iap]: PurchaseError',
657
- 'Purchase token is required to finish transaction',
658
- undefined,
659
- undefined,
660
- 'E_DEVELOPER_ERROR' as ErrorCode,
661
- androidPurchase.productId,
662
- 'android',
663
- ),
634
+ new PurchaseError({
635
+ message: 'Purchase token is required to finish transaction',
636
+ code: 'E_DEVELOPER_ERROR' as ErrorCode,
637
+ productId: androidPurchase.productId,
638
+ platform: 'android',
639
+ }),
664
640
  );
665
641
  }
666
642
 
@@ -9,7 +9,7 @@ import type {
9
9
  Product,
10
10
  Purchase,
11
11
  PurchaseError,
12
- ProductStatusIOS,
12
+ SubscriptionStatusIOS,
13
13
  AppTransactionIOS,
14
14
  } from '../ExpoIap.types';
15
15
  import {Linking} from 'react-native';
@@ -122,7 +122,7 @@ export const isEligibleForIntroOfferIOS = (
122
122
  */
123
123
  export const subscriptionStatusIOS = (
124
124
  sku: string,
125
- ): Promise<ProductStatusIOS[]> => {
125
+ ): Promise<SubscriptionStatusIOS[]> => {
126
126
  return ExpoIapModule.subscriptionStatusIOS(sku);
127
127
  };
128
128
 
@@ -310,12 +310,7 @@ export const requestPurchaseOnPromotedProductIOS = (): Promise<void> => {
310
310
  return ExpoIapModule.requestPurchaseOnPromotedProductIOS();
311
311
  };
312
312
 
313
- /**
314
- * @deprecated Use requestPurchaseOnPromotedProductIOS instead. Will be removed in v2.9.0
315
- */
316
- export const buyPromotedProductIOS = (): Promise<void> => {
317
- return requestPurchaseOnPromotedProductIOS();
318
- };
313
+ // NOTE: buyPromotedProductIOS removed in v2.9.0. Use requestPurchaseOnPromotedProductIOS.
319
314
 
320
315
  /**
321
316
  * Get pending transactions that haven't been finished yet (iOS only).
@@ -374,7 +369,7 @@ export const isEligibleForIntroOffer = (groupId: string): Promise<boolean> => {
374
369
  */
375
370
  export const subscriptionStatus = (
376
371
  sku: string,
377
- ): Promise<ProductStatusIOS[]> => {
372
+ ): Promise<SubscriptionStatusIOS[]> => {
378
373
  console.warn(
379
374
  '`subscriptionStatus` is deprecated. Use `subscriptionStatusIOS` instead. This function will be removed in version 3.0.0.',
380
375
  );
@@ -33,18 +33,6 @@ export type ProductAndroid = ProductCommon & {
33
33
  oneTimePurchaseOfferDetailsAndroid?: ProductAndroidOneTimePurchaseOfferDetail;
34
34
  platform: 'android';
35
35
  subscriptionOfferDetailsAndroid?: ProductSubscriptionAndroidOfferDetail[];
36
- /**
37
- * @deprecated Use `nameAndroid` instead. This field will be removed in v2.9.0.
38
- */
39
- name?: string;
40
- /**
41
- * @deprecated Use `oneTimePurchaseOfferDetailsAndroid` instead. This field will be removed in v2.9.0.
42
- */
43
- oneTimePurchaseOfferDetails?: ProductAndroidOneTimePurchaseOfferDetail;
44
- /**
45
- * @deprecated Use `subscriptionOfferDetailsAndroid` instead. This field will be removed in v2.9.0.
46
- */
47
- subscriptionOfferDetails?: ProductSubscriptionAndroidOfferDetail[];
48
36
  };
49
37
 
50
38
  type ProductSubscriptionAndroidOfferDetails = {
@@ -57,10 +45,6 @@ type ProductSubscriptionAndroidOfferDetails = {
57
45
 
58
46
  export type ProductSubscriptionAndroid = ProductAndroid & {
59
47
  subscriptionOfferDetailsAndroid: ProductSubscriptionAndroidOfferDetails[];
60
- /**
61
- * @deprecated Use `subscriptionOfferDetailsAndroid` instead. This field will be removed in v2.9.0.
62
- */
63
- subscriptionOfferDetails?: ProductSubscriptionAndroidOfferDetails[];
64
48
  };
65
49
 
66
50
  // Legacy naming for backward compatibility
@@ -137,10 +121,7 @@ export enum PurchaseAndroidState {
137
121
  }
138
122
 
139
123
  // Legacy naming for backward compatibility
140
- /**
141
- * @deprecated Use `PurchaseAndroidState` instead. This enum will be removed in v2.9.0.
142
- */
143
- export const PurchaseStateAndroid = PurchaseAndroidState;
124
+ // Removed legacy alias `PurchaseStateAndroid` in v2.9.0
144
125
 
145
126
  // Legacy naming for backward compatibility
146
127
  export type ProductPurchaseAndroid = PurchaseCommon & {
@@ -163,19 +144,4 @@ export type ProductPurchaseAndroid = PurchaseCommon & {
163
144
  // Preferred naming
164
145
  export type PurchaseAndroid = ProductPurchaseAndroid;
165
146
 
166
- // Legacy type aliases for backward compatibility
167
- /**
168
- * @deprecated Use `ProductAndroidOneTimePurchaseOfferDetail` instead. This type will be removed in v2.9.0.
169
- */
170
- export type OneTimePurchaseOfferDetails =
171
- ProductAndroidOneTimePurchaseOfferDetail;
172
-
173
- /**
174
- * @deprecated Use `ProductSubscriptionAndroidOfferDetail` instead. This type will be removed in v2.9.0.
175
- */
176
- export type SubscriptionOfferDetail = ProductSubscriptionAndroidOfferDetail;
177
-
178
- /**
179
- * @deprecated Use `ProductSubscriptionAndroidOfferDetails` instead. This type will be removed in v2.9.0.
180
- */
181
- export type SubscriptionOfferAndroid = ProductSubscriptionAndroidOfferDetails;
147
+ // Removed legacy Android alias types in v2.9.0
@@ -32,22 +32,6 @@ export type ProductIOS = ProductCommon & {
32
32
  jsonRepresentationIOS: string;
33
33
  platform: 'ios';
34
34
  subscriptionInfoIOS?: SubscriptionInfo;
35
- /**
36
- * @deprecated Use `displayNameIOS` instead. This field will be removed in v2.9.0.
37
- */
38
- displayName?: string;
39
- /**
40
- * @deprecated Use `isFamilyShareableIOS` instead. This field will be removed in v2.9.0.
41
- */
42
- isFamilyShareable?: boolean;
43
- /**
44
- * @deprecated Use `jsonRepresentationIOS` instead. This field will be removed in v2.9.0.
45
- */
46
- jsonRepresentation?: string;
47
- /**
48
- * @deprecated Use `subscriptionInfoIOS` instead. This field will be removed in v2.9.0.
49
- */
50
- subscription?: SubscriptionInfo;
51
35
  introductoryPriceNumberOfPeriodsIOS?: string;
52
36
  introductoryPriceSubscriptionPeriodIOS?: SubscriptionIosPeriod;
53
37
  };
@@ -72,14 +56,6 @@ export type ProductSubscriptionIOS = ProductIOS & {
72
56
  platform: 'ios';
73
57
  subscriptionPeriodNumberIOS?: string;
74
58
  subscriptionPeriodUnitIOS?: SubscriptionIosPeriod;
75
- /**
76
- * @deprecated Use `discountsIOS` instead. This field will be removed in v2.9.0.
77
- */
78
- discounts?: Discount[];
79
- /**
80
- * @deprecated Use `introductoryPriceIOS` instead. This field will be removed in v2.9.0.
81
- */
82
- introductoryPrice?: string;
83
59
  };
84
60
 
85
61
  // Legacy naming for backward compatibility
@@ -119,7 +95,7 @@ export type RequestPurchaseIosProps = {
119
95
  withOffer?: PaymentDiscount;
120
96
  };
121
97
 
122
- type SubscriptionStatus =
98
+ type SubscriptionState =
123
99
  | 'expired'
124
100
  | 'inBillingRetryPeriod'
125
101
  | 'inGracePeriod'
@@ -132,8 +108,8 @@ type RenewalInfo = {
132
108
  autoRenewPreference?: string;
133
109
  };
134
110
 
135
- export type ProductStatusIOS = {
136
- state: SubscriptionStatus;
111
+ export type SubscriptionStatusIOS = {
112
+ state: SubscriptionState;
137
113
  renewalInfo?: RenewalInfo;
138
114
  };
139
115