-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better logs for promotional offer view #4336
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
{ | ||
"appPolicies" : { | ||
"eula" : "", | ||
"policies" : [ | ||
{ | ||
"locale" : "en_US", | ||
"policyText" : "", | ||
"policyURL" : "" | ||
} | ||
] | ||
}, | ||
"identifier" : "882C6E98", | ||
"nonRenewingSubscriptions" : [ | ||
|
||
|
@@ -37,8 +47,8 @@ | |
], | ||
"settings" : { | ||
"_failTransactionsEnabled" : false, | ||
"_locale" : "es_ES", | ||
"_storefront" : "ESP", | ||
"_locale" : "en_US", | ||
"_storefront" : "USA", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just checking but any reason to change the storefront/locale? I'm ok with the change though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is intentional, should've mention it in the description. This was causing the paywalls tester to have a mix of Spanish (subscription name) and English and figured we didn't want that. |
||
"_storeKitErrors" : [ | ||
{ | ||
"current" : null, | ||
|
@@ -97,7 +107,21 @@ | |
"subscriptions" : [ | ||
{ | ||
"adHocOffers" : [ | ||
|
||
{ | ||
"internalID" : "35E3C9F3", | ||
"offerID" : "rc-cancel-offer", | ||
"paymentMode" : "free", | ||
"referenceName" : "rc-cancel-offer", | ||
"subscriptionPeriod" : "P1M" | ||
}, | ||
{ | ||
"displayPrice" : "0.99", | ||
"internalID" : "75357B47", | ||
"offerID" : "rc-refund-offer", | ||
"paymentMode" : "payUpFront", | ||
"referenceName" : "rc-refund-offer", | ||
"subscriptionPeriod" : "P1M" | ||
} | ||
], | ||
"codeOffers" : [ | ||
|
||
|
@@ -132,7 +156,10 @@ | |
"recurringSubscriptionPeriod" : "P1M", | ||
"referenceName" : "Monthly", | ||
"subscriptionGroupID" : "CEEF018E", | ||
"type" : "RecurringSubscription" | ||
"type" : "RecurringSubscription", | ||
"winbackOffers" : [ | ||
|
||
] | ||
}, | ||
{ | ||
"adHocOffers" : [ | ||
|
@@ -167,7 +194,10 @@ | |
"recurringSubscriptionPeriod" : "P1Y", | ||
"referenceName" : "Yearly", | ||
"subscriptionGroupID" : "CEEF018E", | ||
"type" : "RecurringSubscription" | ||
"type" : "RecurringSubscription", | ||
"winbackOffers" : [ | ||
|
||
] | ||
}, | ||
{ | ||
"adHocOffers" : [ | ||
|
@@ -192,13 +222,16 @@ | |
"recurringSubscriptionPeriod" : "P1W", | ||
"referenceName" : "Weekly", | ||
"subscriptionGroupID" : "CEEF018E", | ||
"type" : "RecurringSubscription" | ||
"type" : "RecurringSubscription", | ||
"winbackOffers" : [ | ||
|
||
] | ||
} | ||
] | ||
} | ||
], | ||
"version" : { | ||
"major" : 3, | ||
"major" : 4, | ||
"minor" : 0 | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm I'm not sure if these should be warnings or
debug
... seems like a case that may happen somewhat often if the customer is not eligible by apple? Not a strong opinion thoughThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That will actually fail later, this will fail if the active product's discounts don't match with the promotional offers in the Customer Center config.
I actually think it could be a debug yes, I will change it