make CanDoPurchaseRequest.type optional

This commit is contained in:
Jonas Lochmann
2026-06-08 02:00:00 +02:00
parent 48d6a061f8
commit 2f35b969bf
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ export interface CreateRegisterDeviceTokenRequest {
}
export interface CanDoPurchaseRequest {
type: 'googleplay' | 'any'
type?: 'googleplay' | 'any'
deviceAuthToken: string
}