File size: 2,582 Bytes
a271c58 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | export interface PricingInnerInterface {
current: string;
month_price: number;
year_price: number;
channel?: number;
posts_per_month: number;
team_members: boolean;
community_features: boolean;
featured_by_gitroom: boolean;
ai: boolean;
import_from_channels: boolean;
image_generator?: boolean;
image_generation_count: number;
generate_videos: number;
public_api: boolean;
webhooks: number;
autoPost: boolean;
}
export interface PricingInterface {
[key: string]: PricingInnerInterface;
}
export const pricing: PricingInterface = {
FREE: {
current: 'FREE',
month_price: 0,
year_price: 0,
channel: 0,
image_generation_count: 0,
posts_per_month: 0,
team_members: false,
community_features: false,
featured_by_gitroom: false,
ai: false,
import_from_channels: false,
image_generator: false,
public_api: false,
webhooks: 0,
autoPost: false,
generate_videos: 0,
},
STANDARD: {
current: 'STANDARD',
month_price: 29,
year_price: 278,
channel: 5,
posts_per_month: 400,
image_generation_count: 20,
team_members: false,
ai: true,
community_features: false,
featured_by_gitroom: false,
import_from_channels: true,
image_generator: false,
public_api: true,
webhooks: 2,
autoPost: false,
generate_videos: 3,
},
TEAM: {
current: 'TEAM',
month_price: 39,
year_price: 374,
channel: 10,
posts_per_month: 1000000,
image_generation_count: 100,
community_features: true,
team_members: true,
featured_by_gitroom: true,
ai: true,
import_from_channels: true,
image_generator: true,
public_api: true,
webhooks: 10,
autoPost: true,
generate_videos: 10,
},
PRO: {
current: 'PRO',
month_price: 49,
year_price: 470,
channel: 30,
posts_per_month: 1000000,
image_generation_count: 300,
community_features: true,
team_members: true,
featured_by_gitroom: true,
ai: true,
import_from_channels: true,
image_generator: true,
public_api: true,
webhooks: 30,
autoPost: true,
generate_videos: 30,
},
ULTIMATE: {
current: 'ULTIMATE',
month_price: 99,
year_price: 950,
channel: 100,
posts_per_month: 1000000,
image_generation_count: 500,
community_features: true,
team_members: true,
featured_by_gitroom: true,
ai: true,
import_from_channels: true,
image_generator: true,
public_api: true,
webhooks: 10000,
autoPost: true,
generate_videos: 60,
},
};
|