affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
34 lines
816 B
JavaScript
34 lines
816 B
JavaScript
/* eslint-disable camelcase */
|
|
export default [
|
|
{
|
|
id: '1',
|
|
active: true,
|
|
benefits: [],
|
|
createdAt: '2022-02-04T13:11:40.000Z',
|
|
description: null,
|
|
monthlyPrice: null,
|
|
name: 'Free',
|
|
slug: 'free',
|
|
type: 'free',
|
|
visibility: 'public',
|
|
updatedAt: '2022-02-04T13:34:53.000Z',
|
|
welcomePageUrl: null,
|
|
yearlyPrice: null
|
|
},
|
|
{
|
|
id: '2',
|
|
active: true,
|
|
benefits: [],
|
|
createdAt: '2022-02-04T13:11:40.000Z',
|
|
description: null,
|
|
monthlyPrice: null,
|
|
name: 'Default Tier',
|
|
slug: 'default-tier',
|
|
type: 'paid',
|
|
visibility: 'public',
|
|
updatedAt: '2022-02-04T13:11:40.000Z',
|
|
welcomePageUrl: null,
|
|
yearlyPrice: null
|
|
}
|
|
];
|