Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/jetpack/extensions/store/wordpress-com/ |
Upload File : |
/** * Plans actions */ export const ACTION_SET_PLANS = 'SET_PLANS'; export const ACTION_FETCH_FROM_API = 'FETCH_FROM_API'; /** * AI Assistant feature Actions */ export const ACTION_STORE_AI_ASSISTANT_FEATURE = 'STORE_AI_ASSISTANT_FEATURE'; export const ACTION_REQUEST_AI_ASSISTANT_FEATURE = 'REQUEST_AI_ASSISTANT_FEATURE'; export const ACTION_INCREASE_AI_ASSISTANT_REQUESTS_COUNT = 'INCREASE_AI_ASSISTANT_REQUESTS_COUNT'; export const ACTION_SET_AI_ASSISTANT_FEATURE_REQUIRE_UPGRADE = 'SET_AI_ASSISTANT_FEATURE_REQUIRE_UPGRADE'; export const ACTION_SET_TIER_PLANS_ENABLED = 'SET_TIER_PLANS_ENABLED'; /** * Endpoints */ export const ENDPOINT_AI_ASSISTANT_FEATURE = '/wpcom/v2/jetpack-ai/ai-assistant-feature'; /** * New AI Assistant feature async request */ export const FREE_PLAN_REQUESTS_LIMIT = 20; export const UNLIMITED_PLAN_REQUESTS_LIMIT = 999999999; export const ASYNC_REQUEST_COUNTDOWN_INIT_VALUE = 3; export const NEW_ASYNC_REQUEST_TIMER_INTERVAL = 5000; export const ACTION_DECREASE_NEW_ASYNC_REQUEST_COUNTDOWN = 'DECREASE_NEW_ASYNC_REQUEST_COUNTDOWN'; export const ACTION_ENQUEUE_ASYNC_REQUEST = 'ENQUEUE_ASYNC_COUNTDOWN_REQUEST'; export const ACTION_DEQUEUE_ASYNC_REQUEST = 'DEQUEUE_ASYNC_COUNTDOWN_REQUEST';