* Notifies the App Store that your server finished processing a transaction. * https://developer.apple.com/documentation/appstoreserverapi/finish-transaction
(transactionId: string)
| 97 | * https://developer.apple.com/documentation/appstoreserverapi/finish-transaction |
| 98 | */ |
| 99 | async finishTransaction(transactionId: string): Promise<void> { |
| 100 | return this.makeRequest("POST", `/inApps/v1/transactions/${transactionId}/finish`) |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * https://developer.apple.com/documentation/appstoreserverapi/get_all_subscription_statuses |
nothing calls this directly
no test coverage detected