feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -0,0 +1,29 @@
const stableUseIapResult = {
connected: false,
products: [],
subscriptions: [],
availablePurchases: [],
activeSubscriptions: [],
fetchProducts: jest.fn(async () => undefined),
requestPurchase: jest.fn(async () => undefined),
restorePurchases: jest.fn(async () => undefined),
reconnect: jest.fn(async () => false),
finishTransaction: jest.fn(async () => undefined),
getAvailablePurchases: jest.fn(async () => undefined),
getActiveSubscriptions: jest.fn(async () => []),
hasActiveSubscriptions: jest.fn(async () => false),
}
const getAvailablePurchases = jest.fn(async () => [])
module.exports = {
ErrorCode: {
UserCancelled: 'user-cancelled',
Pending: 'pending',
DeferredPayment: 'deferred-payment',
},
deepLinkToSubscriptions: jest.fn(async () => undefined),
getAvailablePurchases,
useIAP: jest.fn(() => stableUseIapResult),
__stableUseIapResult: stableUseIapResult,
}