mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs https://github.com/TryGhost/Team/issues/1505 refs https://github.com/TryGhost/Team/issues/1466 Exposes an API for historical counts broken down by tier and cadence. Counts backwards from the current stats like MRR to minimize inaccruate data due to missing/superfluous events.
123 lines
3.4 KiB
Text
123 lines
3.4 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Stats API Can fetch MRR history 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {
|
|
"totals": Array [
|
|
Object {
|
|
"currency": "usd",
|
|
"mrr": 1000,
|
|
},
|
|
],
|
|
},
|
|
"stats": Array [
|
|
Object {
|
|
"currency": "usd",
|
|
"date": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}/,
|
|
"mrr": 0,
|
|
},
|
|
Object {
|
|
"currency": "usd",
|
|
"date": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}/,
|
|
"mrr": 1000,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Stats API Can fetch MRR history 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "158",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Stats API Can fetch member count history 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {
|
|
"totals": Object {
|
|
"comped": 0,
|
|
"free": 3,
|
|
"paid": 5,
|
|
},
|
|
},
|
|
"stats": Array [
|
|
Object {
|
|
"comped": 0,
|
|
"date": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}/,
|
|
"free": 3,
|
|
"paid": 5,
|
|
"paid_canceled": 0,
|
|
"paid_subscribed": 0,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Stats API Can fetch member count history 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "149",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Stats API Can fetch subscriptions history 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {
|
|
"cadences": Array [
|
|
"year",
|
|
"month",
|
|
],
|
|
"tiers": Array [
|
|
StringMatching /\\[a-f0-9\\]\\{24\\}/,
|
|
],
|
|
"totals": Array [
|
|
Object {
|
|
"cadence": "month",
|
|
"count": 1,
|
|
"tier": StringMatching /\\[a-f0-9\\]\\{24\\}/,
|
|
},
|
|
],
|
|
},
|
|
"stats": Array [
|
|
Object {
|
|
"cadence": "month",
|
|
"count": 1,
|
|
"date": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}/,
|
|
"negative_delta": 0,
|
|
"positive_delta": 1,
|
|
"tier": StringMatching /\\[a-f0-9\\]\\{24\\}/,
|
|
},
|
|
Object {
|
|
"cadence": "year",
|
|
"count": 0,
|
|
"date": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}/,
|
|
"negative_delta": 0,
|
|
"positive_delta": 0,
|
|
"tier": StringMatching /\\[a-f0-9\\]\\{24\\}/,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Stats API Can fetch subscriptions history 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "403",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|