/** * Logger class * Describes a logger instance * * Based on PSR-3: http://www.php-fig.org/psr/psr-3/ * * The message MUST be a string or object implementing __toString(). * * The message MAY contain placeholders in the form: {foo} where foo * will be replaced by the context data in key "foo". * * The context array can contain arbitrary data, the only assumption that * can be made by implementors is that if an Exception instance is given * to produce a stack trace, it MUST be in a key named "exception". * * See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md * for the full interface specification. * * @see https://github.com/humanmade/WordPress-Importer/blob/master/class-logger.php * @package Kadence Starter Templates */ namespace KadenceWP\KadenceStarterTemplates; if ( ! defined( 'ABSPATH' ) ) { exit; } class Logger_CLI extends Logger { public $min_level = 'notice'; /** * Variable for front-end error display. * * @var string */ public $error_output = ''; /** * Overwritten log function from WP_Importer_Logger_CLI. * * Logs with an arbitrary level. * * @param mixed $level level of reporting. * @param string $message log message. * @param array $context context to the log message. */ public function log( $level, $message, array $context = array() ) { // Save error messages for front-end display. $this->error_output( $level, $message, $context = array() ); if ( $this->level_to_numeric( $level ) < $this->level_to_numeric( $this->min_level ) ) { return; } printf( '[%s] %s' . PHP_EOL, strtoupper( $level ), $message ); } /** * Save messages for error output. * Only the messages greater then Error. * * @param mixed $level level of reporting. * @param string $message log message. * @param array $context context to the log message. */ public function error_output( $level, $message, array $context = array() ) { if ( $this->level_to_numeric( $level ) < $this->level_to_numeric( 'error' ) ) { return; } $this->error_output .= sprintf( '[%s] %s
', strtoupper( $level ), $message ); } public static function level_to_numeric( $level ) { $levels = array( 'emergency' => 8, 'alert' => 7, 'critical' => 6, 'error' => 5, 'warning' => 4, 'notice' => 3, 'info' => 2, 'debug' => 1, ); if ( ! isset( $levels[ $level ] ) ) { return 0; } return $levels[ $level ]; } }/** * Kadence Blocks Helper Functions * * @since 1.8.0 * @package Kadence Blocks */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } use function KadenceWP\KadenceStarterTemplates\StellarWP\Uplink\get_license_key; use function KadenceWP\KadenceStarterTemplates\StellarWP\Uplink\get_original_domain; /** * Get the license data for the plugin. */ function kadence_starter_templates_get_license_data() { $data = []; if ( function_exists( 'kadence_blocks_get_current_license_data' ) ) { $data = kadence_blocks_get_current_license_data(); } if ( empty( $data['key'] ) && function_exists( 'KadenceWP\KadencePro\StellarWP\Uplink\get_license_key' ) ) { $data = [ 'key' => \KadenceWP\KadencePro\StellarWP\Uplink\get_license_key( 'kadence-theme-pro' ), 'product' => 'kadence-theme-pro', 'email' => '', ]; } if ( empty( $data['key'] ) ) { $data = [ 'key' => get_license_key( 'kadence-starter-templates' ), 'product' => 'kadence-starter-templates', 'email' => '', ]; } $license_data = [ 'api_key' => ( ! empty( $data['key'] ) ? $data['key'] : '' ), 'api_email' => ( ! empty( $data['email'] ) ? $data['email'] : '' ), // Backwards compatibility with older licensing. 'site_url' => get_original_domain(), 'product_slug' => ( ! empty( $data['product'] ) ? $data['product'] : 'kadence-starter-templates' ), 'env' => kadence_starter_templates_get_current_env(), ]; return $license_data; } /** * Get the current environment. */ function kadence_starter_templates_get_current_env() { if ( defined( 'STELLARWP_UPLINK_API_BASE_URL' ) ) { switch ( STELLARWP_UPLINK_API_BASE_URL ) { case 'https://licensing-dev.stellarwp.com': return 'dev'; case 'https://licensing-staging.stellarwp.com': return 'staging'; } } return ''; }/** * The admin settings handler of the plugin. * * Handles saving and validating settings from the admin UI and network admin. * * @since 1.1.0 * @package LiteSpeed */ namespace LiteSpeed; defined( 'WPINC' ) || exit(); /** * Class Admin_Settings * * Saves, sanitizes, and validates LiteSpeed Cache settings. */ class Admin_Settings extends Base { const LOG_TAG = '[Settings]'; const ENROLL = '_settings-enroll'; /** * Save settings (single site). * * Accepts data from $_POST or WP-CLI. * Importers may call the Conf class directly. * * @since 3.0 * * @param array $raw_data Raw data from request/CLI. * @return void */ public function save( $raw_data ) { self::debug( 'saving' ); if ( empty( $raw_data[ self::ENROLL ] ) ) { wp_die( esc_html__( 'No fields', 'litespeed-cache' ) ); } $raw_data = Admin::cleanup_text( $raw_data ); // Convert data to config format. $the_matrix = []; foreach ( array_unique( $raw_data[ self::ENROLL ] ) as $id ) { $child = false; // Drop array format. if ( false !== strpos( $id, '[' ) ) { if ( 0 === strpos( $id, self::O_CDN_MAPPING ) || 0 === strpos( $id, self::O_CRAWLER_COOKIES ) ) { // CDN child | Cookie Crawler settings. $child = substr( $id, strpos( $id, '[' ) + 1, strpos( $id, ']' ) - strpos( $id, '[' ) - 1 ); // Drop ending []; Compatible with xx[0] way from CLI. $id = substr( $id, 0, strpos( $id, '[' ) ); } else { // Drop ending []. $id = substr( $id, 0, strpos( $id, '[' ) ); } } if ( ! array_key_exists( $id, self::$_default_options ) ) { continue; } // Validate $child. if ( self::O_CDN_MAPPING === $id ) { if ( ! in_array( $child, [ self::CDN_MAPPING_URL, self::CDN_MAPPING_INC_IMG, self::CDN_MAPPING_INC_CSS, self::CDN_MAPPING_INC_JS, self::CDN_MAPPING_FILETYPE ], true ) ) { continue; } } if ( self::O_CRAWLER_COOKIES === $id ) { if ( ! in_array( $child, [ self::CRWL_COOKIE_NAME, self::CRWL_COOKIE_VALS ], true ) ) { continue; } } // Pull value from request. if ( $child ) { // []=xxx or [0]=xxx $data = ! empty( $raw_data[ $id ][ $child ] ) ? $raw_data[ $id ][ $child ] : $this->type_casting(false, $id); } else { $data = ! empty( $raw_data[ $id ] ) ? $raw_data[ $id ] : $this->type_casting(false, $id); } // Sanitize/normalize complex fields. if ( self::O_CDN_MAPPING === $id || self::O_CRAWLER_COOKIES === $id ) { // Use existing queued data if available (only when $child != false). $data2 = array_key_exists( $id, $the_matrix ) ? $the_matrix[ $id ] : ( defined( 'WP_CLI' ) && WP_CLI ? $this->conf( $id ) : [] ); } switch ( $id ) { // Don't allow Editor/admin to be used in crawler role simulator. case self::O_CRAWLER_ROLES: $data = Utility::sanitize_lines( $data ); if ( $data ) { foreach ( $data as $k => $v ) { if ( user_can( $v, 'edit_posts' ) ) { /* translators: %s: user id in tags */ $msg = sprintf( esc_html__( 'The user with id %s has editor access, which is not allowed for the role simulator.', 'litespeed-cache' ), '' . esc_html( $v ) . '' ); Admin_Display::error( $msg ); unset( $data[ $k ] ); } } } break; case self::O_CDN_MAPPING: /** * CDN setting * * Raw data format: * cdn-mapping[url][] = 'xxx' * cdn-mapping[url][2] = 'xxx2' * cdn-mapping[inc_js][] = 1 * * Final format: * cdn-mapping[0][url] = 'xxx' * cdn-mapping[2][url] = 'xxx2' */ if ( $data ) { foreach ( $data as $k => $v ) { if ( self::CDN_MAPPING_FILETYPE === $child ) { $v = Utility::sanitize_lines( $v ); } if ( self::CDN_MAPPING_URL === $child ) { // If not a valid URL, turn off CDN. if ( 0 !== strpos( $v, 'https://' ) ) { self::debug( '❌ CDN mapping set to OFF due to invalid URL' ); $the_matrix[ self::O_CDN ] = false; } $v = trailingslashit( $v ); } if ( in_array( $child, [ self::CDN_MAPPING_INC_IMG, self::CDN_MAPPING_INC_CSS, self::CDN_MAPPING_INC_JS ], true ) ) { // Because these can't be auto detected in `config->update()`, need to format here. $v = 'false' === $v ? 0 : (bool) $v; } if ( empty( $data2[ $k ] ) ) { $data2[ $k ] = []; } $data2[ $k ][ $child ] = $v; } } $data = $data2; break; case self::O_CRAWLER_COOKIES: /** * Cookie Crawler setting * Raw Format: * crawler-cookies[name][] = xxx * crawler-cookies[name][2] = xxx2 * crawler-cookies[vals][] = xxx * * Final format: * crawler-cookie[0][name] = 'xxx' * crawler-cookie[0][vals] = 'xxx' * crawler-cookie[2][name] = 'xxx2' * * Empty line for `vals` uses literal `_null`. */ if ( $data ) { foreach ( $data as $k => $v ) { if ( self::CRWL_COOKIE_VALS === $child ) { $v = Utility::sanitize_lines( $v ); } if ( empty( $data2[ $k ] ) ) { $data2[ $k ] = []; } $data2[ $k ][ $child ] = $v; } } $data = $data2; break; // Cache exclude category. case self::O_CACHE_EXC_CAT: $data2 = []; $data = Utility::sanitize_lines( $data ); foreach ( $data as $v ) { $cat_id = get_cat_ID( $v ); if ( ! $cat_id ) { continue; } $data2[] = $cat_id; } $data = $data2; break; // Cache exclude tag. case self::O_CACHE_EXC_TAG: $data2 = []; $data = Utility::sanitize_lines( $data ); foreach ( $data as $v ) { $term = get_term_by( 'name', $v, 'post_tag' ); if ( ! $term ) { // Could surface an admin error here if desired. continue; } $data2[] = $term->term_id; } $data = $data2; break; case self::O_IMG_OPTM_SIZES_SKIPPED: // Skip image sizes $image_sizes = Utility::prepare_image_sizes_array(); $saved_sizes = isset( $raw_data[$id] ) ? $raw_data[$id] : []; $data = array_diff( $image_sizes, $saved_sizes ); break; default: break; } $the_matrix[ $id ] = $data; } // Special handler for CDN/Crawler 2d list to drop empty rows. foreach ( $the_matrix as $id => $data ) { /** * Format: * cdn-mapping[0][url] = 'xxx' * cdn-mapping[2][url] = 'xxx2' * crawler-cookie[0][name] = 'xxx' * crawler-cookie[0][vals] = 'xxx' * crawler-cookie[2][name] = 'xxx2' */ if ( self::O_CDN_MAPPING === $id || self::O_CRAWLER_COOKIES === $id ) { // Drop row if all children are empty. foreach ( $data as $k => $v ) { foreach ( $v as $v2 ) { if ( $v2 ) { continue 2; } } // All empty. unset( $the_matrix[ $id ][ $k ] ); } } // Don't allow repeated cookie names. if ( self::O_CRAWLER_COOKIES === $id ) { $existed = []; foreach ( $the_matrix[ $id ] as $k => $v ) { if ( empty( $v[ self::CRWL_COOKIE_NAME ] ) || in_array( $v[ self::CRWL_COOKIE_NAME ], $existed, true ) ) { // Filter repeated or empty name. unset( $the_matrix[ $id ][ $k ] ); continue; } $existed[] = $v[ self::CRWL_COOKIE_NAME ]; } } // tmp fix the 3rd part woo update hook issue when enabling vary cookie. if ( 'wc_cart_vary' === $id ) { if ( $data ) { add_filter( 'litespeed_vary_cookies', function ( $arr ) { $arr[] = 'woocommerce_cart_hash'; return array_unique( $arr ); } ); } else { add_filter( 'litespeed_vary_cookies', function ( $arr ) { $key = array_search( 'woocommerce_cart_hash', $arr, true ); if ( false !== $key ) { unset( $arr[ $key ] ); } return array_unique( $arr ); } ); } } } // id validation will be inside. $this->cls( 'Conf' )->update_confs( $the_matrix ); $msg = __( 'Options saved.', 'litespeed-cache' ); Admin_Display::success( $msg ); } /** * Parses any changes made by the network admin on the network settings. * * @since 3.0 * * @param array $raw_data Raw data from request/CLI. * @return void */ public function network_save( $raw_data ) { self::debug( 'network saving' ); if ( empty( $raw_data[ self::ENROLL ] ) ) { wp_die( esc_html__( 'No fields', 'litespeed-cache' ) ); } $raw_data = Admin::cleanup_text( $raw_data ); foreach ( array_unique( $raw_data[ self::ENROLL ] ) as $id ) { // Append current field to setting save. if ( ! array_key_exists( $id, self::$_default_site_options ) ) { continue; } $data = ! empty( $raw_data[ $id ] ) ? $raw_data[ $id ] : false; // id validation will be inside. $this->cls( 'Conf' )->network_update( $id, $data ); } // Update related files. Activation::cls()->update_files(); $msg = __( 'Options saved.', 'litespeed-cache' ); Admin_Display::success( $msg ); } /** * Hooked to the wp_redirect filter when saving widgets fails validation. * * @since 1.1.3 * * @param string $location The redirect location. * @return string Updated location string. */ public static function widget_save_err( $location ) { return str_replace( '?message=0', '?error=0', $location ); } /** * Validate the LiteSpeed Cache settings on widget save. * * @since 1.1.3 * * @param array $instance The new settings. * @param array $new_instance The raw submitted settings. * @param array $old_instance The original settings. * @param \WP_Widget $widget The widget instance. * @return array|false Updated settings on success, false on error. */ public static function validate_widget_save( $instance, $new_instance, $old_instance, $widget ) { if ( empty( $new_instance ) ) { return $instance; } if ( ! isset( $new_instance[ ESI::WIDGET_O_ESIENABLE ], $new_instance[ ESI::WIDGET_O_TTL ] ) ) { return $instance; } $esi = (int) $new_instance[ ESI::WIDGET_O_ESIENABLE ] % 3; $ttl = (int) $new_instance[ ESI::WIDGET_O_TTL ]; if ( 0 !== $ttl && $ttl < 30 ) { add_filter( 'wp_redirect', __CLASS__ . '::widget_save_err' ); return false; // Invalid ttl. } if ( empty( $instance[ Conf::OPTION_NAME ] ) ) { // @todo to be removed. $instance[ Conf::OPTION_NAME ] = []; } $instance[ Conf::OPTION_NAME ][ ESI::WIDGET_O_ESIENABLE ] = $esi; $instance[ Conf::OPTION_NAME ][ ESI::WIDGET_O_TTL ] = $ttl; $current = ! empty( $old_instance[ Conf::OPTION_NAME ] ) ? $old_instance[ Conf::OPTION_NAME ] : false; // Avoid unsanitized superglobal usage. $referrer = isset( $_SERVER['HTTP_REFERER'] ) ? esc_url_raw( wp_unslash( $_SERVER['HTTP_REFERER'] ) ) : ''; // Only purge when not in the Customizer. if ( false === strpos( $referrer, '/wp-admin/customize.php' ) ) { if ( ! $current || $esi !== (int) $current[ ESI::WIDGET_O_ESIENABLE ] ) { Purge::purge_all( 'Widget ESI_enable changed' ); } elseif ( 0 !== $ttl && $ttl !== (int) $current[ ESI::WIDGET_O_TTL ] ) { Purge::add( Tag::TYPE_WIDGET . $widget->id ); } Purge::purge_all( 'Widget saved' ); } return $instance; } } /** * Guest mode management class. * * Handles syncing of Guest Mode IP and UA lists from QUIC.cloud. * * @package LiteSpeed * @since 7.7 */ namespace LiteSpeed; defined( 'WPINC' ) || exit(); /** * Class Guest * * Extends Cloud class to provide Guest Mode related functionality. */ class Guest extends Cloud { const LOG_TAG = '👤'; const TYPE_SYNC = 'sync'; /** * Cron handler for daily Guest Mode sync. * * @since 7.7 * @return void */ public static function cron() { self::debug( 'Cron: starting daily sync' ); self::cls()->sync_lists(); } /** * Sync Guest Mode IP and UA lists. * * Fetches the latest IP and UA lists from QUIC.cloud API and saves them locally. * * @since 7.7 * @return array{success: bool, message: string} */ public function sync_lists() { self::debug( 'Starting Guest Mode lists sync' ); $cloud_dir = LITESPEED_STATIC_DIR . '/cloud'; $results = [ 'ips' => false, 'uas' => false, ]; foreach ( [ 'ips', 'uas' ] as $type ) { $data = $this->_fetch_api( $this->_cloud_server_wp . '/gm_' . $type ); if ( $data && File::save( $cloud_dir . '/gm_' . $type . '.txt', $data, true ) ) { self::debug( 'Guest Mode ' . $type . ' synced' ); $results[ $type ] = true; } } $success = $results['ips'] && $results['uas']; $message = $success ? __( 'Guest Mode lists synced successfully.', 'litespeed-cache' ) : __( 'Failed to sync Guest Mode lists.', 'litespeed-cache' ); return [ 'success' => $success, 'message' => $message, ]; } /** * Fetch data from API. * * @since 7.7 * @param string $url API URL. * @return string|false Data on success, false on failure. */ private function _fetch_api( $url ) { self::debug( 'Fetching: ' . $url ); $response = wp_remote_get( $url, [ 'timeout' => 15, ] ); if ( is_wp_error( $response ) ) { self::debug( 'Fetch error: ' . $response->get_error_message() ); return false; } $code = wp_remote_retrieve_response_code( $response ); if ( 200 !== $code ) { self::debug( 'Fetch failed with code: ' . $code ); return false; } $body = wp_remote_retrieve_body( $response ); if ( empty( $body ) ) { self::debug( 'Empty response body' ); return false; } return $body; } /** * Handle all request actions from main class. * * @since 7.7 * @return void */ public function handler() { $type = Router::verify_type(); switch ( $type ) { case self::TYPE_SYNC: $result = $this->sync_lists(); if ( Router::is_ajax() ) { wp_send_json( $result ); } if ( $result['success'] ) { Admin_Display::success( $result['message'] ); } else { Admin_Display::error( $result['message'] ); } break; default: break; } Admin::redirect(); } } /*! elementor - v3.23.0 - 05-08-2024 */ /*! For license information please see common.min.js.LICENSE.txt */ (()=>{var C={71177:(C,T,B)=>{"use strict";function n(C){for(var T=arguments.length,B=Array(T>1?T-1:0),q=1;q3?T.i-4:T.i:Array.isArray(C)?1:s(C)?2:v(C)?3:0}function u(C,T){return 2===o(C)?C.has(T):Object.prototype.hasOwnProperty.call(C,T)}function a(C,T){return 2===o(C)?C.get(T):C[T]}function f(C,T,B){var q=o(C);2===q?C.set(T,B):3===q?C.add(B):C[T]=B}function c(C,T){return C===T?0!==C||1/C==1/T:C!=C&&T!=T}function s(C){return L&&C instanceof Map}function v(C){return $&&C instanceof Set}function p(C){return C.o||C.t}function l(C){if(Array.isArray(C))return Array.prototype.slice.call(C);var T=X(C);delete T[K];for(var B=J(T),q=0;q1&&(C.set=C.add=C.clear=C.delete=h),Object.freeze(C),T&&i(C,(function(C,T){return d(T,!0)}),!0)),C}function h(){n(2)}function y(C){return null==C||"object"!=typeof C||Object.isFrozen(C)}function b(C){var T=Y[C];return T||n(18,C),T}function m(C,T){Y[C]||(Y[C]=T)}function _(){return W}function j(C,T){T&&(b("Patches"),C.u=[],C.s=[],C.v=T)}function g(C){O(C),C.p.forEach(S),C.p=null}function O(C){C===W&&(W=C.l)}function w(C){return W={p:[],l:W,h:C,m:!0,_:0}}function S(C){var T=C[K];0===T.i||1===T.i?T.j():T.g=!0}function P(C,T){T._=T.p.length;var B=T.p[0],q=void 0!==C&&C!==B;return T.h.O||b("ES5").S(T,C,q),q?(B[K].P&&(g(T),n(4)),t(C)&&(C=M(T,C),T.l||x(T,C)),T.u&&b("Patches").M(B[K].t,C,T.u,T.s)):C=M(T,B,[]),g(T),T.u&&T.v(T.u,T.s),C!==H?C:void 0}function M(C,T,B){if(y(T))return T;var q=T[K];if(!q)return i(T,(function(W,U){return A(C,q,T,W,U,B)}),!0),T;if(q.A!==C)return T;if(!q.P)return x(C,q.t,!0),q.t;if(!q.I){q.I=!0,q.A._--;var W=4===q.i||5===q.i?q.o=l(q.k):q.o,U=W,L=!1;3===q.i&&(U=new Set(W),W.clear(),L=!0),i(U,(function(T,U){return A(C,q,W,T,U,B,L)})),x(C,W,!1),B&&C.u&&b("Patches").N(q,B,C.u,C.s)}return q.o}function A(C,T,B,q,W,U,L){if(r(W)){var $=M(C,W,U&&T&&3!==T.i&&!u(T.R,q)?U.concat(q):void 0);if(f(B,q,$),!r($))return;C.m=!1}else L&&B.add(W);if(t(W)&&!y(W)){if(!C.h.D&&C._<1)return;M(C,W),T&&T.A.l||x(C,W)}}function x(C,T,B){void 0===B&&(B=!1),!C.l&&C.h.D&&C.m&&d(T,B)}function z(C,T){var B=C[K];return(B?p(B):C)[T]}function I(C,T){if(T in C)for(var B=Object.getPrototypeOf(C);B;){var q=Object.getOwnPropertyDescriptor(B,T);if(q)return q;B=Object.getPrototypeOf(B)}}function k(C){C.P||(C.P=!0,C.l&&k(C.l))}function E(C){C.o||(C.o=l(C.t))}function N(C,T,B){var q=s(T)?b("MapSet").F(T,B):v(T)?b("MapSet").T(T,B):C.O?function(C,T){var B=Array.isArray(C),q={i:B?1:0,A:T?T.A:_(),P:!1,I:!1,R:{},l:T,t:C,k:null,o:null,j:null,C:!1},W=q,U=Z;B&&(W=[q],U=ee);var L=Proxy.revocable(W,U),$=L.revoke,V=L.proxy;return q.k=V,q.j=$,V}(T,B):b("ES5").J(T,B);return(B?B.A:_()).p.push(q),q}function R(C){return r(C)||n(22,C),function n(C){if(!t(C))return C;var T,B=C[K],q=o(C);if(B){if(!B.P&&(B.i<4||!b("ES5").K(B)))return B.t;B.I=!0,T=D(C,q),B.I=!1}else T=D(C,q);return i(T,(function(C,q){B&&a(B.t,C)===q||f(T,C,n(q))})),3===q?new Set(T):T}(C)}function D(C,T){switch(T){case 2:return new Map(C);case 3:return Array.from(C)}return l(C)}function F(){function t(T,B){var q=C[T];return q?q.enumerable=B:C[T]=q={configurable:!0,enumerable:B,get:function(){var C=this[K];return Z.get(C,T)},set:function(C){var B=this[K];Z.set(B,T,C)}},q}function e(C){for(var T=C.length-1;T>=0;T--){var B=C[T][K];if(!B.P)switch(B.i){case 5:a(B)&&k(B);break;case 4:o(B)&&k(B)}}}function o(C){for(var T=C.t,B=C.k,q=J(B),W=q.length-1;W>=0;W--){var U=q[W];if(U!==K){var L=T[U];if(void 0===L&&!u(T,U))return!0;var $=B[U],V=$&&$[K];if(V?V.t!==L:!c($,L))return!0}}var H=!!T[K];return q.length!==J(T).length+(H?0:1)}function a(C){var T=C.k;if(T.length!==C.t.length)return!0;var B=Object.getOwnPropertyDescriptor(T,T.length-1);if(B&&!B.get)return!0;for(var q=0;qCe,MiddlewareArray:()=>ke,SHOULD_AUTOBATCH:()=>ze,TaskAbortError:()=>Be,__DO_NOT_USE__ActionTypes:()=>ue,addListener:()=>Ue,applyMiddleware:()=>applyMiddleware,autoBatchEnhancer:()=>autoBatchEnhancer,bindActionCreators:()=>bindActionCreators,clearAllListeners:()=>Le,combineReducers:()=>combineReducers,compose:()=>compose,configureStore:()=>configureStore,createAction:()=>createAction,createActionCreatorInvariantMiddleware:()=>createActionCreatorInvariantMiddleware,createAsyncThunk:()=>Pe,createDraftSafeSelector:()=>createDraftSafeSelector,createEntityAdapter:()=>createEntityAdapter,createImmutableStateInvariantMiddleware:()=>createImmutableStateInvariantMiddleware,createListenerMiddleware:()=>createListenerMiddleware,createNextState:()=>oe,createReducer:()=>createReducer,createSelector:()=>fe,createSerializableStateInvariantMiddleware:()=>createSerializableStateInvariantMiddleware,createSlice:()=>createSlice,createStore:()=>createStore,current:()=>R,findNonSerializableValue:()=>findNonSerializableValue,freeze:()=>d,getDefaultMiddleware:()=>getDefaultMiddleware,getType:()=>getType,isAction:()=>isAction,isActionCreator:()=>isActionCreator,isAllOf:()=>isAllOf,isAnyOf:()=>isAnyOf,isAsyncThunkAction:()=>isAsyncThunkAction,isDraft:()=>r,isFluxStandardAction:()=>isFSA,isFulfilled:()=>isFulfilled,isImmutableDefault:()=>isImmutableDefault,isPending:()=>isPending,isPlain:()=>isPlain,isPlainObject:()=>redux_toolkit_esm_isPlainObject,isRejected:()=>isRejected,isRejectedWithValue:()=>isRejectedWithValue,legacy_createStore:()=>ce,miniSerializeError:()=>miniSerializeError,nanoid:()=>nanoid,original:()=>e,prepareAutoBatched:()=>prepareAutoBatched,removeListener:()=>$e,unwrapResult:()=>unwrapResult});var q,W,U="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),L="undefined"!=typeof Map,$="undefined"!=typeof Set,V="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,H=U?Symbol.for("immer-nothing"):((q={})["immer-nothing"]=!0,q),G=U?Symbol.for("immer-draftable"):"__$immer_draftable",K=U?Symbol.for("immer-state"):"__$immer_state",Q=("undefined"!=typeof Symbol&&Symbol.iterator,""+Object.prototype.constructor),J="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(C){return Object.getOwnPropertyNames(C).concat(Object.getOwnPropertySymbols(C))}:Object.getOwnPropertyNames,X=Object.getOwnPropertyDescriptors||function(C){var T={};return J(C).forEach((function(B){T[B]=Object.getOwnPropertyDescriptor(C,B)})),T},Y={},Z={get:function(C,T){if(T===K)return C;var B=p(C);if(!u(B,T))return function(C,T,B){var q,W=I(T,B);return W?"value"in W?W.value:null===(q=W.get)||void 0===q?void 0:q.call(C.k):void 0}(C,B,T);var q=B[T];return C.I||!t(q)?q:q===z(C.t,T)?(E(C),C.o[T]=N(C.A.h,q,C)):q},has:function(C,T){return T in p(C)},ownKeys:function(C){return Reflect.ownKeys(p(C))},set:function(C,T,B){var q=I(p(C),T);if(null==q?void 0:q.set)return q.set.call(C.k,B),!0;if(!C.P){var W=z(p(C),T),U=null==W?void 0:W[K];if(U&&U.t===B)return C.o[T]=B,C.R[T]=!1,!0;if(c(B,W)&&(void 0!==B||u(C.t,T)))return!0;E(C),k(C)}return C.o[T]===B&&(void 0!==B||T in C.o)||Number.isNaN(B)&&Number.isNaN(C.o[T])||(C.o[T]=B,C.R[T]=!0),!0},deleteProperty:function(C,T){return void 0!==z(C.t,T)||T in C.t?(C.R[T]=!1,E(C),k(C)):delete C.R[T],C.o&&delete C.o[T],!0},getOwnPropertyDescriptor:function(C,T){var B=p(C),q=Reflect.getOwnPropertyDescriptor(B,T);return q?{writable:!0,configurable:1!==C.i||"length"!==T,enumerable:q.enumerable,value:B[T]}:q},defineProperty:function(){n(11)},getPrototypeOf:function(C){return Object.getPrototypeOf(C.t)},setPrototypeOf:function(){n(12)}},ee={};i(Z,(function(C,T){ee[C]=function(){return arguments[0]=arguments[0][0],T.apply(this,arguments)}})),ee.deleteProperty=function(C,T){return ee.set.call(this,C,T,void 0)},ee.set=function(C,T,B){return Z.set.call(this,C[0],T,B,C[0])};var te=function(){function e(C){var T=this;this.O=V,this.D=!0,this.produce=function(C,B,q){if("function"==typeof C&&"function"!=typeof B){var W=B;B=C;var U=T;return function(C){var T=this;void 0===C&&(C=W);for(var q=arguments.length,L=Array(q>1?q-1:0),$=1;$1?q-1:0),U=1;U=0;B--){var q=T[B];if(0===q.path.length&&"replace"===q.op){C=q.value;break}}B>-1&&(T=T.slice(B+1));var W=b("Patches").$;return r(C)?W(C,T):this.produce(C,(function(C){return W(C,T)}))},e}(),re=new te,ne=re.produce;re.produceWithPatches.bind(re),re.setAutoFreeze.bind(re),re.setUseProxies.bind(re),re.applyPatches.bind(re),re.createDraft.bind(re),re.finishDraft.bind(re);const oe=ne;function _typeof(C){return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(C){return typeof C}:function(C){return C&&"function"==typeof Symbol&&C.constructor===Symbol&&C!==Symbol.prototype?"symbol":typeof C},_typeof(C)}function toPropertyKey(C){var T=function toPrimitive(C,T){if("object"!=_typeof(C)||!C)return C;var B=C[Symbol.toPrimitive];if(void 0!==B){var q=B.call(C,T||"default");if("object"!=_typeof(q))return q;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===T?String:Number)(C)}(C,"string");return"symbol"==_typeof(T)?T:String(T)}function ownKeys(C,T){var B=Object.keys(C);if(Object.getOwnPropertySymbols){var q=Object.getOwnPropertySymbols(C);T&&(q=q.filter((function(T){return Object.getOwnPropertyDescriptor(C,T).enumerable}))),B.push.apply(B,q)}return B}function _objectSpread2(C){for(var T=1;T-1){var W=B[q];return q>0&&(B.splice(q,1),B.unshift(W)),W.value}return le}return{get,put:function put(T,q){get(T)===le&&(B.unshift({key:T,value:q}),B.length>C&&B.pop())},getEntries:function getEntries(){return B},clear:function clear(){B=[]}}}(L,V);function memoized(){var T=H.get(arguments);if(T===le){if(T=C.apply(null,arguments),$){var B=H.getEntries().find((function(C){return $(C.value,T)}));B&&(T=B.value)}H.put(arguments,T)}return T}return memoized.clearCache=function(){return H.clear()},memoized}function createSelectorCreator(C){for(var T=arguments.length,B=new Array(T>1?T-1:0),q=1;q0&&W[W.length-1])||6!==U[0]&&2!==U[0])){L=0;continue}if(3===U[0]&&(!W||U[1]>W[0]&&U[1]-1}function getType(C){return""+C}function createActionCreatorInvariantMiddleware(C){return void 0===C&&(C={}),function(){return function(C){return function(T){return C(T)}}}}var ke=function(C){function MiddlewareArray(){for(var T=[],B=0;B",value:C};if("object"!=typeof C||null===C)return!1;if(null==U?void 0:U.has(C))return!1;for(var $=null!=q?q(C):Object.entries(C),V=W.length>0,_loop_2=function(C,$){var H=T?T+"."+C:C;if(V&&W.some((function(C){return C instanceof RegExp?C.test(H):H===C})))return"continue";return B($)?"object"==typeof $&&(L=findNonSerializableValue($,H,B,q,W,U))?{value:L}:void 0:{value:{keyPath:H,value:$}}},H=0,G=$;H0){var U=T.filter((function(T){return function takeNewKey(T,B,q){var W=q.entities[B.id],U=Object.assign({},W,B.changes),L=selectIdValue(U,C),$=L!==B.id;return $&&(T[B.id]=L,delete q.entities[B.id]),q.entities[L]=U,$}(q,T,B)})).length>0;U&&(B.ids=Object.keys(B.entities))}}function upsertManyMutably(T,B){var q=splitAddedUpdatedEntities(T,C,B),W=q[0];updateManyMutably(q[1],B),addManyMutably(W,B)}return{removeAll:(T=function removeAllMutably(C){Object.assign(C,{ids:[],entities:{}})},B=createStateOperator((function(C,B){return T(B)})),function operation(C){return B(C,void 0)}),addOne:createStateOperator(addOneMutably),addMany:createStateOperator(addManyMutably),setOne:createStateOperator(setOneMutably),setMany:createStateOperator((function setManyMutably(C,T){for(var B=0,q=C=ensureEntitiesArray(C);B-1;return B&&q}function isAsyncThunkArray(C){return"function"==typeof C[0]&&"pending"in C[0]&&"fulfilled"in C[0]&&"rejected"in C[0]}function isPending(){for(var C=[],T=0;T0)for(var V=C.getState(),H=Array.from(B.values()),G=0,K=H;G{"use strict";var q=B(38003).__,W=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=W(B(78983)),L=W(B(42081)),$=function(){function FilesUploadHandler(){(0,U.default)(this,FilesUploadHandler)}return(0,L.default)(FilesUploadHandler,null,[{key:"isUploadEnabled",value:function isUploadEnabled(C){return!["svg","application/json"].includes(C)||elementorCommon.config.filesUpload.unfilteredFiles}},{key:"setUploadTypeCaller",value:function setUploadTypeCaller(C){C.uploader.uploader.param("uploadTypeCaller","elementor-wp-media-upload")}},{key:"getUnfilteredFilesNonAdminDialog",value:function getUnfilteredFilesNonAdminDialog(){return elementorCommon.dialogsManager.createWidget("alert",{id:"e-unfiltered-files-disabled-dialog",headerMessage:q("Sorry, you can't upload that file yet","elementor"),message:q("This is because JSON files may pose a security risk.","elementor")+"

"+q("To upload them anyway, ask the site administrator to enable unfiltered file uploads.","elementor"),strings:{confirm:q("Got it","elementor")}})}},{key:"getUnfilteredFilesNotEnabledDialog",value:function getUnfilteredFilesNotEnabledDialog(C){var T=window.elementorAdmin||window.elementor;if(!T.config.user.is_administrator)return this.getUnfilteredFilesNonAdminDialog();return T.helpers.getSimpleDialog("e-enable-unfiltered-files-dialog",q("Enable Unfiltered File Uploads","elementor"),q("Before you enable unfiltered files upload, note that such files include a security risk. Elementor does run a process to remove possible malicious code, but there is still risk involved when using such files.","elementor"),q("Enable","elementor"),(function onConfirm(){elementorCommon.ajax.addRequest("enable_unfiltered_files_upload",{},!0),elementorCommon.config.filesUpload.unfilteredFiles=!0,C()}))}},{key:"getUnfilteredFilesNotEnabledImportTemplateDialog",value:function getUnfilteredFilesNotEnabledImportTemplateDialog(C){return(window.elementorAdmin||window.elementor).config.user.is_administrator?elementorCommon.dialogsManager.createWidget("confirm",{id:"e-enable-unfiltered-files-dialog-import-template",headerMessage:q("Enable Unfiltered File Uploads","elementor"),message:q("Before you enable unfiltered files upload, note that such files include a security risk. Elementor does run a process to remove possible malicious code, but there is still risk involved when using such files.","elementor")+"

"+q("If you do not enable uploading unfiltered files, any SVG or JSON (including lottie) files used in the uploaded template will not be imported.","elementor"),position:{my:"center center",at:"center center"},strings:{confirm:q("Enable and Import","elementor"),cancel:q("Import Without Enabling","elementor")},onConfirm:function onConfirm(){elementorCommon.ajax.addRequest("enable_unfiltered_files_upload",{success:function success(){elementorCommon.config.filesUpload.unfilteredFiles=!0,C()}},!0)},onCancel:function onCancel(){return C()}}):this.getUnfilteredFilesNonAdminDialog()}}]),FilesUploadHandler}();T.default=$},90381:(C,T)=>{"use strict";function _createForOfIteratorHelper(C,T){var B="undefined"!=typeof Symbol&&C[Symbol.iterator]||C["@@iterator"];if(!B){if(Array.isArray(C)||(B=function _unsupportedIterableToArray(C,T){if(!C)return;if("string"==typeof C)return _arrayLikeToArray(C,T);var B=Object.prototype.toString.call(C).slice(8,-1);"Object"===B&&C.constructor&&(B=C.constructor.name);if("Map"===B||"Set"===B)return Array.from(C);if("Arguments"===B||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(B))return _arrayLikeToArray(C,T)}(C))||T&&C&&"number"==typeof C.length){B&&(C=B);var q=0,W=function F(){};return{s:W,n:function n(){return q>=C.length?{done:!0}:{done:!1,value:C[q++]}},e:function e(C){throw C},f:W}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var U,L=!0,$=!1;return{s:function s(){B=B.call(C)},n:function n(){var C=B.next();return L=C.done,C},e:function e(C){$=!0,U=C},f:function f(){try{L||null==B.return||B.return()}finally{if($)throw U}}}}function _arrayLikeToArray(C,T){(null==T||T>C.length)&&(T=C.length);for(var B=0,q=new Array(T);B{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(7501)),U=q(B(78983)),L=q(B(42081)),$=q(B(58724)),V=q(B(71173)),H=q(B(74910)),G=q(B(27597)),K=q(B(90381));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var Q=function(C){(0,$.default)(ArgsObject,C);var T=_createSuper(ArgsObject);function ArgsObject(C){var B;return(0,U.default)(this,ArgsObject),(B=T.call(this)).args=C,B}return(0,L.default)(ArgsObject,[{key:"requireArgument",value:function requireArgument(C){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.args;if(!Object.prototype.hasOwnProperty.call(T,C))throw Error("".concat(C," is required."))}},{key:"requireArgumentType",value:function requireArgumentType(C,T){var B=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(C,B),(0,W.default)(B[C])!==T)throw Error("".concat(C," invalid type: ").concat(T,"."))}},{key:"requireArgumentInstance",value:function requireArgumentInstance(C,T){var B=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(C,B),!(B[C]instanceof T||(0,K.default)(B[C],T)))throw Error("".concat(C," invalid instance."))}},{key:"requireArgumentConstructor",value:function requireArgumentConstructor(C,T){var B=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(C,B),B[C].constructor.toString()!==T.prototype.constructor.toString())throw Error("".concat(C," invalid constructor type."))}}],[{key:"getInstanceType",value:function getInstanceType(){return"ArgsObject"}}]),ArgsObject}(G.default);T.default=Q},27597:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(51121)),$=q(B(74910)),V=function(C){function InstanceType(){var C=this;(0,W.default)(this,InstanceType);for(var T=this instanceof InstanceType?this.constructor:void 0,B=[];T.__proto__&&T.__proto__.name;)B.push(T.__proto__),T=T.__proto__;B.reverse().forEach((function(T){return C instanceof T}))}return(0,U.default)(InstanceType,null,[{key:C,value:function value(C){var T=(0,L.default)((0,$.default)(InstanceType),Symbol.hasInstance,this).call(this,C);if(C&&!C.constructor.getInstanceType)return T;if(C&&(C.instanceTypes||(C.instanceTypes=[]),T||this.getInstanceType()===C.constructor.getInstanceType()&&(T=!0),T)){var B=this.getInstanceType===InstanceType.getInstanceType?"BaseInstanceType":this.getInstanceType();-1===C.instanceTypes.indexOf(B)&&C.instanceTypes.push(B)}return!T&&C&&(T=C.instanceTypes&&Array.isArray(C.instanceTypes)&&-1!==C.instanceTypes.indexOf(this.getInstanceType())),T}},{key:"getInstanceType",value:function getInstanceType(){elementorModules.ForceMethodImplementation()}}]),InstanceType}(Symbol.hasInstance);T.default=V},1192:(C,T,B)=>{"use strict";var q=B(73203)(B(7501)),W=function Module(){var C,T=jQuery,B=arguments,W=this,U={};this.getItems=function(C,T){if(T){var B=T.split("."),q=B.splice(0,1);if(!B.length)return C[q];if(!C[q])return;return this.getItems(C[q],B.join("."))}return C},this.getSettings=function(T){return this.getItems(C,T)},this.setSettings=function(B,U,L){if(L||(L=C),"object"===(0,q.default)(B))return T.extend(L,B),W;var $=B.split("."),V=$.splice(0,1);return $.length?(L[V]||(L[V]={}),W.setSettings($.join("."),U,L[V])):(L[V]=U,W)},this.getErrorMessage=function(C,T){var B;if("forceMethodImplementation"===C)B="The method '".concat(T,"' must to be implemented in the inheritor child.");else B="An error occurs";return B},this.forceMethodImplementation=function(C){throw new Error(this.getErrorMessage("forceMethodImplementation",C))},this.on=function(C,B){return"object"===(0,q.default)(C)?(T.each(C,(function(C){W.on(C,this)})),W):(C.split(" ").forEach((function(C){U[C]||(U[C]=[]),U[C].push(B)})),W)},this.off=function(C,T){if(!U[C])return W;if(!T)return delete U[C],W;var B=U[C].indexOf(T);return-1!==B&&(delete U[C][B],U[C]=U[C].filter((function(C){return C}))),W},this.trigger=function(C){var B="on"+C[0].toUpperCase()+C.slice(1),q=Array.prototype.slice.call(arguments,1);W[B]&&W[B].apply(W,q);var L=U[C];return L?(T.each(L,(function(C,T){T.apply(W,q)})),W):W},function init(){W.__construct.apply(W,B),function ensureClosureMethods(){T.each(W,(function(C){var T=W[C];"function"==typeof T&&(W[C]=function(){return T.apply(W,arguments)})}))}(),function initSettings(){C=W.getDefaultSettings();var q=B[0];q&&T.extend(!0,C,q)}(),W.trigger("init")}()};W.prototype.__construct=function(){},W.prototype.getDefaultSettings=function(){return{}},W.prototype.getConstructorID=function(){return this.constructor.name},W.extend=function(C){var T=jQuery,B=this,q=function child(){return B.apply(this,arguments)};return T.extend(q,B),(q.prototype=Object.create(T.extend({},B.prototype,C))).constructor=q,q.__super__=B.prototype,q},C.exports=W},99956:(C,T,B)=>{"use strict";var q=B(73203)(B(93231));function ownKeys(C,T){var B=Object.keys(C);if(Object.getOwnPropertySymbols){var q=Object.getOwnPropertySymbols(C);T&&(q=q.filter((function(T){return Object.getOwnPropertyDescriptor(C,T).enumerable}))),B.push.apply(B,q)}return B}function _objectSpread(C){for(var T=1;T{"use strict";Object.defineProperty(T,"__esModule",{value:!0}),T.default=function getUserTimestamp(){var C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:new Date,T=C.getTimezoneOffset(),B=new Date(C.getTime()-6e4*T).toISOString();B=B.slice(0,-1);var q=T/60,W=0<=q?"+":"-",U=Math.abs(Math.floor(q)),L=60*Math.abs(q%1);return B+(W+(10>U?"0":""))+U+":"+(10>L?"0":"")+L}},70687:(C,T,B)=>{"use strict";Object.defineProperty(T,"__esModule",{value:!0}),Object.defineProperty(T,"Media",{enumerable:!0,get:function get(){return q.Media}});var q=B(41403)},41403:(C,T,B)=>{"use strict";var q=B(38003).__,W=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.Media=void 0;var U=W(B(50824)),L=W(B(10029)),$=W(B(78983)),V=W(B(42081)),H=W(B(51121)),G=W(B(58724)),K=W(B(71173)),Q=W(B(74910)),J=W(B(76072)),X=W(B(40548));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,Q.default)(C);if(T){var W=(0,Q.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,K.default)(this,B)}}var Y=function(C){(0,G.default)(Media,C);var T,B=_createSuper(Media);function Media(){return(0,$.default)(this,Media),B.apply(this,arguments)}return(0,V.default)(Media,[{key:"validateArgs",value:function validateArgs(){this.requireArgumentInstance("file",File)}},{key:"getRequestData",value:function getRequestData(){var C=(0,H.default)((0,Q.default)(Media.prototype),"getRequestData",this).call(this);return C.namespace="wp",C.version="2",C}},{key:"applyBeforeCreate",value:function applyBeforeCreate(C){var T;return C.headers={"Content-Disposition":"attachment; filename=".concat(this.file.name),"Content-Type":this.file.type},C.query={uploadTypeCaller:"elementor-wp-media-upload"},C.data=this.file,null!==(T=C.options)&&void 0!==T&&T.progress&&(this.toast=elementor.notifications.showToast({message:q("Uploading..."),sticky:!0})),C}},{key:"applyAfterCreate",value:function applyAfterCreate(C,T){var B;return null!==(B=T.options)&&void 0!==B&&B.progress&&this.toast.hide(),C}},{key:"run",value:(T=(0,L.default)(U.default.mark((function _callee(){return U.default.wrap((function _callee$(C){for(;;)switch(C.prev=C.next){case 0:if(this.file=this.args.file,!(this.file.size>parseInt(window._wpPluploadSettings.defaults.filters.max_file_size,10))){C.next=3;break}throw new Error(q("The file exceeds the maximum upload size for this site.","elementor"));case 3:if(window._wpPluploadSettings.defaults.filters.mime_types[0].extensions.split(",").includes(this.file.name.split(".").pop())||elementor.config.filesUpload.unfilteredFiles){C.next=6;break}return X.default.getUnfilteredFilesNotEnabledDialog((function(){})).show(),C.abrupt("return");case 6:return C.next=8,(0,H.default)((0,Q.default)(Media.prototype),"run",this).call(this);case 8:return C.abrupt("return",C.sent);case 9:case"end":return C.stop()}}),_callee,this)}))),function run(){return T.apply(this,arguments)})}],[{key:"getEndpointFormat",value:function getEndpointFormat(){return"media"}}]),Media}(J.default);T.Media=Y},13450:(C,T,B)=>{"use strict";var q=B(73203),W=B(7501);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=q(B(78983)),L=q(B(42081)),$=q(B(58724)),V=q(B(71173)),H=q(B(74910)),G=q(B(19263)),K=function _interopRequireWildcard(C,T){if(!T&&C&&C.__esModule)return C;if(null===C||"object"!==W(C)&&"function"!=typeof C)return{default:C};var B=_getRequireWildcardCache(T);if(B&&B.has(C))return B.get(C);var q={},U=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var L in C)if("default"!==L&&Object.prototype.hasOwnProperty.call(C,L)){var $=U?Object.getOwnPropertyDescriptor(C,L):null;$&&($.get||$.set)?Object.defineProperty(q,L,$):q[L]=C[L]}q.default=C,B&&B.set(C,q);return q}(B(70687));function _getRequireWildcardCache(C){if("function"!=typeof WeakMap)return null;var T=new WeakMap,B=new WeakMap;return(_getRequireWildcardCache=function _getRequireWildcardCache(C){return C?B:T})(C)}function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var Q=function(C){(0,$.default)(Component,C);var T=_createSuper(Component);function Component(){return(0,U.default)(this,Component),T.apply(this,arguments)}return(0,L.default)(Component,[{key:"getNamespace",value:function getNamespace(){return"wp"}},{key:"defaultData",value:function defaultData(){return this.importCommands(K)}}]),Component}(G.default);T.default=Q},52253:C=>{"use strict";C.exports=function Debug(){var C=this,T=[],B={},q={},W=function onError(T){var q,W=null===(q=T.originalEvent)||void 0===q?void 0:q.error;if(W){var U=!1,L=B.urlsToWatch;jQuery.each(L,(function(){if(-1!==W.stack.indexOf(this))return U=!0,!1})),U&&C.addError({type:W.name,message:W.message,url:T.originalEvent.filename,line:T.originalEvent.lineno,column:T.originalEvent.colno})}};this.addURLToWatch=function(C){B.urlsToWatch.push(C)},this.addCustomError=function(C,T,B){var q={type:C.name,message:C.message,url:C.fileName||C.sourceURL,line:C.lineNumber||C.line,column:C.columnNumber||C.column,customFields:{category:T||"general",tag:B}};if(!q.url){var W=C.stack.match(/\n {4}at (.*?(?=:(\d+):(\d+)))/);W&&(q.url=W[1],q.line=W[2],q.column=W[3])}this.addError(q)},this.addError=function(B){var q={type:"Error",timestamp:Math.floor((new Date).getTime()/1e3),message:null,url:null,line:null,column:null,customFields:{}};T.push(jQuery.extend(!0,q,B)),C.sendErrors()},this.sendErrors=function(){q.$window.off("error",W),jQuery.ajax({url:elementorCommon.config.ajax.url,method:"POST",data:{action:"elementor_js_log",_nonce:elementorCommon.ajax.getSettings("nonce"),data:T},success:function success(){T=[],q.$window.on("error",W)}})},function init(){!function initSettings(){B={debounceDelay:500,urlsToWatch:["elementor/assets"]}}(),function initElements(){q.$window=jQuery(window)}(),function bindEvents(){q.$window.on("error",W)}(),C.sendErrors=_.debounce(C.sendErrors,B.debounceDelay)}()}},90287:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=function(){function Helpers(){(0,W.default)(this,Helpers)}return(0,U.default)(Helpers,[{key:"softDeprecated",value:function softDeprecated(C,T,B){elementorDevTools.deprecation.deprecated(C,T,B),elementorDevTools.deprecation.deprecated("elementorCommon.helpers.softDeprecated()","3.7.0","elementorDevTools.deprecation.deprecated()")}},{key:"hardDeprecated",value:function hardDeprecated(C,T,B){elementorDevTools.deprecation.deprecated(C,T,B),elementorDevTools.deprecation.deprecated("elementorCommon.helpers.hardDeprecated()","3.7.0","elementorDevTools.deprecation.deprecated()")}},{key:"deprecatedMessage",value:function deprecatedMessage(C,T,B,q){elementorDevTools.deprecation.deprecated(T,B,q),elementorDevTools.deprecation.deprecated("elementorCommon.helpers.deprecatedMessage()","3.7.0","elementorDevTools.deprecation.deprecated()")}},{key:"consoleWarn",value:function consoleWarn(){var C;(C=elementorDevTools).consoleWarn.apply(C,arguments),elementorDevTools.deprecation.deprecated("elementorCommon.helpers.consoleWarn()","3.7.0","elementorDevTools.consoleWarn()")}},{key:"consoleError",value:function consoleError(C){console.error(C),elementorDevTools.deprecation.deprecated("elementorCommon.helpers.consoleError()","3.7.0","console.error()")}},{key:"deprecatedMethod",value:function deprecatedMethod(C,T,B){elementorDevTools.deprecation.deprecated(C,T,B),elementorDevTools.deprecation.deprecated("elementorCommon.helpers.deprecatedMethod()","2.8.0","elementorDevTools.deprecation.deprecated()")}},{key:"cloneObject",value:function cloneObject(C){return JSON.parse(JSON.stringify(C))}},{key:"upperCaseWords",value:function upperCaseWords(C){return(C+"").replace(/^(.)|\s+(.)/g,(function(C){return C.toUpperCase()}))}},{key:"getUniqueId",value:function getUniqueId(){return Math.random().toString(16).substr(2,7)}}]),Helpers}();T.default=L},35107:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"get",value:function get(C,T){var B;T=T||{};try{B=T.session?sessionStorage:localStorage}catch(T){return C?void 0:{}}var q=B.getItem("elementor");(q=q?JSON.parse(q):{}).__expiration||(q.__expiration={});var W=q.__expiration,U=[];C?W[C]&&(U=[C]):U=Object.keys(W);var L=!1;return U.forEach((function(C){new Date(W[C]){"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(40131)),U=q(B(78983)),L=q(B(42081)),$=q(B(77266)),V=q(B(58724)),H=q(B(71173)),G=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,G.default)(C);if(T){var W=(0,G.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,H.default)(this,B)}}var K=function(C){(0,V.default)(_default,C);var T=_createSuper(_default);function _default(){var C;(0,U.default)(this,_default);for(var B=arguments.length,q=new Array(B),W=0;W{"use strict";var q=B(38003).__,W=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=W(B(78983)),L=W(B(42081)),$=W(B(51121)),V=W(B(58724)),H=W(B(71173)),G=W(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,G.default)(C);if(T){var W=(0,G.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,H.default)(this,B)}}var K=function(C){(0,V.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,U.default)(this,_default),T.apply(this,arguments)}return(0,L.default)(_default,[{key:"addPopupPlugin",value:function addPopupPlugin(){var C=0;jQuery.fn.elementorConnect=function(T){var B=this;null!=T&&T.popup&&(jQuery(this).on("click",(function(C){var q,W;C.preventDefault();var U=(null===(q=T.popup)||void 0===q?void 0:q.width)||600,L=(null===(W=T.popup)||void 0===W?void 0:W.height)||700;window.open(jQuery(B).attr("href")+"&mode=popup","elementorConnect","toolbar=no, menubar=no, width=".concat(U,", height=").concat(L,", top=200, left=0"))})),delete T.popup);var W=jQuery.extend({success:function success(){return location.reload()},error:function error(){elementor.notifications.showToast({message:q("Unable to connect","elementor")})},parseUrl:function parseUrl(C){return C}},T);return this.each((function(){C++;var T=jQuery(this),B="cb"+C;T.attr({target:"_blank",rel:"opener",href:W.parseUrl(T.attr("href")+"&mode=popup&callback_id="+B)}),elementorCommon.elements.$window.on("elementor/connect/success/"+B,W.success).on("elementor/connect/error/"+B,W.error)})),this}}},{key:"getDefaultSettings",value:function getDefaultSettings(){return{selectors:{connectButton:"#elementor-template-library-connect__button"}}}},{key:"getDefaultElements",value:function getDefaultElements(){return{$connectButton:jQuery(this.getSettings("selectors.connectButton"))}}},{key:"applyPopup",value:function applyPopup(){this.elements.$connectButton.elementorConnect()}},{key:"onInit",value:function onInit(){(0,$.default)((0,G.default)(_default.prototype),"onInit",this).call(this),this.addPopupPlugin(),this.applyPopup()}}]),_default}(elementorModules.ViewModule);T.default=K},28095:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.Index=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(Index,C);var T=_createSuper(Index);function Index(){return(0,W.default)(this,Index),T.apply(this,arguments)}return(0,U.default)(Index,null,[{key:"getEndpointFormat",value:function getEndpointFormat(){return"send-event"}}]),Index}(q(B(76072)).default);T.Index=H},26231:(C,T,B)=>{"use strict";var q=B(73203),W=B(7501);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=q(B(78983)),L=q(B(42081)),$=q(B(58724)),V=q(B(71173)),H=q(B(74910)),G=q(B(19263)),K=function _interopRequireWildcard(C,T){if(!T&&C&&C.__esModule)return C;if(null===C||"object"!==W(C)&&"function"!=typeof C)return{default:C};var B=_getRequireWildcardCache(T);if(B&&B.has(C))return B.get(C);var q={},U=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var L in C)if("default"!==L&&Object.prototype.hasOwnProperty.call(C,L)){var $=U?Object.getOwnPropertyDescriptor(C,L):null;$&&($.get||$.set)?Object.defineProperty(q,L,$):q[L]=C[L]}q.default=C,B&&B.set(C,q);return q}(B(28095));function _getRequireWildcardCache(C){if("function"!=typeof WeakMap)return null;var T=new WeakMap,B=new WeakMap;return(_getRequireWildcardCache=function _getRequireWildcardCache(C){return C?B:T})(C)}function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var Q=function(C){(0,$.default)(Component,C);var T=_createSuper(Component);function Component(){return(0,U.default)(this,Component),T.apply(this,arguments)}return(0,L.default)(Component,[{key:"getNamespace",value:function getNamespace(){return"event-tracker"}},{key:"defaultData",value:function defaultData(){return this.importCommands(K)}}]),Component}(G.default);T.default=Q},62879:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(17264)),$=function(){function Events(){(0,W.default)(this,Events)}return(0,U.default)(Events,[{key:"dispatchEvent",value:function dispatchEvent(C){C&&(C.ts=(0,L.default)(),$e.data.create("event-tracker/index",{event_data:C}))}}]),Events}();T.default=$},27948:(C,T,B)=>{"use strict";Object.defineProperty(T,"__esModule",{value:!0}),Object.defineProperty(T,"NavigateDown",{enumerable:!0,get:function get(){return q.NavigateDown}}),Object.defineProperty(T,"NavigateSelect",{enumerable:!0,get:function get(){return W.NavigateSelect}}),Object.defineProperty(T,"NavigateUp",{enumerable:!0,get:function get(){return U.NavigateUp}});var q=B(85925),W=B(98291),U=B(71117)},85925:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.NavigateDown=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(NavigateDown,C);var T=_createSuper(NavigateDown);function NavigateDown(){return(0,W.default)(this,NavigateDown),T.apply(this,arguments)}return(0,U.default)(NavigateDown,[{key:"apply",value:function apply(){this.component.getItemsView().activateNextItem()}}]),NavigateDown}(q(B(83024)).default);T.NavigateDown=H;var G=H;T.default=G},98291:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.NavigateSelect=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(NavigateSelect,C);var T=_createSuper(NavigateSelect);function NavigateSelect(){return(0,W.default)(this,NavigateSelect),T.apply(this,arguments)}return(0,U.default)(NavigateSelect,[{key:"apply",value:function apply(C){this.component.getItemsView().goToActiveItem(C)}}]),NavigateSelect}(q(B(83024)).default);T.NavigateSelect=H;var G=H;T.default=G},71117:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.NavigateUp=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(NavigateUp,C);var T=_createSuper(NavigateUp);function NavigateUp(){return(0,W.default)(this,NavigateUp),T.apply(this,arguments)}return(0,U.default)(NavigateUp,[{key:"apply",value:function apply(){this.component.getItemsView().activateNextItem(!0)}}]),NavigateUp}(q(B(83024)).default);T.NavigateUp=H;var G=H;T.default=G},47729:(C,T,B)=>{"use strict";var q=B(73203),W=B(7501);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=q(B(93231)),L=q(B(78983)),$=q(B(42081)),V=q(B(51121)),H=q(B(58724)),G=q(B(71173)),K=q(B(74910)),Q=q(B(19076)),J=q(B(2365)),X=function _interopRequireWildcard(C,T){if(!T&&C&&C.__esModule)return C;if(null===C||"object"!==W(C)&&"function"!=typeof C)return{default:C};var B=_getRequireWildcardCache(T);if(B&&B.has(C))return B.get(C);var q={},U=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var L in C)if("default"!==L&&Object.prototype.hasOwnProperty.call(C,L)){var $=U?Object.getOwnPropertyDescriptor(C,L):null;$&&($.get||$.set)?Object.defineProperty(q,L,$):q[L]=C[L]}q.default=C,B&&B.set(C,q);return q}(B(27948));function _getRequireWildcardCache(C){if("function"!=typeof WeakMap)return null;var T=new WeakMap,B=new WeakMap;return(_getRequireWildcardCache=function _getRequireWildcardCache(C){return C?B:T})(C)}function ownKeys(C,T){var B=Object.keys(C);if(Object.getOwnPropertySymbols){var q=Object.getOwnPropertySymbols(C);T&&(q=q.filter((function(T){return Object.getOwnPropertyDescriptor(C,T).enumerable}))),B.push.apply(B,q)}return B}function _objectSpread(C){for(var T=1;T{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(47729));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var G=function(C){(0,L.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"onInit",value:function onInit(){window.top===window&&(this.channel=Backbone.Radio.channel("ELEMENTOR:finder"),$e.components.register(new H.default({manager:this})))}}]),_default}(elementorModules.Module);T.default=G},56745:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"defaults",value:function defaults(){return{description:"",icon:"settings",url:"",keywords:[],actions:[],lock:null}}}]),_default}(Backbone.Model);T.default=H},44027:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(71362)),G=q(B(98304));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var K=function(C){(0,L.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"id",value:function id(){return"elementor-finder__results-container"}},{key:"ui",value:function ui(){return this.selectors={noResults:"#elementor-finder__no-results",categoryItem:".elementor-finder__results__item"},this.selectors}},{key:"events",value:function events(){return{"mouseenter @ui.categoryItem":"onCategoryItemMouseEnter"}}},{key:"getTemplate",value:function getTemplate(){return"#tmpl-elementor-finder-results-container"}},{key:"getChildView",value:function getChildView(C){return C.get("dynamic")?G.default:H.default}},{key:"initialize",value:function initialize(){this.$activeItem=null,this.childViewContainer="#elementor-finder__results",this.collection=new Backbone.Collection(Object.values(elementorCommon.finder.getSettings("data")))}},{key:"activateItem",value:function activateItem(C){this.$activeItem&&this.$activeItem.removeClass("elementor-active"),C.addClass("elementor-active"),this.$activeItem=C}},{key:"activateNextItem",value:function activateNextItem(C){var T=jQuery(this.selectors.categoryItem),B=0;this.$activeItem&&((B=T.index(this.$activeItem)+(C?-1:1))>=T.length?B=0:B<0&&(B=T.length-1));var q=T.eq(B);this.activateItem(q),q[0].scrollIntoView({block:"nearest"})}},{key:"goToActiveItem",value:function goToActiveItem(C){var T=this.$activeItem.children("a"),B=$e.shortcuts.isControlEvent(C);B&&T.attr("target","_blank"),T[0].click(),B&&T.removeAttr("target")}},{key:"onCategoryItemMouseEnter",value:function onCategoryItemMouseEnter(C){this.activateItem(jQuery(C.currentTarget))}},{key:"onChildviewToggleVisibility",value:function onChildviewToggleVisibility(){var C=this.children.every((function(C){return!C.isVisible}));this.ui.noResults.toggle(C)}}]),_default}(Marionette.CompositeView);T.default=K},71362:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(13448)),G=q(B(56745));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var K=function(C){(0,L.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"className",value:function className(){return"elementor-finder__results__category"}},{key:"getTemplate",value:function getTemplate(){return"#tmpl-elementor-finder__results__category"}},{key:"getChildView",value:function getChildView(){return H.default}},{key:"initialize",value:function initialize(){this.childViewContainer=".elementor-finder__results__category__items",this.isVisible=!0;var C=this.model.get("items");C&&(C=Object.values(C)),this.collection=new Backbone.Collection(C,{model:G.default})}},{key:"filter",value:function filter(C){var T=this.getTextFilter();return C.get("title").toLowerCase().indexOf(T)>=0||C.get("keywords").some((function(C){return C.indexOf(T)>=0}))}},{key:"getTextFilter",value:function getTextFilter(){return elementorCommon.finder.channel.request("filter:text").trim().toLowerCase()}},{key:"toggleElement",value:function toggleElement(){var C=!!this.children.length;C!==this.isVisible&&(this.isVisible=C,this.$el.toggle(C),this.triggerMethod("toggle:visibility"))}},{key:"onRender",value:function onRender(){this.listenTo(elementorCommon.finder.channel,"filter:change",this.onFilterChange.bind(this))}},{key:"onFilterChange",value:function onFilterChange(){this._renderChildren()}},{key:"onRenderCollection",value:function onRenderCollection(){this.toggleElement()}}]),_default}(Marionette.CompositeView);T.default=K},27308:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(44027));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var G=function(C){(0,L.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"id",value:function id(){return"elementor-finder"}},{key:"getTemplate",value:function getTemplate(){return"#tmpl-elementor-finder"}},{key:"ui",value:function ui(){return{searchInput:"#elementor-finder__search__input"}}},{key:"events",value:function events(){return{"input @ui.searchInput":"onSearchInputInput"}}},{key:"regions",value:function regions(){return{content:"#elementor-finder__content"}}},{key:"showCategoriesView",value:function showCategoriesView(){this.content.show(new H.default)}},{key:"onSearchInputInput",value:function onSearchInputInput(){var C=this.ui.searchInput.val();C&&(elementorCommon.finder.channel.reply("filter:text",C).trigger("filter:change"),this.content.currentView instanceof H.default||this.showCategoriesView()),this.content.currentView.$el.toggle(!!C)}}]),_default}(Marionette.LayoutView);T.default=G},98304:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(51121)),$=q(B(58724)),V=q(B(71173)),H=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var G=function(C){(0,$.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,W.default)(this,_default),T.apply(this,arguments)}return(0,U.default)(_default,[{key:"className",value:function className(){return(0,L.default)((0,H.default)(_default.prototype),"className",this).call(this)+" elementor-finder__results__category--dynamic"}},{key:"ui",value:function ui(){return{title:".elementor-finder__results__category__title"}}},{key:"fetchData",value:function fetchData(){var C=this;this.ui.loadingIcon.show(),elementorCommon.ajax.addRequest("finder_get_category_items",{data:{category:this.model.get("name"),filter:this.getTextFilter()},success:function success(T){C.isDestroyed||(C.collection.set(T),C.toggleElement(),C.ui.loadingIcon.hide())}})}},{key:"filter",value:function filter(){return!0}},{key:"onFilterChange",value:function onFilterChange(){this.fetchData()}},{key:"onRender",value:function onRender(){(0,L.default)((0,H.default)(_default.prototype),"onRender",this).call(this),this.ui.loadingIcon=jQuery("",{class:"eicon-loading eicon-animation-spin"}),this.ui.title.after(this.ui.loadingIcon),this.fetchData()}}]),_default}(q(B(71362)).default);T.default=G},13448:(C,T,B)=>{"use strict";var q=B(38003).__,W=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=W(B(78983)),L=W(B(42081)),$=W(B(58724)),V=W(B(71173)),H=W(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var G=function(C){(0,$.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,U.default)(this,_default),T.apply(this,arguments)}return(0,L.default)(_default,[{key:"className",value:function className(){return"elementor-finder__results__item"}},{key:"getTemplate",value:function getTemplate(){return"#tmpl-elementor-finder__results__item"}},{key:"events",value:function events(){this.$el[0].addEventListener("click",this.onClick.bind(this),!0)}},{key:"onClick",value:function onClick(C){var T=this,B=this.model.get("lock");null!=B&&B.is_locked&&(C.preventDefault(),C.stopImmediatePropagation(),elementorCommon.dialogsManager.createWidget("confirm",{id:"elementor-finder__lock-dialog",headerMessage:B.content.heading,message:B.content.description,position:{my:"center center",at:"center center"},strings:{confirm:B.button.text,cancel:q("Cancel","elementor")},onConfirm:function onConfirm(){var C=T.replaceLockLinkPlaceholders(B.button.url);window.open(C,"_blank")}}).show())}},{key:"replaceLockLinkPlaceholders",value:function replaceLockLinkPlaceholders(C){return C.replace(/%%utm_source%%/g,"finder").replace(/%%utm_medium%%/g,"wp-dash")}}]),_default}(Marionette.ItemView);T.default=G},2365:(C,T,B)=>{"use strict";var q=B(38003).__,W=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=W(B(78983)),L=W(B(42081)),$=W(B(51121)),V=W(B(58724)),H=W(B(71173)),G=W(B(74910)),K=W(B(27308));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,G.default)(C);if(T){var W=(0,G.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,H.default)(this,B)}}var Q=function(C){(0,V.default)(_default,C);var T=_createSuper(_default);function _default(){return(0,U.default)(this,_default),T.apply(this,arguments)}return(0,L.default)(_default,[{key:"getModalOptions",value:function getModalOptions(){return{id:"elementor-finder__modal",draggable:!0,effects:{show:"show",hide:"hide"},position:{enable:!1}}}},{key:"getLogoOptions",value:function getLogoOptions(){return{title:q("Finder","elementor")}}},{key:"initialize",value:function initialize(){for(var C,T=arguments.length,B=new Array(T),q=0;q{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(77266)),$=q(B(58724)),V=q(B(71173)),H=q(B(74910)),G=q(B(19952)),K=q(B(93231)),Q=q(B(17341)),J=q(B(40647));function ownKeys(C,T){var B=Object.keys(C);if(Object.getOwnPropertySymbols){var q=Object.getOwnPropertySymbols(C);T&&(q=q.filter((function(T){return Object.getOwnPropertyDescriptor(C,T).enumerable}))),B.push.apply(B,q)}return B}function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var X=function(C){(0,$.default)(BaseError,C);var T=_createSuper(BaseError);function BaseError(){var C,B=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",q=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",U=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return(0,W.default)(this,BaseError),C=T.call(this,B),(0,K.default)((0,L.default)(C),"code",""),(0,K.default)((0,L.default)(C),"data",[]),C.code=q,C.data=U,C}return(0,U.default)(BaseError,[{key:"notify",value:function notify(){Q.default.error(function _objectSpread(C){for(var T=1;T1&&void 0!==arguments[1]?arguments[1]:"",arguments.length>2&&void 0!==arguments[2]?arguments[2]:[])}},{key:"getHTTPErrorCode",value:function getHTTPErrorCode(){(0,J.default)()}}]),BaseError}((0,G.default)(Error));T.default=X},71148:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.DefaultError=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(DefaultError,C);var T=_createSuper(DefaultError);function DefaultError(){return(0,W.default)(this,DefaultError),T.apply(this,arguments)}return(0,U.default)(DefaultError,null,[{key:"getHTTPErrorCode",value:function getHTTPErrorCode(){return 501}}]),DefaultError}(q(B(7283)).default);T.DefaultError=H;var G=H;T.default=G},2884:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.Error404=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(7283)),G=q(B(17341));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var K=function(C){(0,L.default)(Error404,C);var T=_createSuper(Error404);function Error404(){return(0,W.default)(this,Error404),T.apply(this,arguments)}return(0,U.default)(Error404,[{key:"notify",value:function notify(){G.default.warn(this.message)}}],[{key:"getHTTPErrorCode",value:function getHTTPErrorCode(){return 404}}]),Error404}(H.default);T.Error404=K;var Q=K;T.default=Q},91305:(C,T,B)=>{"use strict";Object.defineProperty(T,"__esModule",{value:!0}),Object.defineProperty(T,"DefaultError",{enumerable:!0,get:function get(){return q.DefaultError}}),Object.defineProperty(T,"Error404",{enumerable:!0,get:function get(){return W.Error404}});var q=B(71148),W=B(2884)},83024:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(74774)),G=q(B(70170));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var K=function(C){(0,L.default)(CommandBase,C);var T=_createSuper(CommandBase);function CommandBase(){return(0,W.default)(this,CommandBase),T.apply(this,arguments)}return(0,U.default)(CommandBase,[{key:"onBeforeRun",value:function onBeforeRun(){var C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};$e.hooks.runUIBefore(this.command,C)}},{key:"onAfterRun",value:function onAfterRun(){var C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},T=arguments.length>1?arguments[1]:void 0;$e.hooks.runUIAfter(this.command,C,T)}},{key:"onBeforeApply",value:function onBeforeApply(){var C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};$e.hooks.runDataDependency(this.command,C)}},{key:"onAfterApply",value:function onAfterApply(){var C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},T=arguments.length>1?arguments[1]:void 0;$e.hooks.runDataAfter(this.command,C,T)}},{key:"onCatchApply",value:function onCatchApply(C){this.runCatchHooks(C)}},{key:"runCatchHooks",value:function runCatchHooks(C){$e.hooks.runDataCatch(this.command,this.args,C),$e.hooks.runUICatch(this.command,this.args,C)}},{key:"requireContainer",value:function requireContainer(){var C=this,T=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.args;if(G.default.deprecated("requireContainer()","3.7.0","Extend `$e.modules.editor.CommandContainerBase` or `$e.modules.editor.CommandContainerInternalBase`"),!T.container&&!T.containers)throw Error("container or containers are required.");if(T.container&&T.containers)throw Error("container and containers cannot go together please select one of them.");(T.containers||[T.container]).forEach((function(T){C.requireArgumentInstance("container",elementorModules.editor.Container,{container:T})}))}}],[{key:"getInstanceType",value:function getInstanceType(){return"CommandBase"}}]),CommandBase}(H.default);T.default=K},46867:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(CommandCallbackBase,C);var T=_createSuper(CommandCallbackBase);function CommandCallbackBase(){return(0,W.default)(this,CommandCallbackBase),T.apply(this,arguments)}return(0,U.default)(CommandCallbackBase,[{key:"apply",value:function apply(){var C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return this.constructor.getCallback()(C)}}],[{key:"getInstanceType",value:function getInstanceType(){return"CommandCallbackBase"}},{key:"getCallback",value:function getCallback(){return this.registerConfig.callback}}]),CommandCallbackBase}(q(B(83024)).default);T.default=H},76072:(C,T,B)=>{"use strict";var q=B(73203),W=B(7501);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=q(B(78983)),L=q(B(42081)),$=q(B(77266)),V=q(B(58724)),H=q(B(71173)),G=q(B(74910)),K=q(B(93231)),Q=q(B(83024)),J=function _interopRequireWildcard(C,T){if(!T&&C&&C.__esModule)return C;if(null===C||"object"!==W(C)&&"function"!=typeof C)return{default:C};var B=_getRequireWildcardCache(T);if(B&&B.has(C))return B.get(C);var q={},U=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var L in C)if("default"!==L&&Object.prototype.hasOwnProperty.call(C,L)){var $=U?Object.getOwnPropertyDescriptor(C,L):null;$&&($.get||$.set)?Object.defineProperty(q,L,$):q[L]=C[L]}q.default=C,B&&B.set(C,q);return q}(B(91305));function _getRequireWildcardCache(C){if("function"!=typeof WeakMap)return null;var T=new WeakMap,B=new WeakMap;return(_getRequireWildcardCache=function _getRequireWildcardCache(C){return C?B:T})(C)}function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,G.default)(C);if(T){var W=(0,G.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,H.default)(this,B)}}var X=function(C){(0,V.default)(CommandData,C);var T=_createSuper(CommandData);function CommandData(C){var B,q,W=arguments.length>1&&void 0!==arguments[1]?arguments[1]:$e.data;return(0,U.default)(this,CommandData),q=T.call(this,C,W),(0,K.default)((0,$.default)(q),"data",void 0),(0,K.default)((0,$.default)(q),"type",void 0),null!==(B=q.args.options)&&void 0!==B&&B.type&&(q.type=q.args.options.type),q}return(0,L.default)(CommandData,[{key:"getApplyMethods",value:function getApplyMethods(){var C,T;switch(arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.type){case"create":C=this.applyBeforeCreate,T=this.applyAfterCreate;break;case"delete":C=this.applyBeforeDelete,T=this.applyAfterDelete;break;case"get":C=this.applyBeforeGet,T=this.applyAfterGet;break;case"update":C=this.applyBeforeUpdate,T=this.applyAfterUpdate;break;case"options":C=this.applyBeforeOptions,T=this.applyAfterOptions;break;default:return!1}return{before:C.bind(this),after:T.bind(this)}}},{key:"getRequestData",value:function getRequestData(){return{type:this.type,args:this.args,timestamp:(new Date).getTime(),component:this.component,command:this.command,endpoint:$e.data.commandToEndpoint(this.command,JSON.parse(JSON.stringify(this.args)),this.constructor.getEndpointFormat())}}},{key:"apply",value:function apply(){var C=this,T=this.getApplyMethods();this.args=T.before(this.args);var B=this.getRequestData();return $e.data.fetch(B).then((function(q){return C.data=q,C.data=T.after(q,C.args),C.data={data:C.data},C.data=Object.assign({__requestData__:B},C.data),C.data}))}},{key:"applyBeforeCreate",value:function applyBeforeCreate(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}}},{key:"applyAfterCreate",value:function applyAfterCreate(C){return C}},{key:"applyBeforeDelete",value:function applyBeforeDelete(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}}},{key:"applyAfterDelete",value:function applyAfterDelete(C){return C}},{key:"applyBeforeGet",value:function applyBeforeGet(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}}},{key:"applyAfterGet",value:function applyAfterGet(C){return C}},{key:"applyBeforeUpdate",value:function applyBeforeUpdate(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}}},{key:"applyAfterUpdate",value:function applyAfterUpdate(C){return C}},{key:"applyBeforeOptions",value:function applyBeforeOptions(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}}},{key:"applyAfterOptions",value:function applyAfterOptions(C){return C}},{key:"applyAfterCatch",value:function applyAfterCatch(C){C.notify()}},{key:"onCatchApply",value:function onCatchApply(C){var T,B,q=(null===(T=C)||void 0===T||null===(B=T.data)||void 0===B?void 0:B.status)||501,W=Object.values(J).find((function(C){return C.getHTTPErrorCode()===q}));W||(W=J.DefaultError),C=W.create(C.message,C.code,C.data||[]),this.runCatchHooks(C),this.applyAfterCatch(C)}}],[{key:"getInstanceType",value:function getInstanceType(){return"CommandData"}},{key:"getEndpointFormat",value:function getEndpointFormat(){return null}}]),CommandData}(Q.default);T.default=X},74774:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910)),H=q(B(93231)),G=q(B(42618)),K=q(B(70170));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var Q=function(C){(0,L.default)(CommandInfra,C);var T=_createSuper(CommandInfra);function CommandInfra(){var C,B=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if((0,W.default)(this,CommandInfra),!(C=T.call(this,B)).constructor.registerConfig)throw RangeError("Doing it wrong: Each command type should have `registerConfig`.");return C.command=C.constructor.getCommand(),C.component=C.constructor.getComponent(),C.initialize(B),B=C.args,C.validateArgs(B),C}return(0,U.default)(CommandInfra,[{key:"currentCommand",get:function get(){return K.default.deprecated("this.currentCommand","3.7.0","this.command"),this.command}},{key:"initialize",value:function initialize(){}},{key:"validateArgs",value:function validateArgs(){}},{key:"apply",value:function apply(){elementorModules.ForceMethodImplementation()}},{key:"run",value:function run(){return this.apply(this.args)}},{key:"onBeforeRun",value:function onBeforeRun(){}},{key:"onAfterRun",value:function onAfterRun(){}},{key:"onBeforeApply",value:function onBeforeApply(){}},{key:"onAfterApply",value:function onAfterApply(){}},{key:"onCatchApply",value:function onCatchApply(C){}}],[{key:"getInstanceType",value:function getInstanceType(){return"CommandInfra"}},{key:"getInfo",value:function getInfo(){return{}}},{key:"getCommand",value:function getCommand(){return this.registerConfig.command}},{key:"getComponent",value:function getComponent(){return this.registerConfig.component}},{key:"setRegisterConfig",value:function setRegisterConfig(C){this.registerConfig=Object.freeze(C)}}]),CommandInfra}(G.default);T.default=Q,(0,H.default)(Q,"registerConfig",null)},25683:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.Close=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(Close,C);var T=_createSuper(Close);function Close(){return(0,W.default)(this,Close),T.apply(this,arguments)}return(0,U.default)(Close,[{key:"apply",value:function apply(){this.component.close()}}]),Close}(q(B(83024)).default);T.Close=H;var G=H;T.default=G},53832:(C,T,B)=>{"use strict";Object.defineProperty(T,"__esModule",{value:!0}),Object.defineProperty(T,"Close",{enumerable:!0,get:function get(){return q.Close}}),Object.defineProperty(T,"Open",{enumerable:!0,get:function get(){return W.Open}}),Object.defineProperty(T,"Toggle",{enumerable:!0,get:function get(){return U.Toggle}});var q=B(25683),W=B(57273),U=B(7493)},57273:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.Open=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(Open,C);var T=_createSuper(Open);function Open(){return(0,W.default)(this,Open),T.apply(this,arguments)}return(0,U.default)(Open,[{key:"apply",value:function apply(){$e.route(this.component.getNamespace())}}]),Open}(q(B(83024)).default);T.Open=H;var G=H;T.default=G},7493:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.Toggle=void 0;var W=q(B(78983)),U=q(B(42081)),L=q(B(58724)),$=q(B(71173)),V=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,V.default)(C);if(T){var W=(0,V.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,$.default)(this,B)}}var H=function(C){(0,L.default)(Toggle,C);var T=_createSuper(Toggle);function Toggle(){return(0,W.default)(this,Toggle),T.apply(this,arguments)}return(0,U.default)(Toggle,[{key:"apply",value:function apply(){this.component.isOpen?this.component.close():$e.route(this.component.getNamespace())}}]),Toggle}(q(B(83024)).default);T.Toggle=H;var G=H;T.default=G},19263:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(93231)),U=q(B(40131)),L=q(B(78983)),$=q(B(42081)),V=q(B(58724)),H=q(B(71173)),G=q(B(74910)),K=q(B(46867)),Q=B(71177),J=q(B(1192)),X=q(B(40647)),Y=q(B(70170));function ownKeys(C,T){var B=Object.keys(C);if(Object.getOwnPropertySymbols){var q=Object.getOwnPropertySymbols(C);T&&(q=q.filter((function(T){return Object.getOwnPropertyDescriptor(C,T).enumerable}))),B.push.apply(B,q)}return B}function _objectSpread(C){for(var T=1;T0&&void 0!==arguments[0]?arguments[0]:{};C.manager&&(this.manager=C.manager),this.commands=this.defaultCommands(),this.commandsInternal=this.defaultCommandsInternal(),this.hooks=this.defaultHooks(),this.routes=this.defaultRoutes(),this.tabs=this.defaultTabs(),this.shortcuts=this.defaultShortcuts(),this.utils=this.defaultUtils(),this.data=this.defaultData(),this.uiStates=this.defaultUiStates(),this.states=this.defaultStates(),this.defaultRoute="",this.currentTab=""}},{key:"registerAPI",value:function registerAPI(){var C=this;Object.entries(this.getTabs()).forEach((function(T){return C.registerTabRoute(T[0])})),Object.entries(this.getRoutes()).forEach((function(T){var B=(0,U.default)(T,2),q=B[0],W=B[1];return C.registerRoute(q,W)})),Object.entries(this.getCommands()).forEach((function(T){var B=(0,U.default)(T,2),q=B[0],W=B[1];return C.registerCommand(q,W)})),Object.entries(this.getCommandsInternal()).forEach((function(T){var B=(0,U.default)(T,2),q=B[0],W=B[1];return C.registerCommandInternal(q,W)})),Object.values(this.getHooks()).forEach((function(T){return C.registerHook(T)})),Object.entries(this.getData()).forEach((function(T){var B=(0,U.default)(T,2),q=B[0],W=B[1];return C.registerData(q,W)})),Object.values(this.getUiStates()).forEach((function(T){return C.registerUiState(T)})),Object.entries(this.getStates()).forEach((function(T){var B=(0,U.default)(T,2),q=B[0],W=B[1];return C.registerState(q,W)}))}},{key:"getNamespace",value:function getNamespace(){(0,X.default)()}},{key:"getRootContainer",value:function getRootContainer(){return Y.default.deprecated("getRootContainer()","3.7.0","getServiceName()"),this.getServiceName()}},{key:"getServiceName",value:function getServiceName(){return this.getNamespace().split("/")[0]}},{key:"store",get:function get(){return $e.store.get(this.getNamespace())}},{key:"defaultTabs",value:function defaultTabs(){return{}}},{key:"defaultRoutes",value:function defaultRoutes(){return{}}},{key:"defaultCommands",value:function defaultCommands(){return{}}},{key:"defaultCommandsInternal",value:function defaultCommandsInternal(){return{}}},{key:"defaultHooks",value:function defaultHooks(){return{}}},{key:"defaultUiStates",value:function defaultUiStates(){return{}}},{key:"defaultStates",value:function defaultStates(){return{}}},{key:"defaultShortcuts",value:function defaultShortcuts(){return{}}},{key:"defaultUtils",value:function defaultUtils(){return{}}},{key:"defaultData",value:function defaultData(){return{}}},{key:"getCommands",value:function getCommands(){return this.commands}},{key:"getCommandsInternal",value:function getCommandsInternal(){return this.commandsInternal}},{key:"getHooks",value:function getHooks(){return this.hooks}},{key:"getUiStates",value:function getUiStates(){return this.uiStates}},{key:"getStates",value:function getStates(){return this.states}},{key:"getRoutes",value:function getRoutes(){return this.routes}},{key:"getTabs",value:function getTabs(){return this.tabs}},{key:"getShortcuts",value:function getShortcuts(){return this.shortcuts}},{key:"getData",value:function getData(){return this.data}},{key:"registerCommand",value:function registerCommand(C,T){var B;switch(arguments.length>2&&void 0!==arguments[2]?arguments[2]:"default"){case"default":B=$e.commands;break;case"internal":B=$e.commandsInternal;break;case"data":B=$e.data;break;default:throw new Error("Invalid commands type: '".concat(C,"'"))}var q=this.getNamespace()+"/"+C,W={command:q,component:this};!!T.getInstanceType&&T.getInstanceType()||($e.devTools&&$e.devTools.log.warn("Attach command-callback-base, on command: '".concat(q,"', context is unknown type.")),W.callback=T,T=function(C){(0,V.default)(context,C);var T=_createSuper(context);function context(){return(0,L.default)(this,context),T.apply(this,arguments)}return(0,$.default)(context)}(K.default)),T.setRegisterConfig(W),B.register(this,C,T)}},{key:"registerHook",value:function registerHook(C){return C.register()}},{key:"registerCommandInternal",value:function registerCommandInternal(C,T){this.registerCommand(C,T,"internal")}},{key:"registerUiState",value:function registerUiState(C){$e.uiStates.register(C)}},{key:"registerState",value:function registerState(C,T){C=this.getNamespace()+(C?"/".concat(C):"");var B=(0,Q.createSlice)(_objectSpread(_objectSpread({},T),{},{name:C}));$e.store.register(C,B)}},{key:"registerRoute",value:function registerRoute(C,T){$e.routes.register(this,C,T)}},{key:"registerData",value:function registerData(C,T){this.registerCommand(C,T,"data")}},{key:"unregisterRoute",value:function unregisterRoute(C){$e.routes.unregister(this,C)}},{key:"registerTabRoute",value:function registerTabRoute(C){var T=this;this.registerRoute(C,(function(B){return T.activateTab(C,B)}))}},{key:"dependency",value:function dependency(){return!0}},{key:"open",value:function open(){return!0}},{key:"close",value:function close(){return!!this.isOpen&&(this.isOpen=!1,this.inactivate(),$e.routes.clearCurrent(this.getNamespace()),$e.routes.clearHistory(this.getServiceName()),!0)}},{key:"activate",value:function activate(){$e.components.activate(this.getNamespace())}},{key:"inactivate",value:function inactivate(){$e.components.inactivate(this.getNamespace())}},{key:"isActive",value:function isActive(){return $e.components.isActive(this.getNamespace())}},{key:"onRoute",value:function onRoute(C){this.toggleRouteClass(C,!0),this.toggleHistoryClass(),this.activate(),this.trigger("route/open",C)}},{key:"onCloseRoute",value:function onCloseRoute(C){this.toggleRouteClass(C,!1),this.inactivate(),this.trigger("route/close",C)}},{key:"setDefaultRoute",value:function setDefaultRoute(C){this.defaultRoute=this.getNamespace()+"/"+C}},{key:"getDefaultRoute",value:function getDefaultRoute(){return this.defaultRoute}},{key:"removeTab",value:function removeTab(C){delete this.tabs[C],this.unregisterRoute(C)}},{key:"hasTab",value:function hasTab(C){return!!this.tabs[C]}},{key:"addTab",value:function addTab(C,T,B){var q=this;if(this.tabs[C]=T,void 0!==B){var W={},U=Object.keys(this.tabs);U.pop(),U.splice(B,0,C),U.forEach((function(C){W[C]=q.tabs[C]})),this.tabs=W}this.registerTabRoute(C)}},{key:"getTabsWrapperSelector",value:function getTabsWrapperSelector(){return""}},{key:"getTabRoute",value:function getTabRoute(C){return this.getNamespace()+"/"+C}},{key:"renderTab",value:function renderTab(C){}},{key:"activateTab",value:function activateTab(C,T){var B=this;this.renderTab(C,T),jQuery(this.getTabsWrapperSelector()+" .elementor-component-tab").off("click").on("click",(function(C){$e.route(B.getTabRoute(C.currentTarget.dataset.tab),T)})).removeClass("elementor-active").filter('[data-tab="'+C+'"]').addClass("elementor-active")}},{key:"getActiveTabConfig",value:function getActiveTabConfig(){return this.tabs[this.currentTab]||{}}},{key:"getBodyClass",value:function getBodyClass(C){return"e-route-"+C.replace(/\//g,"-")}},{key:"normalizeCommandName",value:function normalizeCommandName(C){return C.replace(/[A-Z]/g,(function(C,T){return(T>0?"-":"")+C.toLowerCase()}))}},{key:"importCommands",value:function importCommands(C){var T=this,B={};return Object.entries(C).forEach((function(C){var q=(0,U.default)(C,2),W=q[0],L=q[1],$=T.normalizeCommandName(W);B[$]=L})),B}},{key:"importHooks",value:function importHooks(C){var T={};for(var B in C){var q=new C[B];T[q.getId()]=q}return T}},{key:"importUiStates",value:function importUiStates(C){var T=this,B={};return Object.values(C).forEach((function(C){var q=new C(T);B[q.getId()]=q})),B}},{key:"setUiState",value:function setUiState(C,T){$e.uiStates.set("".concat(this.getNamespace(),"/").concat(C),T)}},{key:"toggleRouteClass",value:function toggleRouteClass(C,T){document.body.classList.toggle(this.getBodyClass(C),T)}},{key:"toggleHistoryClass",value:function toggleHistoryClass(){document.body.classList.toggle("e-routes-has-history",!!$e.routes.getHistory(this.getServiceName()).length)}}]),ComponentBase}(J.default);T.default=Z},19076:(C,T,B)=>{"use strict";var q=B(73203),W=B(7501);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var U=q(B(78983)),L=q(B(42081)),$=q(B(51121)),V=q(B(58724)),H=q(B(71173)),G=q(B(74910)),K=q(B(19263)),Q=function _interopRequireWildcard(C,T){if(!T&&C&&C.__esModule)return C;if(null===C||"object"!==W(C)&&"function"!=typeof C)return{default:C};var B=_getRequireWildcardCache(T);if(B&&B.has(C))return B.get(C);var q={},U=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var L in C)if("default"!==L&&Object.prototype.hasOwnProperty.call(C,L)){var $=U?Object.getOwnPropertyDescriptor(C,L):null;$&&($.get||$.set)?Object.defineProperty(q,L,$):q[L]=C[L]}q.default=C,B&&B.set(C,q);return q}(B(53832)),J=q(B(40647));function _getRequireWildcardCache(C){if("function"!=typeof WeakMap)return null;var T=new WeakMap,B=new WeakMap;return(_getRequireWildcardCache=function _getRequireWildcardCache(C){return C?B:T})(C)}function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,G.default)(C);if(T){var W=(0,G.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,H.default)(this,B)}}var X=function(C){(0,V.default)(ComponentModalBase,C);var T=_createSuper(ComponentModalBase);function ComponentModalBase(){return(0,U.default)(this,ComponentModalBase),T.apply(this,arguments)}return(0,L.default)(ComponentModalBase,[{key:"registerAPI",value:function registerAPI(){var C=this;(0,$.default)((0,G.default)(ComponentModalBase.prototype),"registerAPI",this).call(this),$e.shortcuts.register("esc",{scopes:[this.getNamespace()],callback:function callback(){return C.close()}})}},{key:"defaultCommands",value:function defaultCommands(){return this.importCommands(Q)}},{key:"defaultRoutes",value:function defaultRoutes(){return{"":function _(){}}}},{key:"open",value:function open(){var C=this;if(!this.layout){var T=this.getModalLayout();this.layout=new T({component:this}),this.layout.getModal().on("hide",(function(){return C.close()}))}return this.layout.showModal(),!0}},{key:"close",value:function close(){return!!(0,$.default)((0,G.default)(ComponentModalBase.prototype),"close",this).call(this)&&(this.layout.getModal().hide(),!0)}},{key:"getModalLayout",value:function getModalLayout(){(0,J.default)()}}]),ComponentModalBase}(K.default);T.default=X},17341:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(78983)),U=q(B(42081)),L=function(){function Console(){(0,W.default)(this,Console)}return(0,U.default)(Console,null,[{key:"error",value:function error(C){$e.devTools&&$e.devTools.log.error(C),C instanceof $e.modules.HookBreak||console.error(C)}},{key:"warn",value:function warn(){for(var C,T='font-size: 12px; background-image: url("'.concat(elementorWebCliConfig.urls.assets,'images/logo-icon.png"); background-repeat: no-repeat; background-size: contain;'),B=arguments.length,q=new Array(B),W=0;W{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=void 0;var W=q(B(40131)),U=q(B(78983)),L=q(B(42081)),$=q(B(17341)),V=function deprecatedMessage(C,T,B,q){var W="`".concat(T,"` is ").concat(C," deprecated since ").concat(B);q&&(W+=" - Use `".concat(q,"` instead")),$.default.warn(W)},H=function(){function Deprecation(){(0,U.default)(this,Deprecation)}return(0,L.default)(Deprecation,null,[{key:"deprecated",value:function deprecated(C,T,B){this.isHardDeprecated(T)?function hardDeprecated(C,T,B){V("hard",C,T,B)}(C,T,B):function softDeprecated(C,T,B){elementorWebCliConfig.isDebug&&V("soft",C,T,B)}(C,T,B)}},{key:"parseVersion",value:function parseVersion(C){var T=C.split(".");if(T.length<3||T.length>4)throw new RangeError("Invalid Semantic Version string provided");var B=(0,W.default)(T,4),q=B[0],U=B[1],L=B[2],$=B[3],V=void 0===$?"":$;return{major1:parseInt(q),major2:parseInt(U),minor:parseInt(L),build:V}}},{key:"getTotalMajor",value:function getTotalMajor(C){var T=parseInt("".concat(C.major1).concat(C.major2,"0"));return T=Number((T/10).toFixed(0)),C.major2>9&&(T=C.major2-9),T}},{key:"compareVersion",value:function compareVersion(C,T){var B=this;return[this.parseVersion(C),this.parseVersion(T)].map((function(C){return B.getTotalMajor(C)})).reduce((function(C,T){return C-T}))}},{key:"isSoftDeprecated",value:function isSoftDeprecated(C){return this.compareVersion(C,elementorWebCliConfig.version)<=4}},{key:"isHardDeprecated",value:function isHardDeprecated(C){var T=this.compareVersion(C,elementorWebCliConfig.version);return T<0||T>=8}}]),Deprecation}();T.default=H},40647:(C,T,B)=>{"use strict";var q=B(73203);Object.defineProperty(T,"__esModule",{value:!0}),T.default=T.ForceMethodImplementation=void 0;var W=q(B(42081)),U=q(B(78983)),L=q(B(77266)),$=q(B(58724)),V=q(B(71173)),H=q(B(74910));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,H.default)(C);if(T){var W=(0,H.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,V.default)(this,B)}}var G=function(C){(0,$.default)(ForceMethodImplementation,C);var T=_createSuper(ForceMethodImplementation);function ForceMethodImplementation(){var C,B=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,U.default)(this,ForceMethodImplementation),C=T.call(this,"".concat(B.isStatic?"static ":"").concat(B.fullName,"() should be implemented, please provide '").concat(B.functionName||B.fullName,"' functionality.")),Error.captureStackTrace((0,L.default)(C),ForceMethodImplementation),C}return(0,W.default)(ForceMethodImplementation)}((0,q(B(19952)).default)(Error));T.ForceMethodImplementation=G;T.default=function _default(){var C=Error().stack.split("\n")[2].trim(),T=C.startsWith("at new")?"constructor":C.split(" ")[1],B={};if(B.functionName=T,B.fullName=T,B.functionName.includes(".")){var q=B.functionName.split(".");B.className=q[0],B.functionName=q[1]}else B.isStatic=!0;throw new G(B)}},38003:C=>{"use strict";C.exports=wp.i18n},98106:C=>{C.exports=function _arrayLikeToArray(C,T){(null==T||T>C.length)&&(T=C.length);for(var B=0,q=new Array(T);B{C.exports=function _arrayWithHoles(C){if(Array.isArray(C))return C},C.exports.__esModule=!0,C.exports.default=C.exports},77266:C=>{C.exports=function _assertThisInitialized(C){if(void 0===C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C},C.exports.__esModule=!0,C.exports.default=C.exports},10029:C=>{function asyncGeneratorStep(C,T,B,q,W,U,L){try{var $=C[U](L),V=$.value}catch(C){return void B(C)}$.done?T(V):Promise.resolve(V).then(q,W)}C.exports=function _asyncToGenerator(C){return function(){var T=this,B=arguments;return new Promise((function(q,W){var U=C.apply(T,B);function _next(C){asyncGeneratorStep(U,q,W,_next,_throw,"next",C)}function _throw(C){asyncGeneratorStep(U,q,W,_next,_throw,"throw",C)}_next(void 0)}))}},C.exports.__esModule=!0,C.exports.default=C.exports},78983:C=>{C.exports=function _classCallCheck(C,T){if(!(C instanceof T))throw new TypeError("Cannot call a class as a function")},C.exports.__esModule=!0,C.exports.default=C.exports},76824:(C,T,B)=>{var q=B(96196),W=B(14161);C.exports=function _construct(C,T,B){if(W())return Reflect.construct.apply(null,arguments);var U=[null];U.push.apply(U,T);var L=new(C.bind.apply(C,U));return B&&q(L,B.prototype),L},C.exports.__esModule=!0,C.exports.default=C.exports},42081:(C,T,B)=>{var q=B(74040);function _defineProperties(C,T){for(var B=0;B{var q=B(74040);C.exports=function _defineProperty(C,T,B){return(T=q(T))in C?Object.defineProperty(C,T,{value:B,enumerable:!0,configurable:!0,writable:!0}):C[T]=B,C},C.exports.__esModule=!0,C.exports.default=C.exports},51121:(C,T,B)=>{var q=B(79443);function _get(){return"undefined"!=typeof Reflect&&Reflect.get?(C.exports=_get=Reflect.get.bind(),C.exports.__esModule=!0,C.exports.default=C.exports):(C.exports=_get=function _get(C,T,B){var W=q(C,T);if(W){var U=Object.getOwnPropertyDescriptor(W,T);return U.get?U.get.call(arguments.length<3?C:B):U.value}},C.exports.__esModule=!0,C.exports.default=C.exports),_get.apply(this,arguments)}C.exports=_get,C.exports.__esModule=!0,C.exports.default=C.exports},74910:C=>{function _getPrototypeOf(T){return C.exports=_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function _getPrototypeOf(C){return C.__proto__||Object.getPrototypeOf(C)},C.exports.__esModule=!0,C.exports.default=C.exports,_getPrototypeOf(T)}C.exports=_getPrototypeOf,C.exports.__esModule=!0,C.exports.default=C.exports},58724:(C,T,B)=>{var q=B(96196);C.exports=function _inherits(C,T){if("function"!=typeof T&&null!==T)throw new TypeError("Super expression must either be null or a function");C.prototype=Object.create(T&&T.prototype,{constructor:{value:C,writable:!0,configurable:!0}}),Object.defineProperty(C,"prototype",{writable:!1}),T&&q(C,T)},C.exports.__esModule=!0,C.exports.default=C.exports},73203:C=>{C.exports=function _interopRequireDefault(C){return C&&C.__esModule?C:{default:C}},C.exports.__esModule=!0,C.exports.default=C.exports},94346:C=>{C.exports=function _isNativeFunction(C){try{return-1!==Function.toString.call(C).indexOf("[native code]")}catch(T){return"function"==typeof C}},C.exports.__esModule=!0,C.exports.default=C.exports},14161:C=>{function _isNativeReflectConstruct(){try{var T=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(T){}return(C.exports=_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!T},C.exports.__esModule=!0,C.exports.default=C.exports)()}C.exports=_isNativeReflectConstruct,C.exports.__esModule=!0,C.exports.default=C.exports},40608:C=>{C.exports=function _iterableToArrayLimit(C,T){var B=null==C?null:"undefined"!=typeof Symbol&&C[Symbol.iterator]||C["@@iterator"];if(null!=B){var q,W,U,L,$=[],V=!0,H=!1;try{if(U=(B=B.call(C)).next,0===T){if(Object(B)!==B)return;V=!1}else for(;!(V=(q=U.call(B)).done)&&($.push(q.value),$.length!==T);V=!0);}catch(C){H=!0,W=C}finally{try{if(!V&&null!=B.return&&(L=B.return(),Object(L)!==L))return}finally{if(H)throw W}}return $}},C.exports.__esModule=!0,C.exports.default=C.exports},56894:C=>{C.exports=function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},C.exports.__esModule=!0,C.exports.default=C.exports},71173:(C,T,B)=>{var q=B(7501).default,W=B(77266);C.exports=function _possibleConstructorReturn(C,T){if(T&&("object"===q(T)||"function"==typeof T))return T;if(void 0!==T)throw new TypeError("Derived constructors may only return object or undefined");return W(C)},C.exports.__esModule=!0,C.exports.default=C.exports},21337:(C,T,B)=>{var q=B(7501).default;function _regeneratorRuntime(){"use strict";C.exports=_regeneratorRuntime=function _regeneratorRuntime(){return B},C.exports.__esModule=!0,C.exports.default=C.exports;var T,B={},W=Object.prototype,U=W.hasOwnProperty,L=Object.defineProperty||function(C,T,B){C[T]=B.value},$="function"==typeof Symbol?Symbol:{},V=$.iterator||"@@iterator",H=$.asyncIterator||"@@asyncIterator",G=$.toStringTag||"@@toStringTag";function define(C,T,B){return Object.defineProperty(C,T,{value:B,enumerable:!0,configurable:!0,writable:!0}),C[T]}try{define({},"")}catch(T){define=function define(C,T,B){return C[T]=B}}function wrap(C,T,B,q){var W=T&&T.prototype instanceof Generator?T:Generator,U=Object.create(W.prototype),$=new Context(q||[]);return L(U,"_invoke",{value:makeInvokeMethod(C,B,$)}),U}function tryCatch(C,T,B){try{return{type:"normal",arg:C.call(T,B)}}catch(C){return{type:"throw",arg:C}}}B.wrap=wrap;var K="suspendedStart",Q="suspendedYield",J="executing",X="completed",Y={};function Generator(){}function GeneratorFunction(){}function GeneratorFunctionPrototype(){}var Z={};define(Z,V,(function(){return this}));var ee=Object.getPrototypeOf,te=ee&&ee(ee(values([])));te&&te!==W&&U.call(te,V)&&(Z=te);var re=GeneratorFunctionPrototype.prototype=Generator.prototype=Object.create(Z);function defineIteratorMethods(C){["next","throw","return"].forEach((function(T){define(C,T,(function(C){return this._invoke(T,C)}))}))}function AsyncIterator(C,T){function invoke(B,W,L,$){var V=tryCatch(C[B],C,W);if("throw"!==V.type){var H=V.arg,G=H.value;return G&&"object"==q(G)&&U.call(G,"__await")?T.resolve(G.__await).then((function(C){invoke("next",C,L,$)}),(function(C){invoke("throw",C,L,$)})):T.resolve(G).then((function(C){H.value=C,L(H)}),(function(C){return invoke("throw",C,L,$)}))}$(V.arg)}var B;L(this,"_invoke",{value:function value(C,q){function callInvokeWithMethodAndArg(){return new T((function(T,B){invoke(C,q,T,B)}))}return B=B?B.then(callInvokeWithMethodAndArg,callInvokeWithMethodAndArg):callInvokeWithMethodAndArg()}})}function makeInvokeMethod(C,B,q){var W=K;return function(U,L){if(W===J)throw new Error("Generator is already running");if(W===X){if("throw"===U)throw L;return{value:T,done:!0}}for(q.method=U,q.arg=L;;){var $=q.delegate;if($){var V=maybeInvokeDelegate($,q);if(V){if(V===Y)continue;return V}}if("next"===q.method)q.sent=q._sent=q.arg;else if("throw"===q.method){if(W===K)throw W=X,q.arg;q.dispatchException(q.arg)}else"return"===q.method&&q.abrupt("return",q.arg);W=J;var H=tryCatch(C,B,q);if("normal"===H.type){if(W=q.done?X:Q,H.arg===Y)continue;return{value:H.arg,done:q.done}}"throw"===H.type&&(W=X,q.method="throw",q.arg=H.arg)}}}function maybeInvokeDelegate(C,B){var q=B.method,W=C.iterator[q];if(W===T)return B.delegate=null,"throw"===q&&C.iterator.return&&(B.method="return",B.arg=T,maybeInvokeDelegate(C,B),"throw"===B.method)||"return"!==q&&(B.method="throw",B.arg=new TypeError("The iterator does not provide a '"+q+"' method")),Y;var U=tryCatch(W,C.iterator,B.arg);if("throw"===U.type)return B.method="throw",B.arg=U.arg,B.delegate=null,Y;var L=U.arg;return L?L.done?(B[C.resultName]=L.value,B.next=C.nextLoc,"return"!==B.method&&(B.method="next",B.arg=T),B.delegate=null,Y):L:(B.method="throw",B.arg=new TypeError("iterator result is not an object"),B.delegate=null,Y)}function pushTryEntry(C){var T={tryLoc:C[0]};1 in C&&(T.catchLoc=C[1]),2 in C&&(T.finallyLoc=C[2],T.afterLoc=C[3]),this.tryEntries.push(T)}function resetTryEntry(C){var T=C.completion||{};T.type="normal",delete T.arg,C.completion=T}function Context(C){this.tryEntries=[{tryLoc:"root"}],C.forEach(pushTryEntry,this),this.reset(!0)}function values(C){if(C||""===C){var B=C[V];if(B)return B.call(C);if("function"==typeof C.next)return C;if(!isNaN(C.length)){var W=-1,L=function next(){for(;++W=0;--q){var W=this.tryEntries[q],L=W.completion;if("root"===W.tryLoc)return handle("end");if(W.tryLoc<=this.prev){var $=U.call(W,"catchLoc"),V=U.call(W,"finallyLoc");if($&&V){if(this.prev=0;--B){var q=this.tryEntries[B];if(q.tryLoc<=this.prev&&U.call(q,"finallyLoc")&&this.prev=0;--T){var B=this.tryEntries[T];if(B.finallyLoc===C)return this.complete(B.completion,B.afterLoc),resetTryEntry(B),Y}},catch:function _catch(C){for(var T=this.tryEntries.length-1;T>=0;--T){var B=this.tryEntries[T];if(B.tryLoc===C){var q=B.completion;if("throw"===q.type){var W=q.arg;resetTryEntry(B)}return W}}throw new Error("illegal catch attempt")},delegateYield:function delegateYield(C,B,q){return this.delegate={iterator:values(C),resultName:B,nextLoc:q},"next"===this.method&&(this.arg=T),Y}},B}C.exports=_regeneratorRuntime,C.exports.__esModule=!0,C.exports.default=C.exports},96196:C=>{function _setPrototypeOf(T,B){return C.exports=_setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function _setPrototypeOf(C,T){return C.__proto__=T,C},C.exports.__esModule=!0,C.exports.default=C.exports,_setPrototypeOf(T,B)}C.exports=_setPrototypeOf,C.exports.__esModule=!0,C.exports.default=C.exports},40131:(C,T,B)=>{var q=B(17358),W=B(40608),U=B(35068),L=B(56894);C.exports=function _slicedToArray(C,T){return q(C)||W(C,T)||U(C,T)||L()},C.exports.__esModule=!0,C.exports.default=C.exports},79443:(C,T,B)=>{var q=B(74910);C.exports=function _superPropBase(C,T){for(;!Object.prototype.hasOwnProperty.call(C,T)&&null!==(C=q(C)););return C},C.exports.__esModule=!0,C.exports.default=C.exports},56027:(C,T,B)=>{var q=B(7501).default;C.exports=function toPrimitive(C,T){if("object"!=q(C)||!C)return C;var B=C[Symbol.toPrimitive];if(void 0!==B){var W=B.call(C,T||"default");if("object"!=q(W))return W;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===T?String:Number)(C)},C.exports.__esModule=!0,C.exports.default=C.exports},74040:(C,T,B)=>{var q=B(7501).default,W=B(56027);C.exports=function toPropertyKey(C){var T=W(C,"string");return"symbol"==q(T)?T:String(T)},C.exports.__esModule=!0,C.exports.default=C.exports},7501:C=>{function _typeof(T){return C.exports=_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(C){return typeof C}:function(C){return C&&"function"==typeof Symbol&&C.constructor===Symbol&&C!==Symbol.prototype?"symbol":typeof C},C.exports.__esModule=!0,C.exports.default=C.exports,_typeof(T)}C.exports=_typeof,C.exports.__esModule=!0,C.exports.default=C.exports},35068:(C,T,B)=>{var q=B(98106);C.exports=function _unsupportedIterableToArray(C,T){if(C){if("string"==typeof C)return q(C,T);var B=Object.prototype.toString.call(C).slice(8,-1);return"Object"===B&&C.constructor&&(B=C.constructor.name),"Map"===B||"Set"===B?Array.from(C):"Arguments"===B||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(B)?q(C,T):void 0}},C.exports.__esModule=!0,C.exports.default=C.exports},19952:(C,T,B)=>{var q=B(74910),W=B(96196),U=B(94346),L=B(76824);function _wrapNativeSuper(T){var B="function"==typeof Map?new Map:void 0;return C.exports=_wrapNativeSuper=function _wrapNativeSuper(C){if(null===C||!U(C))return C;if("function"!=typeof C)throw new TypeError("Super expression must either be null or a function");if(void 0!==B){if(B.has(C))return B.get(C);B.set(C,Wrapper)}function Wrapper(){return L(C,arguments,q(this).constructor)}return Wrapper.prototype=Object.create(C.prototype,{constructor:{value:Wrapper,enumerable:!1,writable:!0,configurable:!0}}),W(Wrapper,C)},C.exports.__esModule=!0,C.exports.default=C.exports,_wrapNativeSuper(T)}C.exports=_wrapNativeSuper,C.exports.__esModule=!0,C.exports.default=C.exports},50824:(C,T,B)=>{var q=B(21337)();C.exports=q;try{regeneratorRuntime=q}catch(C){"object"==typeof globalThis?globalThis.regeneratorRuntime=q:Function("r","regeneratorRuntime = r")(q)}}},T={};function __webpack_require__(B){var q=T[B];if(void 0!==q)return q.exports;var W=T[B]={exports:{}};return C[B](W,W.exports,__webpack_require__),W.exports}__webpack_require__.d=(C,T)=>{for(var B in T)__webpack_require__.o(T,B)&&!__webpack_require__.o(C,B)&&Object.defineProperty(C,B,{enumerable:!0,get:T[B]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(C){if("object"==typeof window)return window}}(),__webpack_require__.o=(C,T)=>Object.prototype.hasOwnProperty.call(C,T),__webpack_require__.r=C=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(C,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(C,"__esModule",{value:!0})},(()=>{"use strict";var C=__webpack_require__(73203),T=C(__webpack_require__(78983)),B=C(__webpack_require__(42081)),q=C(__webpack_require__(51121)),W=C(__webpack_require__(58724)),U=C(__webpack_require__(71173)),L=C(__webpack_require__(74910)),$=C(__webpack_require__(90287)),V=C(__webpack_require__(35107)),H=C(__webpack_require__(52253)),G=C(__webpack_require__(22998)),K=C(__webpack_require__(36614)),Q=C(__webpack_require__(57100)),J=C(__webpack_require__(13450)),X=C(__webpack_require__(26231)),Y=C(__webpack_require__(62879)),Z=C(__webpack_require__(99956));function _createSuper(C){var T=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(C){return!1}}();return function _createSuperInternal(){var B,q=(0,L.default)(C);if(T){var W=(0,L.default)(this).constructor;B=Reflect.construct(q,arguments,W)}else B=q.apply(this,arguments);return(0,U.default)(this,B)}}var ee=function(C){(0,W.default)(ElementorCommonApp,C);var U=_createSuper(ElementorCommonApp);function ElementorCommonApp(){return(0,T.default)(this,ElementorCommonApp),U.apply(this,arguments)}return(0,B.default)(ElementorCommonApp,[{key:"setMarionetteTemplateCompiler",value:function setMarionetteTemplateCompiler(){Marionette.TemplateCache.prototype.compileTemplate=function(C,T){return T={evaluate:/<#([\s\S]+?)#>/g,interpolate:/{{{([\s\S]+?)}}}/g,escape:/{{([^}]+?)}}(?!})/g},_.template(C,T)}}},{key:"getDefaultElements",value:function getDefaultElements(){return{$window:jQuery(window),$document:jQuery(document),$body:jQuery(document.body)}}},{key:"initComponents",value:function initComponents(){this.events=new Y.default,this.debug=new H.default,this.helpers=new $.default,this.storage=new V.default,this.dialogsManager=new DialogsManager.Instance,this.notifications=new Z.default,this.api=window.$e,$e.components.register(new X.default),elementorCommon.elements.$window.on("elementor:init-components",(function(){$e.components.register(new J.default)})),this.initModules()}},{key:"initModules",value:function initModules(){var C=this,T=this.config.activeModules,B={ajax:G.default,finder:K.default,connect:Q.default};T.forEach((function(T){B[T]&&(C[T]=new B[T](C.config[T]))}))}},{key:"compileArrayTemplateArgs",value:function compileArrayTemplateArgs(C,T){return C.replace(/%(?:(\d+)\$)?s/g,(function(C,B){return B||(B=1),B--,void 0!==T[B]?T[B]:C}))}},{key:"compileObjectTemplateArgs",value:function compileObjectTemplateArgs(C,T){return C.replace(/{{(?:([ \w]+))}}/g,(function(C,B){return T[B]?T[B]:C}))}},{key:"compileTemplate",value:function compileTemplate(C,T){return jQuery.isPlainObject(T)?this.compileObjectTemplateArgs(C,T):this.compileArrayTemplateArgs(C,T)}},{key:"translate",value:function translate(C,T,B,q){T&&(q=this.config[T].i18n),q||(q=this.config.i18n);var W=q[C];return void 0===W&&(W=C),B&&(W=this.compileTemplate(W,B)),W}},{key:"onInit",value:function onInit(){(0,q.default)((0,L.default)(ElementorCommonApp.prototype),"onInit",this).call(this),this.config=elementorCommonConfig,this.setMarionetteTemplateCompiler()}}]),ElementorCommonApp}(elementorModules.ViewModule);window.elementorCommon=new ee,elementorCommon.initComponents()})()})();/*! elementor - v3.12.2 - 23-04-2023 */ .elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}/*! For license information please see editor-site-navigation.js.LICENSE.txt */ !function(){"use strict";var e={"./packages/packages/core/editor-site-navigation/src/api/post.ts":function(e,t,n){n.r(t),n.d(t,{POST_PER_PAGE:function(){return r},createRequest:function(){return createRequest},deleteRequest:function(){return deleteRequest},duplicateRequest:function(){return duplicateRequest},getRequest:function(){return getRequest},postTypesMap:function(){return i},updateRequest:function(){return updateRequest}});var o=n("@wordpress/api-fetch"),s=n.n(o),a=n("@wordpress/i18n");const i={page:{labels:{singular_name:(0,a.__)("Page","elementor"),plural_name:(0,a.__)("Pages","elementor")},rest_base:"pages"}},r=10,getRequest=async(e,t)=>{const n=`/wp/v2/${i[e].rest_base}`+"?"+new URLSearchParams({status:"any",order:"asc",page:t.toString(),per_page:r.toString(),_fields:["id","type","title","link","status","user_can"].join(",")}).toString(),o=await s()({path:n,parse:!1});return{data:await o.json(),totalPages:Number(o.headers.get("x-wp-totalpages")),totalPosts:Number(o.headers.get("x-wp-total")),currentPage:t}},createRequest=(e,t)=>{const n=`/wp/v2/${i[e].rest_base}`;return s()({path:n,method:"POST",data:t})},updateRequest=(e,t)=>{const n=`/wp/v2/${i[e].rest_base}`,{id:o,...a}=t;return s()({path:`${n}/${o}`,method:"POST",data:a})},deleteRequest=(e,t)=>{const n=`/wp/v2/${i[e].rest_base}`;return s()({path:`${n}/${t}`,method:"DELETE"})},duplicateRequest=e=>s()({path:"/elementor/v1/site-navigation/duplicate-post",method:"POST",data:{post_id:e.id,title:e.title}})},"./packages/packages/core/editor-site-navigation/src/api/recent-posts.ts":function(e,t,n){n.r(t),n.d(t,{NUMBER_OF_RECENT_POSTS:function(){return i},baseUrl:function(){return a},getRequest:function(){return getRequest}});var o=n("@wordpress/api-fetch"),s=n.n(o);const a="/elementor/v1/site-navigation/recent-posts",i=6,getRequest=()=>{const e=new URLSearchParams({posts_per_page:`${i}`}),t=`${a}?${e.toString()}`;return s()({path:t})}},"./packages/packages/core/editor-site-navigation/src/api/settings.ts":function(e,t,n){n.r(t),n.d(t,{getSettings:function(){return getSettings},updateSettings:function(){return updateSettings}});var o=n("@wordpress/api-fetch"),s=n.n(o);const getSettings=()=>s()({path:"/elementor/v1/site-navigation/homepage"}),updateSettings=e=>s()({path:"/wp/v2/settings",method:"POST",data:e})},"./packages/packages/core/editor-site-navigation/src/api/user.ts":function(e,t,n){n.r(t),n.d(t,{getUser:function(){return getUser}});var o=n("@wordpress/api-fetch"),s=n.n(o);const getUser=()=>{const e="/wp/v2/users/me?"+new URLSearchParams({_fields:["capabilities"].join(","),context:"edit"}).toString();return s()({path:e})}},"./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/action-menu-item.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return ActionMenuItem}});var o=n("react"),s=n("@elementor/ui");function ActionMenuItem({title:e,icon:t,MenuItemProps:n}){return o.createElement(s.MenuItem,n,o.createElement(s.ListItemIcon,{sx:{color:"inherit"}},o.createElement(t,null)),o.createElement(s.ListItemText,{primary:e}))}},"./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/delete.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return Delete}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("@elementor/icons"),i=n("@elementor/ui"),r=n("@wordpress/i18n"),c=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),l=n("./packages/packages/core/editor-site-navigation/src/hooks/use-posts-actions.ts"),p=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/action-menu-item.tsx");function Delete({post:e}){const[t,n]=(0,o.useState)(!1),i=(0,s.__useActiveDocument)(),c=i?.id===e.id,l=!e.user_can.delete||e.isHome||c;return o.createElement(o.Fragment,null,o.createElement(p.default,{title:(0,r.__)("Delete","elementor"),icon:a.TrashIcon,MenuItemProps:{disabled:l,onClick:()=>n(!0),sx:{"&:hover":{color:"error.main"}}}}),t&&o.createElement(DeleteDialog,{post:e,setIsDialogOpen:n}))}function DeleteDialog({post:e,setIsDialogOpen:t}){const{type:n}=(0,c.usePostListContext)(),{deletePost:s}=(0,l.usePostActions)(n),{setError:a}=(0,c.usePostListContext)(),p=(0,r.sprintf)((0,r.__)('Delete "%s"?',"elementor"),e.title.rendered),handleCancel=()=>{s.isPending||t(!1)};return o.createElement(i.Dialog,{open:!0,onClose:handleCancel,"aria-labelledby":"delete-dialog"},o.createElement(i.DialogTitle,{noWrap:!0},p),o.createElement(i.Divider,null),o.createElement(i.DialogContent,null,o.createElement(i.DialogContentText,null,(0,r.__)("The page and its content will be deleted forever and we won’t be able to recover them.","elementor"))),o.createElement(i.DialogActions,null,o.createElement(i.Button,{variant:"contained",color:"secondary",onClick:handleCancel,disabled:s.isPending},(0,r.__)("Cancel","elementor")),o.createElement(i.Button,{variant:"contained",color:"error",onClick:async()=>{try{await s.mutateAsync(e.id)}catch{a(),t(!1)}},disabled:s.isPending},s.isPending?o.createElement(i.CircularProgress,null):(0,r.__)("Delete","elementor"))))}},"./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/duplicate.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return Duplicate}});var o=n("react"),s=n("@elementor/icons"),a=n("@wordpress/i18n"),i=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/hooks/use-user.ts"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/action-menu-item.tsx");function Duplicate({post:e,popupState:t}){const{setEditMode:n}=(0,i.usePostListContext)(),{data:l}=(0,r.default)(),p=!l?.capabilities?.edit_pages;return o.createElement(c.default,{title:(0,a.__)("Duplicate","elementor"),icon:s.CopyIcon,MenuItemProps:{disabled:p,onClick:()=>{t.close(),n({mode:"duplicate",details:{postId:e.id,title:e.title.rendered}})}}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/rename.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return Rename}});var o=n("react"),s=n("@elementor/icons"),a=n("@wordpress/i18n"),i=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/action-menu-item.tsx");function Rename({post:e}){const{setEditMode:t}=(0,i.usePostListContext)();return o.createElement(r.default,{title:(0,a.__)("Rename","elementor"),icon:s.EraseIcon,MenuItemProps:{disabled:!e.user_can.edit,onClick:()=>{t({mode:"rename",details:{postId:e.id}})}}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/set-home.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return SetHome}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui"),i=n("@wordpress/i18n"),r=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),c=n("./packages/packages/core/editor-site-navigation/src/hooks/use-homepage-actions.ts"),l=n("./packages/packages/core/editor-site-navigation/src/hooks/use-user.ts"),p=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/action-menu-item.tsx");function SetHome({post:e,closeMenu:t}){const{updateSettingsMutation:n}=(0,c.useHomepageActions)(),{setError:u}=(0,r.usePostListContext)(),{data:d}=(0,l.default)(),m=!!d?.capabilities?.manage_options,g="publish"===e.status,f=!!e.isHome,k=!m||f||!g||n.isPending;return o.createElement(p.default,{title:(0,i.__)("Set as homepage","elementor"),icon:n.isPending?a.CircularProgress:s.HomeIcon,MenuItemProps:{disabled:k,onClick:async()=>{try{await n.mutateAsync({show_on_front:"page",page_on_front:e.id})}catch{u()}finally{t()}}}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/view.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return View}});var o=n("react"),s=n("@elementor/icons"),a=n("@wordpress/i18n"),i=n("./packages/packages/core/editor-site-navigation/src/api/post.ts"),r=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/action-menu-item.tsx");function View({post:e}){const{type:t}=(0,r.usePostListContext)(),n=(0,a.__)("View %s","elementor").replace("%s",i.postTypesMap[t].labels.singular_name);return o.createElement(c.default,{title:n,icon:s.EyeIcon,MenuItemProps:{onClick:()=>window.open(e.link,"_blank")}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/add-new-button.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return AddNewButton}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui"),i=n("@wordpress/i18n"),r=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),c=n("./packages/packages/core/editor-site-navigation/src/hooks/use-user.ts");function AddNewButton(){const{setEditMode:e}=(0,r.usePostListContext)(),{data:t}=(0,c.default)();return o.createElement(a.Button,{size:"small",startIcon:o.createElement(s.PlusIcon,null),disabled:!t?.capabilities?.edit_pages,onClick:()=>{e({mode:"create",details:{}})},sx:{px:1.5}},(0,i.__)("Add New","elementor"))}},"./packages/packages/core/editor-site-navigation/src/components/panel/error-snackbar.tsx":function(e,t,n){n.r(t);var o=n("react"),s=n("@elementor/ui");t.default=({open:e,onClose:t})=>o.createElement(s.Snackbar,{open:e,onClose:t,anchorOrigin:{vertical:"bottom",horizontal:"left"}},o.createElement(s.Alert,{onClose:t,severity:"error",sx:{width:"100%"}},o.createElement(s.Typography,{component:"span",sx:{fontWeight:"bold"}},"We couldn’t complete the action.")," ","Please try again"))},"./packages/packages/core/editor-site-navigation/src/components/panel/panel.ts":function(e,t,n){n.r(t),n.d(t,{panel:function(){return a},usePanelActions:function(){return r},usePanelStatus:function(){return i}});var o=n("@elementor/editor-panels"),s=n("./packages/packages/core/editor-site-navigation/src/components/panel/shell.tsx");const{panel:a,usePanelStatus:i,usePanelActions:r}=(0,o.__createPanel)({id:"site-navigation-panel",component:s.default})},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/collapsible-list.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return CollapsibleList}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui");const i=(0,a.styled)(s.ChevronDownIcon,{shouldForwardProp:e=>"isOpen"!==e})(({theme:e,isOpen:t})=>({transform:t?"rotate(0deg)":"rotate(-90deg)",transition:e.transitions.create("transform",{duration:e.transitions.duration.standard})})),r=(0,a.styled)(a.ListItemIcon)(({theme:e})=>({minWidth:e.spacing(4)}));function CollapsibleList({label:e,Icon:t,isOpenByDefault:n=!1,children:s}){const[c,l]=(0,o.useState)(n);return o.createElement(o.Fragment,null,o.createElement(a.ListItem,null,o.createElement(r,{sx:{color:"text.secondary"}},o.createElement(a.IconButton,{onClick:()=>l(e=>!e),size:"small",sx:{color:"inherit"}},o.createElement(i,{fontSize:"small",isOpen:c}))),o.createElement(r,{size:"small",sx:{color:"inherit"}},o.createElement(t,{fontSize:"small"})),o.createElement(a.ListItemText,{primaryTypographyProps:{variant:"subtitle2",component:"span"},primary:e})),o.createElement(a.Collapse,{in:c,timeout:"auto",unmountOnExit:!0},o.createElement(a.List,{dense:!0},s)),o.createElement(a.Divider,{sx:{mt:1}}))}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/error-state.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return ErrorState}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui"),i=n("@wordpress/i18n");function ErrorState(){return o.createElement(a.Box,{sx:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",pt:"40px",gap:"16px"}},o.createElement(s.Error404TemplateIcon,null),o.createElement(a.Box,{sx:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",gap:"8px"}},o.createElement(a.Typography,{variant:"body1",color:"text.primary"},(0,i.__)("We couldn’t display your pages.","elementor")),o.createElement(a.Box,null,o.createElement(a.Typography,{variant:"body2",color:"text.primary",sx:{textAlign:"center"}},(0,i.__)("It’s probably a temporary issue.","elementor")),o.createElement(a.Typography,{variant:"body2",color:"text.primary",sx:{textAlign:"center"}},(0,i.__)("If the problem persists,","elementor")," ",o.createElement(a.Link,{target:"_blank",href:"https://go.elementor.com/wp-editor-support-open-ticket/"},"Notify support")))))}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/edit-mode-template.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return EditModeTemplate}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui"),i=n("@wordpress/i18n"),r=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx");function EditModeTemplate({postTitle:e,isLoading:t,callback:n}){const[s,r]=(0,o.useState)(e),[c,l]=(0,o.useState)(!1),[p,u]=(0,o.useState)(null),d=(0,o.useRef)(),validateInput=e=>""!==e.trim(),runCallback=()=>{validateInput(s)&&n(s)};return o.createElement(o.Fragment,null,o.createElement(a.ListItem,{secondaryAction:o.createElement(CloseButton,{isLoading:t,closeButton:d})},o.createElement(a.Box,{width:"100%",component:"form",onSubmit:e=>{e.preventDefault(),runCallback()}},o.createElement(a.TextField,{autoFocus:!0,fullWidth:!0,value:s,onChange:e=>{c||l(!0);const t=e.target.value;validateInput(t)?u(null):u((0,i.__)("Name is required","elementor")),r(t)},disabled:t,error:!!p,onBlur:e=>{d.current!==e.relatedTarget&&runCallback()},variant:"outlined",color:"secondary",size:"small"}))),p&&o.createElement(a.ListItem,null,o.createElement(a.ListItemText,{sx:{color:"error.main"}},p)))}function CloseButton({isLoading:e,closeButton:t}){const{resetEditMode:n}=(0,r.usePostListContext)();return o.createElement(a.IconButton,{size:"small",color:"secondary",onClick:n,ref:t,disabled:e},e?o.createElement(a.CircularProgress,null):o.createElement(s.XIcon,{fontSize:"small"}))}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-create.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return ListItemCreate}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("@wordpress/i18n"),i=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/hooks/use-posts-actions.ts"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/edit-mode-template.tsx");function ListItemCreate(){const{type:e,resetEditMode:t}=(0,i.usePostListContext)(),{createPost:n}=(0,r.usePostActions)(e),l=(0,s.__useNavigateToDocument)(),{setError:p}=(0,i.usePostListContext)();return o.createElement(c.default,{postTitle:(0,a.__)("New Page","elementor"),isLoading:n.isPending,callback:async e=>{try{const{id:t}=await n.mutateAsync({title:e,status:"draft"});l(t)}catch{p()}finally{t()}}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-duplicate.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return ListItemDuplicate}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("@wordpress/i18n"),i=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/hooks/use-posts-actions.ts"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/edit-mode-template.tsx");function ListItemDuplicate(){const{type:e,editMode:t,resetEditMode:n}=(0,i.usePostListContext)(),l=(0,s.__useNavigateToDocument)(),{duplicatePost:p}=(0,r.usePostActions)(e),{setError:u}=(0,i.usePostListContext)();if("duplicate"!==t.mode)return null;return o.createElement(c.default,{postTitle:`${t.details.title} ${(0,a.__)("copy","elementor")}`,isLoading:p.isPending,callback:async e=>{try{const{post_id:n}=await p.mutateAsync({id:t.details.postId,title:e});l(n)}catch{u()}finally{n()}}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-rename.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return ListItemRename}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),i=n("./packages/packages/core/editor-site-navigation/src/hooks/use-posts-actions.ts"),r=n("./packages/packages/core/editor-site-navigation/src/hooks/use-rename-active-document.ts"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/edit-mode-template.tsx");function ListItemRename({post:e}){const{type:t,resetEditMode:n}=(0,a.usePostListContext)(),{updatePost:l}=(0,i.usePostActions)(t),{setError:p}=(0,a.usePostListContext)(),u=(0,s.__useActiveDocument)(),d=(0,r.default)(),m=u?.id===e.id,g=m?u?.title:e.title.rendered;return o.createElement(c.default,{postTitle:g,isLoading:l.isPending,callback:async t=>{t===g&&n();try{m?await d(t):await l.mutateAsync({id:e.id,title:t})}catch{p()}finally{n()}}})}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-view.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return ListItemView}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("@elementor/icons"),i=n("@elementor/ui"),r=n("@wordpress/i18n"),c=n("./packages/packages/core/editor-site-navigation/src/components/shared/page-title-and-status.tsx"),l=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/delete.tsx"),p=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/duplicate.tsx"),u=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/rename.tsx"),d=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/set-home.tsx"),m=n("./packages/packages/core/editor-site-navigation/src/components/panel/actions-menu/actions/view.tsx");function _extends(){return _extends=Object.assign?Object.assign.bind():function(e){for(var t=1;t{if(t){const t=o.createElement(i.Typography,{variant:"caption"},"You cannot edit this page.",o.createElement("br",null),"To edit it directly, contact the site owner");return o.createElement(i.Tooltip,{title:t,placement:"bottom",arrow:!1},e)}return o.createElement(o.Fragment,null,e)};function ListItemView({post:e}){const t=(0,s.__useActiveDocument)(),n=(0,s.__useNavigateToDocument)(),g=(0,i.usePopupState)({variant:"popover",popupId:"post-actions",disableAutoFocus:!0}),f=t?.id===e.id,k=f?t?.status.value:e.status,v=f?t?.title:e.title.rendered,x=!e.user_can.edit;return o.createElement(o.Fragment,null,o.createElement(DisabledPostTooltip,{isDisabled:x},o.createElement(i.ListItem,{disablePadding:!0,secondaryAction:o.createElement(i.IconButton,_extends({value:!0,size:"small"},(0,i.bindTrigger)(g)),o.createElement(a.DotsVerticalIcon,{fontSize:"small"}))},o.createElement(i.ListItemButton,{selected:f,disabled:x,onClick:()=>{f||n(e.id)},dense:!0},o.createElement(i.ListItemText,{disableTypography:!0},o.createElement(c.default,{title:v,status:k})),e.isHome&&o.createElement(a.HomeIcon,{titleAccess:(0,r.__)("Homepage","elementor"),color:"disabled"})))),o.createElement(i.Menu,_extends({PaperProps:{sx:{mt:2,width:200}},MenuListProps:{dense:!0}},(0,i.bindMenu)(g)),o.createElement(u.default,{post:e}),o.createElement(p.default,{post:e,popupState:g}),o.createElement(l.default,{post:e}),o.createElement(m.default,{post:e}),o.createElement(i.Divider,null),o.createElement(d.default,{post:e,closeMenu:()=>g.close()})))}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/post-list-item.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return PostListItem}});var o=n("react"),s=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),a=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-create.tsx"),i=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-duplicate.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-rename.tsx"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/list-items/list-item-view.tsx");function PostListItem({post:e}){const{editMode:t}=(0,s.usePostListContext)();return"rename"===t.mode&&e?.id&&e?.id===t.details.postId?o.createElement(r.default,{post:e}):"create"!==t.mode||e?"duplicate"!==t.mode||e?e?o.createElement(c.default,{post:e}):null:o.createElement(i.default,null):o.createElement(a.default,null)}},"./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/posts-collapsible-list.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return PostsCollapsibleList}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui"),i=n("./packages/packages/core/editor-site-navigation/src/api/post.ts"),r=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),c=n("./packages/packages/core/editor-site-navigation/src/hooks/use-homepage.ts"),l=n("./packages/packages/core/editor-site-navigation/src/hooks/use-posts.ts"),p=n("./packages/packages/core/editor-site-navigation/src/components/panel/add-new-button.tsx"),u=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/collapsible-list.tsx"),d=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/error-state.tsx"),m=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/post-list-item.tsx");function PostsCollapsibleList({isOpenByDefault:e=!1}){const{type:t,editMode:n}=(0,r.usePostListContext)(),{data:{posts:g,total:f},isLoading:k,isError:v,fetchNextPage:x,hasNextPage:y,isFetchingNextPage:_}=(0,l.usePosts)(t),{data:E}=(0,c.useHomepage)();if(v)return o.createElement(d.default,null);if(!g||k)return o.createElement(a.Box,{sx:{px:5}},o.createElement(a.Box,{display:"flex",justifyContent:"flex-end",alignItems:"center"},o.createElement(a.Skeleton,{sx:{my:4},animation:"wave",variant:"rounded",width:"110px",height:"28px"})),o.createElement(a.Box,null,o.createElement(a.Skeleton,{sx:{my:3},animation:"wave",variant:"rounded",width:"100%",height:"24px"}),o.createElement(a.Skeleton,{sx:{my:3},animation:"wave",variant:"rounded",width:"70%",height:"24px"}),o.createElement(a.Skeleton,{sx:{my:3},animation:"wave",variant:"rounded",width:"70%",height:"24px"}),o.createElement(a.Skeleton,{sx:{my:3},animation:"wave",variant:"rounded",width:"70%",height:"24px"})));const h=`${i.postTypesMap[t].labels.plural_name} (${f.toString()})`,P=g.map(e=>e.id===E?{...e,isHome:!0}:e).sort((e,t)=>e.id===E?-1:t.id===E?1:0);return o.createElement(o.Fragment,null,o.createElement(a.Box,{display:"flex",justifyContent:"flex-end",alignItems:"center",sx:{py:1,px:2}},o.createElement(p.default,null)),o.createElement(a.List,{dense:!0},o.createElement(u.default,{label:h,Icon:s.PageTypeIcon,isOpenByDefault:e||!1},P.map(e=>o.createElement(m.default,{key:e.id,post:e})),["duplicate","create"].includes(n.mode)&&o.createElement(m.default,null),y&&o.createElement(a.Box,{sx:{display:"flex",justifyContent:"center"}},o.createElement(a.Button,{onClick:x,color:"secondary"},_?o.createElement(a.CircularProgress,null):"Load More")))))}},"./packages/packages/core/editor-site-navigation/src/components/panel/shell.tsx":function(e,t,n){n.r(t);var o=n("react"),s=n("@elementor/editor-panels"),a=n("@wordpress/i18n"),i=n("./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/components/panel/error-snackbar.tsx"),c=n("./packages/packages/core/editor-site-navigation/src/components/panel/posts-list/posts-collapsible-list.tsx");t.default=()=>{const[e,t]=(0,o.useState)(!1);return o.createElement(s.Panel,null,o.createElement(s.PanelHeader,null,o.createElement(s.PanelHeaderTitle,null,(0,a.__)("Pages","elementor"))),o.createElement(s.PanelBody,null,o.createElement(i.PostListContextProvider,{type:"page",setError:()=>t(!0)},o.createElement(c.default,{isOpenByDefault:!0})),o.createElement(r.default,{open:e,onClose:()=>t(!1)})))}},"./packages/packages/core/editor-site-navigation/src/components/shared/page-title-and-status.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return PageTitleAndStatus}});var o=n("react"),s=n("@elementor/ui"),a=n("./packages/packages/core/editor-site-navigation/src/hooks/use-reverse-html-entities.ts");const PageStatus=({status:e})=>"publish"===e?null:o.createElement(s.Typography,{component:"span",variant:"body2",color:"text.secondary",sx:{textTransform:"capitalize",fontStyle:"italic",whiteSpace:"nowrap",flexBasis:"content"}},"(",e,")"),PageTitle=({title:e})=>{const t=(0,a.useReverseHtmlEntities)(e);return o.createElement(s.Typography,{component:"span",variant:"body2",color:"text.secondary",noWrap:!0,sx:{flexBasis:"auto"}},t)};function PageTitleAndStatus({title:e,status:t}){return o.createElement(s.Box,{display:"flex"},o.createElement(PageTitle,{title:e})," ",o.createElement(PageStatus,{status:t}))}},"./packages/packages/core/editor-site-navigation/src/components/top-bar/chip-doc-type.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return DocTypeChip}});var o=n("react"),s=n("@elementor/icons"),a=n("@elementor/ui");const i=(0,n("./packages/packages/core/editor-site-navigation/src/icons-map.ts").getIconsMap)();function DocTypeChip({postType:e,docType:t,label:n}){const r="elementor_library"===e?"global":"primary",c=i[t]||s.PostTypeIcon;return o.createElement(a.Chip,{component:"span",size:"small",variant:"outlined",label:n,"data-value":t,color:r,icon:o.createElement(c,null),sx:{ml:1,cursor:"inherit"}})}},"./packages/packages/core/editor-site-navigation/src/components/top-bar/create-post-list-item.tsx":function(e,t,n){n.r(t),n.d(t,{CreatePostListItem:function(){return CreatePostListItem}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("@elementor/icons"),i=n("@elementor/ui"),r=n("@wordpress/i18n"),c=n("./packages/packages/core/editor-site-navigation/src/hooks/use-create-page.ts"),l=n("./packages/packages/core/editor-site-navigation/src/hooks/use-user.ts");function _extends(){return _extends=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{id:t}=await n();e(),await u(t)}},t),o.createElement(i.ListItemIcon,null,p?o.createElement(i.CircularProgress,{size:"1.25rem"}):o.createElement(a.PlusIcon,{fontSize:"small"})),o.createElement(i.ListItemText,{primaryTypographyProps:{variant:"body2"},primary:(0,r.__)("Add new page","elementor")}))}},"./packages/packages/core/editor-site-navigation/src/components/top-bar/indicator.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return Indicator}});var o=n("react"),s=n("@elementor/ui");function _extends(){return _extends=Object.assign?Object.assign.bind():function(e){for(var t=1;t{t(),await c(e.id)}},n),o.createElement(a.ListItemText,{sx:{flexGrow:0},primaryTypographyProps:{variant:"body2",noWrap:!0},primary:l}),o.createElement(r.default,{postType:e.type.post_type,docType:e.type.doc_type,label:e.type.label}))}},"./packages/packages/core/editor-site-navigation/src/components/top-bar/recently-edited.tsx":function(e,t,n){n.r(t),n.d(t,{default:function(){return RecentlyEdited}});var o=n("react"),s=n("@elementor/editor-documents"),a=n("@elementor/icons"),i=n("@elementor/ui"),r=n("@wordpress/i18n"),c=n("./packages/packages/core/editor-site-navigation/src/api/recent-posts.ts"),l=n("./packages/packages/core/editor-site-navigation/src/hooks/use-recent-posts.ts"),p=n("./packages/packages/core/editor-site-navigation/src/hooks/use-reverse-html-entities.ts"),u=n("./packages/packages/core/editor-site-navigation/src/components/top-bar/create-post-list-item.tsx"),d=n("./packages/packages/core/editor-site-navigation/src/components/top-bar/indicator.tsx"),m=n("./packages/packages/core/editor-site-navigation/src/components/top-bar/post-list-item.tsx");function _extends(){return _extends=Object.assign?Object.assign.bind():function(e){for(var t=1;te.id!==n?.id).splice(0,c.NUMBER_OF_RECENT_POSTS-1):[],k=(0,i.usePopupState)({variant:"popover",popupId:"elementor-v2-top-bar-recently-edited"}),v=(0,p.useReverseHtmlEntities)(n?.title);if(!n)return null;const x=(0,i.bindTrigger)(k);return o.createElement(o.Fragment,null,o.createElement(i.Button,_extends({color:"inherit",size:"small",endIcon:o.createElement(a.ChevronDownIcon,{fontSize:"small"})},x,{onClick:e=>{const t=window,n=t?.elementorCommon?.eventsManager?.config;n&&t.elementorCommon.eventsManager.dispatchEvent(n.names.topBar.documentNameDropdown,{location:n.locations.topBar,secondaryLocation:n.secondaryLocations.documentNameDropdown,trigger:n.triggers.dropdownClick,element:n.elements.dropdown}),x.onClick(e)}}),o.createElement(d.default,{title:v,status:n.status})),o.createElement(i.Menu,_extends({MenuListProps:{subheader:o.createElement(i.ListSubheader,{color:"primary",sx:{fontStyle:"italic",fontWeight:"300"}},(0,r.__)("Recent","elementor"))},PaperProps:{sx:{mt:2.5,width:320}}},(0,i.bindMenu)(k)),f.map(e=>o.createElement(m.PostListItem,{key:e.id,post:e,closePopup:k.close})),0===f.length&&o.createElement(i.MenuItem,{disabled:!0},o.createElement(i.ListItemText,{primaryTypographyProps:{variant:"caption",fontStyle:"italic"},primary:(0,r.__)("There are no other pages or templates on this site yet.","elementor")})),o.createElement(i.Divider,{disabled:0===f.length}),o.createElement(u.CreatePostListItem,{closePopup:k.close})))}},"./packages/packages/core/editor-site-navigation/src/contexts/post-list-context.tsx":function(e,t,n){n.r(t),n.d(t,{PostListContextProvider:function(){return PostListContextProvider},usePostListContext:function(){return usePostListContext}});var o=n("react");const s={type:"page",editMode:{mode:"none",details:{}},setEditMode:()=>null,resetEditMode:()=>null,setError:()=>null},a=(0,o.createContext)(s),PostListContextProvider=({type:e,setError:t,children:n})=>{const[i,r]=(0,o.useState)(s.editMode);return o.createElement(a.Provider,{value:{type:e,editMode:i,setEditMode:r,resetEditMode:()=>{r(s.editMode)},setError:t}},n)};function usePostListContext(){const e=(0,o.useContext)(a);if(!e)throw new Error("The `usePostListContext()` hook must be used within an ``");return e}},"./packages/packages/core/editor-site-navigation/src/env.ts":function(e,t,n){n.r(t),n.d(t,{env:function(){return s}});var o=n("@elementor/env");const{env:s}=(0,o.parseEnv)("@elementor/editor-site-navigation",e=>e)},"./packages/packages/core/editor-site-navigation/src/hooks/use-create-page.ts":function(e,t,n){n.r(t),n.d(t,{default:function(){return useCreatePage},endpointPath:function(){return i}});var o=n("react"),s=n("@wordpress/api-fetch"),a=n.n(s);const i="/elementor/v1/site-navigation/add-new-post";function useCreatePage(){const[e,t]=(0,o.useState)(!1);return{create:()=>(t(!0),async function addNewPage(){return await a()({path:i,method:"POST",data:{post_type:"page"}})}().then(e=>e).finally(()=>t(!1))),isLoading:e}}},"./packages/packages/core/editor-site-navigation/src/hooks/use-homepage-actions.ts":function(e,t,n){n.r(t),n.d(t,{useHomepageActions:function(){return useHomepageActions}});var o=n("@elementor/query"),s=n("./packages/packages/core/editor-site-navigation/src/api/settings.ts"),a=n("./packages/packages/core/editor-site-navigation/src/hooks/use-homepage.ts");function useHomepageActions(){const e=function useInvalidateSettings(){const e=(0,o.useQueryClient)();return(t={})=>{const n=(0,a.settingsQueryKey)();return e.invalidateQueries({queryKey:n},t)}}();return{updateSettingsMutation:(0,o.useMutation)({mutationFn:e=>(0,s.updateSettings)(e),onSuccess:async()=>e({exact:!0})})}}},"./packages/packages/core/editor-site-navigation/src/hooks/use-homepage.ts":function(e,t,n){n.r(t),n.d(t,{settingsQueryKey:function(){return settingsQueryKey},useHomepage:function(){return useHomepage}});var o=n("@elementor/query"),s=n("./packages/packages/core/editor-site-navigation/src/api/settings.ts");const settingsQueryKey=()=>["site-navigation","homepage"];function useHomepage(){return(0,o.useQuery)({queryKey:settingsQueryKey(),queryFn:()=>(0,s.getSettings)()})}},"./packages/packages/core/editor-site-navigation/src/hooks/use-posts-actions.ts":function(e,t,n){n.r(t),n.d(t,{usePostActions:function(){return usePostActions}});var o=n("@elementor/query"),s=n("./packages/packages/core/editor-site-navigation/src/api/post.ts"),a=n("./packages/packages/core/editor-site-navigation/src/hooks/use-posts.ts"),i=n("./packages/packages/core/editor-site-navigation/src/hooks/use-recent-posts.ts");function usePostActions(e){const t=function useInvalidatePosts(e){const t=(0,o.useQueryClient)();return(n={})=>{const o=(0,a.postsQueryKey)(e);return t.invalidateQueries({queryKey:i.recentPostsQueryKey},n),t.invalidateQueries({queryKey:o},n)}}(e),onSuccess=()=>t({exact:!0});return{createPost:(0,o.useMutation)({mutationFn:t=>(0,s.createRequest)(e,t),onSuccess:onSuccess}),updatePost:(0,o.useMutation)({mutationFn:t=>(0,s.updateRequest)(e,t),onSuccess:onSuccess}),deletePost:(0,o.useMutation)({mutationFn:t=>(0,s.deleteRequest)(e,t),onSuccess:onSuccess}),duplicatePost:(0,o.useMutation)({mutationFn:e=>(0,s.duplicateRequest)(e),onSuccess:onSuccess})}}},"./packages/packages/core/editor-site-navigation/src/hooks/use-posts.ts":function(e,t,n){n.r(t),n.d(t,{postsQueryKey:function(){return postsQueryKey},usePosts:function(){return usePosts}});var o=n("@elementor/query"),s=n("./packages/packages/core/editor-site-navigation/src/api/post.ts");const postsQueryKey=e=>["site-navigation","posts",e],flattenData=e=>{if(!e)return e;const t=[];return e.pages.forEach(e=>{t.push(...e.data)}),t};function usePosts(e){const t=(0,o.useInfiniteQuery)({queryKey:postsQueryKey(e),queryFn:({pageParam:t=1})=>(0,s.getRequest)(e,t),initialPageParam:1,getNextPageParam:e=>e.currentPage(0,s.getRequest)()})}},"./packages/packages/core/editor-site-navigation/src/hooks/use-rename-active-document.ts":function(e,t,n){n.r(t),n.d(t,{default:function(){return useRenameActiveDocument}});var o=n("@elementor/editor-v1-adapters");function useRenameActiveDocument(){return async e=>{const t=function getV1DocumentsManager(){const e=window.elementor?.documents;if(!e)throw new Error("Elementor Editor V1 documents manager not found");return e}().getCurrent().container;await(0,o.__privateRunCommand)("document/elements/settings",{container:t,settings:{post_title:e}})}}},"./packages/packages/core/editor-site-navigation/src/hooks/use-reverse-html-entities.ts":function(e,t,n){n.r(t),n.d(t,{useReverseHtmlEntities:function(){return useReverseHtmlEntities}});var o=n("react");function useReverseHtmlEntities(e=""){return(0,o.useMemo)(()=>{const t=document.createElement("textarea");t.innerHTML=e;const{value:n}=t;return t.remove(),n},[e])}},"./packages/packages/core/editor-site-navigation/src/hooks/use-toggle-button-props.ts":function(e,t,n){n.r(t),n.d(t,{useToggleButtonProps:function(){return useToggleButtonProps}});var o=n("@elementor/icons"),s=n("@wordpress/i18n"),a=n("./packages/packages/core/editor-site-navigation/src/components/panel/panel.ts");function useToggleButtonProps(){const{isOpen:e,isBlocked:t}=(0,a.usePanelStatus)(),{open:n,close:i}=(0,a.usePanelActions)();return{title:(0,s.__)("Pages","elementor"),icon:o.PagesIcon,onClick:()=>{const t=window,o=t?.elementorCommon?.eventsManager?.config;return o&&t.elementorCommon.eventsManager.dispatchEvent("top_bar_pages",{location:o.locations.topBar,secondaryLocation:o.secondaryLocations.elementorLogo,trigger:o.triggers.click,element:o.elements.buttonIcon}),e?i():n()},selected:e,disabled:t}}},"./packages/packages/core/editor-site-navigation/src/hooks/use-user.ts":function(e,t,n){n.r(t),n.d(t,{default:function(){return useUser}});var o=n("@elementor/query"),s=n("./packages/packages/core/editor-site-navigation/src/api/user.ts");const userQueryKey=()=>["site-navigation","user"];function useUser(){return(0,o.useQuery)({queryKey:userQueryKey(),queryFn:s.getUser,staleTime:18e5})}},"./packages/packages/core/editor-site-navigation/src/icons-map.ts":function(e,t,n){n.r(t),n.d(t,{extendIconsMap:function(){return extendIconsMap},getIconsMap:function(){return getIconsMap},resetIconsMap:function(){return resetIconsMap}});var o=n("@elementor/icons");const s={page:o.PageTemplateIcon,section:o.SectionTemplateIcon,container:o.ContainerTemplateIcon,"wp-page":o.PageTypeIcon,"wp-post":o.PostTypeIcon};let a={...s};function extendIconsMap(e){Object.assign(a,e)}function getIconsMap(){return a}function resetIconsMap(){a={...s}}},"./packages/packages/core/editor-site-navigation/src/init.ts":function(e,t,n){n.r(t),n.d(t,{init:function(){return init}});var o=n("@elementor/editor-app-bar"),s=n("@elementor/editor-panels"),a=n("./packages/packages/core/editor-site-navigation/src/components/panel/panel.ts"),i=n("./packages/packages/core/editor-site-navigation/src/components/top-bar/recently-edited.tsx"),r=n("./packages/packages/core/editor-site-navigation/src/env.ts"),c=n("./packages/packages/core/editor-site-navigation/src/hooks/use-toggle-button-props.ts");function init(){!function registerTopBarMenuItems(){(0,o.injectIntoPageIndication)({id:"document-recently-edited",component:i.default})}(),r.env.is_pages_panel_active&&((0,s.__registerPanel)(a.panel),function registerButton(){o.toolsMenu.registerToggleAction({id:"toggle-site-navigation-panel",priority:20,useProps:c.useToggleButtonProps})}())}},"@elementor/editor-app-bar":function(e){e.exports=window.elementorV2.editorAppBar},"@elementor/editor-documents":function(e){e.exports=window.elementorV2.editorDocuments},"@elementor/editor-panels":function(e){e.exports=window.elementorV2.editorPanels},"@elementor/editor-v1-adapters":function(e){e.exports=window.elementorV2.editorV1Adapters},"@elementor/env":function(e){e.exports=window.elementorV2.env},"@elementor/icons":function(e){e.exports=window.elementorV2.icons},"@elementor/query":function(e){e.exports=window.elementorV2.query},"@elementor/ui":function(e){e.exports=window.elementorV2.ui},"@wordpress/api-fetch":function(e){e.exports=window.wp.apiFetch},"@wordpress/i18n":function(e){e.exports=window.wp.i18n},react:function(e){e.exports=window.React}},t={};function __webpack_require__(n){var o=t[n];if(void 0!==o)return o.exports;var s=t[n]={exports:{}};return e[n](s,s.exports,__webpack_require__),s.exports}__webpack_require__.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=function(e,t){for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};!function(){__webpack_require__.r(n),__webpack_require__.d(n,{extendIconsMap:function(){return e.extendIconsMap},init:function(){return t.init}});var e=__webpack_require__("./packages/packages/core/editor-site-navigation/src/icons-map.ts"),t=__webpack_require__("./packages/packages/core/editor-site-navigation/src/init.ts")}(),(window.elementorV2=window.elementorV2||{}).editorSiteNavigation=n}(),window.elementorV2.editorSiteNavigation?.init?.(); //# sourceMappingURL=editor-site-navigation.js.map/** * Calls in content using theme hooks. * * @package kadence */ namespace Kadence; use function Kadence\kadence; use function add_action; defined( 'ABSPATH' ) || exit; /** * Kadence Header. * * @see Kadence\header_markup(); */ add_action( 'kadence_header', 'Kadence\header_markup' ); /** * Kadence Header Rows * * @see Kadence\top_header(); * @see Kadence\main_header(); * @see Kadence\bottom_header(); */ add_action( 'kadence_top_header', 'Kadence\top_header' ); add_action( 'kadence_main_header', 'Kadence\main_header' ); add_action( 'kadence_bottom_header', 'Kadence\bottom_header' ); /** * Kadence Header Columns * * @see Kadence\header_column(); */ add_action( 'kadence_render_header_column', 'Kadence\header_column', 10, 2 ); /** * Kadence Mobile Header * * @see Kadence\mobile_header(); */ add_action( 'kadence_mobile_header', 'Kadence\mobile_header' ); /** * Kadence Mobile Header Rows * * @see Kadence\mobile_top_header(); * @see Kadence\mobile_main_header(); * @see Kadence\mobile_bottom_header(); */ add_action( 'kadence_mobile_top_header', 'Kadence\mobile_top_header' ); add_action( 'kadence_mobile_main_header', 'Kadence\mobile_main_header' ); add_action( 'kadence_mobile_bottom_header', 'Kadence\mobile_bottom_header' ); /** * Kadence Mobile Header Columns * * @see Kadence\mobile_header_column(); */ add_action( 'kadence_render_mobile_header_column', 'Kadence\mobile_header_column', 10, 2 ); /** * Desktop Header Elements. * * @see Kadence\site_branding(); * @see Kadence\primary_navigation(); * @see Kadence\secondary_navigation(); * @see Kadence\header_html(); * @see Kadence\header_button(); * @see Kadence\header_cart(); * @see Kadence\header_social(); * @see Kadence\header_search(); */ add_action( 'kadence_site_branding', 'Kadence\site_branding' ); add_action( 'kadence_primary_navigation', 'Kadence\primary_navigation' ); add_action( 'kadence_secondary_navigation', 'Kadence\secondary_navigation' ); add_action( 'kadence_header_html', 'Kadence\header_html' ); add_action( 'kadence_header_button', 'Kadence\header_button' ); add_action( 'kadence_header_cart', 'Kadence\header_cart' ); add_action( 'kadence_header_social', 'Kadence\header_social' ); add_action( 'kadence_header_search', 'Kadence\header_search' ); /** * Mobile Header Elements. * * @see Kadence\mobile_site_branding(); * @see Kadence\navigation_popup_toggle(); * @see Kadence\mobile_navigation(); * @see Kadence\mobile_html(); * @see Kadence\mobile_button(); * @see Kadence\mobile_cart(); * @see Kadence\mobile_social(); * @see Kadence\primary_navigation(); */ add_action( 'kadence_mobile_site_branding', 'Kadence\mobile_site_branding' ); add_action( 'kadence_navigation_popup_toggle', 'Kadence\navigation_popup_toggle' ); add_action( 'kadence_mobile_navigation', 'Kadence\mobile_navigation' ); add_action( 'kadence_mobile_html', 'Kadence\mobile_html' ); add_action( 'kadence_mobile_button', 'Kadence\mobile_button' ); add_action( 'kadence_mobile_cart', 'Kadence\mobile_cart' ); add_action( 'kadence_mobile_social', 'Kadence\mobile_social' ); /** * Hero Title * * @see Kadence\hero_title(); */ add_action( 'kadence_hero_header', 'Kadence\hero_title' ); /** * Page Title area * * @see Kadence\kadence_entry_header(); */ add_action( 'kadence_entry_hero', 'Kadence\kadence_entry_header', 10, 2 ); add_action( 'kadence_entry_header', 'Kadence\kadence_entry_header', 10, 2 ); /** * Archive Title area * * @see Kadence\kadence_entry_archive_header(); */ add_action( 'kadence_entry_archive_hero', 'Kadence\kadence_entry_archive_header', 10, 2 ); add_action( 'kadence_entry_archive_header', 'Kadence\kadence_entry_archive_header', 10, 2 ); /** * Singular Content * * @see Kadence\single_markup(); */ add_action( 'kadence_single', 'Kadence\single_markup' ); /** * Singular Inner Content * * @see Kadence\single_content(); */ add_action( 'kadence_single_content', 'Kadence\single_content' ); /** * 404 Content * * @see Kadence\get_404_content(); */ add_action( 'kadence_404_content', 'Kadence\get_404_content' ); /** * Comments List * * @see Kadence\comments_list(); */ add_action( 'kadence_comments', 'Kadence\comments_list' ); /** * Comment Form * * @see Kadence\comments_form(); */ function check_comments_form_order() { $priority = ( kadence()->option( 'comment_form_before_list' ) ? 5 : 15 ); add_action( 'kadence_comments', 'Kadence\comments_form', $priority ); } add_action( 'kadence_comments', 'Kadence\check_comments_form_order', 1 ); /** * Archive Content * * @see Kadence\archive_markup(); */ add_action( 'kadence_archive', 'Kadence\archive_markup' ); /** * Archive Entry Content. * * @see Kadence\loop_entry(); */ add_action( 'kadence_loop_entry', 'Kadence\loop_entry' ); /** * Archive Entry thumbnail. * * @see Kadence\loop_entry_thumbnail(); */ add_action( 'kadence_loop_entry_thumbnail', 'Kadence\loop_entry_thumbnail' ); /** * Archive Entry header. * * @see Kadence\loop_entry_header(); */ add_action( 'kadence_loop_entry_content', 'Kadence\loop_entry_header', 10 ); /** * Archive Entry Summary. * * @see Kadence\loop_entry_summary(); */ add_action( 'kadence_loop_entry_content', 'Kadence\loop_entry_summary', 20 ); /** * Archive Entry Footer. * * @see Kadence\loop_entry_footer(); */ add_action( 'kadence_loop_entry_content', 'Kadence\loop_entry_footer', 30 ); /** * Archive Entry Taxonomies. * * @see Kadence\loop_entry_taxonomies(); */ add_action( 'kadence_loop_entry_header', 'Kadence\loop_entry_taxonomies', 10 ); /** * Archive Entry Title. * * @see Kadence\loop_entry_title(); */ add_action( 'kadence_loop_entry_header', 'Kadence\loop_entry_title', 20 ); /** * Archive Entry Meta. * * @see Kadence\loop_entry_meta(); */ add_action( 'kadence_loop_entry_header', 'Kadence\loop_entry_meta', 30 ); /** * Main Call for Kadence footer * * @see Kadence\footer_markup(); */ add_action( 'kadence_footer', 'Kadence\footer_markup' ); /** * Footer Top Row * * @see Kadence\top_footer(); */ add_action( 'kadence_top_footer', 'Kadence\top_footer' ); /** * Footer Middle Row * * @see Kadence\middle_footer() */ add_action( 'kadence_middle_footer', 'Kadence\middle_footer' ); /** * Footer Bottom Row * * @see Kadence\bottom_footer() */ add_action( 'kadence_bottom_footer', 'Kadence\bottom_footer' ); /** * Footer Column * * @see Kadence\footer_column() */ add_action( 'kadence_render_footer_column', 'Kadence\footer_column', 10, 2 ); /** * Footer Elements * * @see Kadence\footer_html(); * @see Kadence\footer_navigation() * @see Kadence\footer_social() */ add_action( 'kadence_footer_html', 'Kadence\footer_html' ); add_action( 'kadence_footer_navigation', 'Kadence\footer_navigation' ); add_action( 'kadence_footer_social', 'Kadence\footer_social' ); /** * WP Footer. * * @see Kadence\scroll_up(); */ add_action( 'wp_footer', 'Kadence\scroll_up' ); {"name":"Singapore Geeks!","description":"","url":"https:\/\/www.sgeek.sg","home":"https:\/\/www.sgeek.sg","gmt_offset":"0","timezone_string":"","page_for_posts":1597,"page_on_front":13,"show_on_front":"page","namespaces":["oembed\/1.0","kadence-starter-library\/v1","litespeed\/v1","litespeed\/v3","rankmath\/v1","rankmath\/v1\/setupWizard","wc\/v3","wc\/v1","wc\/pos\/v1\/catalog","kb-mailerlite\/v1","kb-getresponse\/v1","kb-fluentcrm\/v1","kbp\/v1","kb-lottieanimation\/v1","kb-vector\/v1","kb-design-library\/v1","kb-image-picker\/v1","jetpack\/v4","kbpp\/v1","kb-mailchimp\/v1","kb-activecampaign\/v1","kb-sendinblue\/v1","kbp-dynamic\/v1","kb-convertkit\/v1","kb-custom-svg\/v1","kt-wc-blocks\/v1","wc-admin","wc-analytics","wc\/store","wc\/store\/v1","wc\/private","wc\/v2","rankmath\/v1\/ca","rankmath\/v1\/an","rankmath\/v1\/in","rankmath\/v1\/status","ktp\/v1","google-site-kit\/v1","wc-admin-email","wc-telemetry","wccom-site\/v3","wp-abilities\/v1","wp\/v2","wp-site-health\/v1","wp-block-editor\/v1"],"authentication":{"application-passwords":{"endpoints":{"authorization":"https:\/\/www.sgeek.sg\/wp-admin\/authorize-application.php"}}},"routes":{"\/":{"namespace":"","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/"}]}},"\/batch\/v1":{"namespace":"","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"validation":{"type":"string","enum":["require-all-validate","normal"],"default":"normal","required":false},"requests":{"type":"array","maxItems":25,"items":{"type":"object","properties":{"method":{"type":"string","enum":["POST","PUT","PATCH","DELETE"],"default":"POST"},"path":{"type":"string","required":true},"body":{"type":"object","properties":[],"additionalProperties":true},"headers":{"type":"object","properties":[],"additionalProperties":{"type":["string","array"],"items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/batch\/v1"}]}},"\/oembed\/1.0":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"oembed\/1.0","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/oembed\/1.0"}]}},"\/oembed\/1.0\/embed":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"description":"The URL of the resource for which to fetch oEmbed data.","type":"string","format":"uri","required":true},"format":{"default":"json","required":false},"maxwidth":{"default":600,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/oembed\/1.0\/embed"}]}},"\/oembed\/1.0\/proxy":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"description":"The URL of the resource for which to fetch oEmbed data.","type":"string","format":"uri","required":true},"format":{"description":"The oEmbed format to use.","type":"string","default":"json","enum":["json","xml"],"required":false},"maxwidth":{"description":"The maximum width of the embed frame in pixels.","type":"integer","default":600,"required":false},"maxheight":{"description":"The maximum height of the embed frame in pixels.","type":"integer","required":false},"discover":{"description":"Whether to perform an oEmbed discovery request for unsanctioned providers.","type":"boolean","default":true,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/oembed\/1.0\/proxy"}]}},"\/kadence-starter-library\/v1":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kadence-starter-library\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1"}]}},"\/kadence-starter-library\/v1\/starter-help-docs":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/starter-help-docs"}]}},"\/kadence-starter-library\/v1\/handle_event":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"event_label":{"description":"The Event Label","type":"string","required":false},"event_data":{"description":"The Event Data","type":"object","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/handle_event"}]}},"\/kadence-starter-library\/v1\/get":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get"}]}},"\/kadence-starter-library\/v1\/ai-base":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/ai-base"}]}},"\/kadence-starter-library\/v1\/get-all-local-ai":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get-all-local-ai"}]}},"\/kadence-starter-library\/v1\/get-all-ai":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get-all-ai"}]}},"\/kadence-starter-library\/v1\/remove-content":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/remove-content"}]}},"\/kadence-starter-library\/v1\/install-plugins":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-plugins"}]}},"\/kadence-starter-library\/v1\/install-plugin":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-plugin"}]}},"\/kadence-starter-library\/v1\/install-pages":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-pages"}]}},"\/kadence-starter-library\/v1\/process-pages":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/process-pages"}]}},"\/kadence-starter-library\/v1\/install-posts":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-posts"}]}},"\/kadence-starter-library\/v1\/get-posts":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get-posts"}]}},"\/kadence-starter-library\/v1\/update-pages":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/update-pages"}]}},"\/kadence-starter-library\/v1\/get-products":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get-products"}]}},"\/kadence-starter-library\/v1\/install-products":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-products"}]}},"\/kadence-starter-library\/v1\/get-events":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get-events"}]}},"\/kadence-starter-library\/v1\/install-events":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-events"}]}},"\/kadence-starter-library\/v1\/install-course":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-course"}]}},"\/kadence-starter-library\/v1\/install-donation-form":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-donation-form"}]}},"\/kadence-starter-library\/v1\/install-block-cpt":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-block-cpt"}]}},"\/kadence-starter-library\/v1\/install-settings":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-settings"}]}},"\/kadence-starter-library\/v1\/install-navigation":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-navigation"}]}},"\/kadence-starter-library\/v1\/install-widgets":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/install-widgets"}]}},"\/kadence-starter-library\/v1\/get_remaining_credits":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_remaining_credits"}]}},"\/kadence-starter-library\/v1\/get_auth_data":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_auth_data"}]}},"\/kadence-starter-library\/v1\/get_initial_jobs":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_initial_jobs"}]}},"\/kadence-starter-library\/v1\/has_initial_jobs":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/has_initial_jobs"}]}},"\/kadence-starter-library\/v1\/get_remaining_jobs":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_remaining_jobs"}]}},"\/kadence-starter-library\/v1\/get_local_contexts":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_local_contexts"}]}},"\/kadence-starter-library\/v1\/get_images":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_images"}]}},"\/kadence-starter-library\/v1\/get_image_collections":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_image_collections"}]}},"\/kadence-starter-library\/v1\/get_search_query":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_search_query"}]}},"\/kadence-starter-library\/v1\/get_verticals":{"namespace":"kadence-starter-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_verticals"}]}},"\/kadence-starter-library\/v1\/get_keywords":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/get_keywords"}]}},"\/kadence-starter-library\/v1\/process_images":{"namespace":"kadence-starter-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Import Page.","type":"string","required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"plugins":{"description":"Import Plugins","type":"array","items":{"type":"string"},"required":false},"plugin":{"description":"Import Plugin","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kadence-starter-library\/v1\/process_images"}]}},"\/litespeed\/v1":{"namespace":"litespeed\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"litespeed\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1"}]}},"\/litespeed\/v1\/toggle_crawler_state":{"namespace":"litespeed\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/toggle_crawler_state"}]}},"\/litespeed\/v1\/tool\/check_ip":{"namespace":"litespeed\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/tool\/check_ip"}]}},"\/litespeed\/v1\/guest\/sync":{"namespace":"litespeed\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/guest\/sync"}]}},"\/litespeed\/v3":{"namespace":"litespeed\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"litespeed\/v3","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v3"}]}},"\/litespeed\/v3\/ip_validate":{"namespace":"litespeed\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v3\/ip_validate"}]}},"\/litespeed\/v3\/wp_rest_echo":{"namespace":"litespeed\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v3\/wp_rest_echo"}]}},"\/litespeed\/v3\/ping":{"namespace":"litespeed\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v3\/ping"}]}},"\/litespeed\/v3\/cdn_status":{"namespace":"litespeed\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v3\/cdn_status"}]}},"\/litespeed\/v1\/notify_img":{"namespace":"litespeed\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/notify_img"}]}},"\/litespeed\/v1\/notify_ccss":{"namespace":"litespeed\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/notify_ccss"}]}},"\/litespeed\/v1\/notify_ucss":{"namespace":"litespeed\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/notify_ucss"}]}},"\/litespeed\/v1\/notify_vpi":{"namespace":"litespeed\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/notify_vpi"}]}},"\/litespeed\/v3\/err_domains":{"namespace":"litespeed\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v3\/err_domains"}]}},"\/litespeed\/v1\/check_img":{"namespace":"litespeed\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/litespeed\/v1\/check_img"}]}},"\/rankmath\/v1":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1"}]}},"\/rankmath\/v1\/saveModule":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"module":{"type":"string","description":"Module slug","required":true},"state":{"type":"string","description":"Module state either on or off","enum":["on","off"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/saveModule"}]}},"\/rankmath\/v1\/toolsAction":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"action":{"type":"string","description":"Action to perform","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/toolsAction"}]}},"\/rankmath\/v1\/updateMode":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"mode":{"type":"string","description":"Mode to set","enum":["easy","advanced","custom"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateMode"}]}},"\/rankmath\/v1\/dashboardWidget":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/dashboardWidget"}]}},"\/rankmath\/v1\/updateSeoScore":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"postScores":{"type":"object","description":"Post scores","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateSeoScore"}]}},"\/rankmath\/v1\/updateSettings":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateSettings"}]}},"\/rankmath\/v1\/searchPage":{"namespace":"rankmath\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET","POST","PUT","PATCH","DELETE"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/searchPage"}]}},"\/rankmath\/v1\/disconnectSite":{"namespace":"rankmath\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"token":{"type":"string","description":"Site token","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/disconnectSite"}]}},"\/rankmath\/v1\/getFeaturedImageId":{"namespace":"rankmath\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"postId":{"type":"integer","description":"Post ID","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/getFeaturedImageId"}]}},"\/rankmath\/v1\/updateRedirection":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectID":{"type":"integer","description":"Object unique id","required":true},"objectType":{"type":"string","default":"post","description":"Object Type i.e. post, term, user","required":true},"hasRedirect":{"type":"boolean","description":"Whether the object has a redirect or not","required":true},"redirectionID":{"type":"string","description":"Redirection ID","required":false},"redirectionUrl":{"type":"string","description":"Redirection URL","required":false},"redirectionType":{"type":"string","default":"301","description":"Redirection Type","enum":["301","302","307","410","451"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateRedirection"}]}},"\/rankmath\/v1\/updateMeta":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectType":{"type":"string","description":"Object Type i.e. post, term, user","required":true},"objectID":{"type":"integer","description":"Object unique id","required":true},"meta":{"description":"Meta to add or update data.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateMeta"}]}},"\/rankmath\/v1\/updateSchemas":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"objectType":{"type":"string","description":"Object Type i.e. post, term, user","required":true},"objectID":{"type":"integer","description":"Object unique id","required":true},"schemas":{"description":"schemas to add or update data.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateSchemas"}]}},"\/rankmath\/v1\/updateMetaBulk":{"namespace":"rankmath\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"rows":{"description":"Selected posts to update the data for.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/updateMetaBulk"}]}},"\/rankmath\/v1\/setupWizard":{"namespace":"rankmath\/v1\/setupWizard","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/setupWizard","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/setupWizard"}]}},"\/rankmath\/v1\/setupWizard\/getStepData":{"namespace":"rankmath\/v1\/setupWizard","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"step":{"type":"string","description":"Current Step","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/setupWizard\/getStepData"}]}},"\/rankmath\/v1\/setupWizard\/updateStepData":{"namespace":"rankmath\/v1\/setupWizard","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"step":{"type":"string","description":"Current Step","required":true},"value":{"type":"object","description":"Current Step Data","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/setupWizard\/updateStepData"}]}},"\/rankmath\/v1\/setupWizard\/updateTrackingOptin":{"namespace":"rankmath\/v1\/setupWizard","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"enable_tracking":{"type":"string","description":"Enable Tracking","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/setupWizard\/updateTrackingOptin"}]}},"\/wc\/v3":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/v3","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3"}]}},"\/wc\/v3\/marketplace\/featured":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/featured"}]}},"\/wc\/v1":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1"}]}},"\/wc\/v1\/marketplace\/product-preview":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/marketplace\/product-preview"}]}},"\/wc\/v3\/marketplace\/refresh":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/refresh"}]}},"\/wc\/v3\/marketplace\/subscriptions":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/subscriptions"}]}},"\/wc\/v3\/marketplace\/subscriptions\/connect":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/subscriptions\/connect"}]}},"\/wc\/v3\/marketplace\/subscriptions\/activate-plugin":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/subscriptions\/activate-plugin"}]}},"\/wc\/v3\/marketplace\/subscriptions\/disconnect":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/subscriptions\/disconnect"}]}},"\/wc\/v3\/marketplace\/subscriptions\/activate":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/subscriptions\/activate"}]}},"\/wc\/v3\/marketplace\/subscriptions\/install-url":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"product_key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/subscriptions\/install-url"}]}},"\/wc\/v3\/marketplace\/create-order":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_id":{"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/marketplace\/create-order"}]}},"\/wc\/pos\/v1\/catalog":{"namespace":"wc\/pos\/v1\/catalog","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/pos\/v1\/catalog","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/pos\/v1\/catalog"}]}},"\/wc\/pos\/v1\/catalog\/create":{"namespace":"wc\/pos\/v1\/catalog","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"force":{"type":"boolean","default":false,"description":"Force regeneration of the feed. NOOP if generation is in progress.","required":false},"_product_fields":{"type":"string","description":"Comma-separated list of fields to include for non-variable products.","required":false},"_variation_fields":{"type":"string","description":"Comma-separated list of fields to include for variations.","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/pos\/v1\/catalog\/create"}]}},"\/kb-mailerlite\/v1":{"namespace":"kb-mailerlite\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-mailerlite\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-mailerlite\/v1"}]}},"\/kb-mailerlite\/v1\/get":{"namespace":"kb-mailerlite\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"apikey":{"description":"The API Key for Mailerlite account.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false},"queryargs":{"description":"Query Args for url.","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-mailerlite\/v1\/get"}]}},"\/kb-getresponse\/v1":{"namespace":"kb-getresponse\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-getresponse\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-getresponse\/v1"}]}},"\/kb-getresponse\/v1\/get":{"namespace":"kb-getresponse\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-getresponse\/v1\/get"}]}},"\/kb-fluentcrm\/v1":{"namespace":"kb-fluentcrm\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-fluentcrm\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-fluentcrm\/v1"}]}},"\/kb-fluentcrm\/v1\/get":{"namespace":"kb-fluentcrm\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-fluentcrm\/v1\/get"}]}},"\/kbp\/v1":{"namespace":"kbp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kbp\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp\/v1"}]}},"\/kbp\/v1\/post-query":{"namespace":"kbp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"type":{"description":"Limit results to items of a specific post type.","type":"string","required":false},"include":{"description":"Include posts by ID.","type":"array","required":false},"query":{"description":"Define Type of Query.","type":"string","required":false},"order":{"description":"Define Query Order.","type":"string","required":false},"order_by":{"description":"Define Query Order By.","type":"string","required":false},"allow_sticky":{"description":"Allow Sticky in Query.","type":"boolean","required":false},"exclude":{"description":"Exclude Category.","type":"string","required":false},"offset":{"description":"Number of items to offset in query.","type":"number","default":0,"required":false},"post_id":{"description":"The Current Post ID.","type":"string","required":false},"custom_tax":{"description":"Check if using a custom Taxonomy","type":"boolean","required":false},"tax_type":{"description":"Define Query Order By.","type":"string","required":false},"category":{"description":"Include posts category.","type":"string","required":false},"tags":{"description":"Include posts tags.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp\/v1\/post-query"}]}},"\/kbp\/v1\/taxonomies-select":{"namespace":"kbp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"source":{"description":"The source of the content.","type":"string","default":"","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp\/v1\/taxonomies-select"}]}},"\/kbp\/v1\/term-select":{"namespace":"kbp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"source":{"description":"The source of the content.","type":"string","default":"","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp\/v1\/term-select"}]}},"\/kb-lottieanimation\/v1":{"namespace":"kb-lottieanimation\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-lottieanimation\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-lottieanimation\/v1"}]}},"\/kb-lottieanimation\/v1\/animations\/(?P[\\a-zA-Z0-9]+)":{"namespace":"kb-lottieanimation\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/kb-lottieanimation\/v1\/animations":{"namespace":"kb-lottieanimation\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-lottieanimation\/v1\/animations"}]}},"\/kb-vector\/v1":{"namespace":"kb-vector\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-vector\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-vector\/v1"}]}},"\/kb-vector\/v1\/vectors":{"namespace":"kb-vector\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-vector\/v1\/vectors"}]}},"\/kb-design-library\/v1":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-design-library\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1"}]}},"\/kb-design-library\/v1\/get":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get"}]}},"\/kb-design-library\/v1\/get_all_items":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_all_items"}]}},"\/kb-design-library\/v1\/get-all-ai":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get-all-ai"}]}},"\/kb-design-library\/v1\/get_remaining_jobs":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_remaining_jobs"}]}},"\/kb-design-library\/v1\/get_library":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_library"}]}},"\/kb-design-library\/v1\/get_library_categories":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_library_categories"}]}},"\/kb-design-library\/v1\/get_connection":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_connection"}]}},"\/kb-design-library\/v1\/get_local_contexts":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_local_contexts"}]}},"\/kb-design-library\/v1\/get_verticals":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_verticals"}]}},"\/kb-design-library\/v1\/get_keywords":{"namespace":"kb-design-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_keywords"}]}},"\/kb-design-library\/v1\/get_initial_jobs":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_initial_jobs"}]}},"\/kb-design-library\/v1\/get_search_query":{"namespace":"kb-design-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_search_query"}]}},"\/kb-design-library\/v1\/get_images":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_images"}]}},"\/kb-design-library\/v1\/get_image_collections":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_image_collections"}]}},"\/kb-design-library\/v1\/get_pattern_content":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_pattern_content"}]}},"\/kb-design-library\/v1\/process_pattern":{"namespace":"kb-design-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/process_pattern"}]}},"\/kb-design-library\/v1\/process_images":{"namespace":"kb-design-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/process_images"}]}},"\/kb-design-library\/v1\/get_remaining_credits":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/get_remaining_credits"}]}},"\/kb-design-library\/v1\/reset":{"namespace":"kb-design-library\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"The requested ai context.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"library":{"description":"The requested library.","type":"string","required":false},"library_url":{"description":"The requested library URL.","type":"string","required":false},"force_reload":{"description":"Force a refresh of the context.","type":"boolean","default":false,"required":false},"key":{"description":"Library Key.","type":"string","required":false},"api_key":{"description":"Kadence License Key.","type":"string","required":false},"api_email":{"description":"Kadence License Email.","type":"string","required":false},"product_id":{"description":"Kadence License Product ID.","type":"string","required":false},"pattern_type":{"description":"Pattern Type","type":"string","required":false},"pattern_style":{"description":"Pattern Style","type":"string","required":false},"pattern_id":{"description":"Pattern ID","type":"string","required":false},"industry":{"description":"The selected Industry","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"industries":{"description":"The industries to return","type":"array","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false},"meta":{"description":"The meta to return","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/reset"}]}},"\/kb-image-picker\/v1":{"namespace":"kb-image-picker\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-image-picker\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-image-picker\/v1"}]}},"\/kb-image-picker\/v1\/process_images":{"namespace":"kb-image-picker\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"image_type":{"description":"The Image type to return","type":"string","required":false},"image_sizes":{"description":"The Image type to return","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-image-picker\/v1\/process_images"}]}},"\/kb-design-library\/v1\/handle_event":{"namespace":"kb-design-library\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"event_label":{"description":"The Event Label","type":"string","required":false},"event_data":{"description":"The Event Data","type":"object","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-design-library\/v1\/handle_event"}]}},"\/jetpack\/v4":{"namespace":"jetpack\/v4","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"jetpack\/v4","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4"}]}},"\/jetpack\/v4\/verify_xmlrpc_error":{"namespace":"jetpack\/v4","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"nonce":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/verify_xmlrpc_error"}]}},"\/jetpack\/v4\/heartbeat\/data":{"namespace":"jetpack\/v4","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"prefix":{"description":"Prefix to add before the stats identifiers.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/heartbeat\/data"}]}},"\/kbpp\/v1":{"namespace":"kbpp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kbpp\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbpp\/v1"}]}},"\/kbpp\/v1\/post-select":{"namespace":"kbpp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to items that match search query.","type":"string","required":false},"type":{"description":"Limit results to items of an object type.","type":"array","items":{"type":"string"},"default":{"0":"post","1":"page","3":"product"},"required":false},"include":{"description":"Include posts by ID.","type":"array","required":false},"categories":{"description":"Limit result set to all items that have the specified term assigned in the categories taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tags":{"description":"Limit result set to all items that have the specified term assigned in the tags taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_brand":{"description":"Limit result set to all items that have the specified term assigned in the product_brand taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_cat":{"description":"Limit result set to all items that have the specified term assigned in the product_cat taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_tag":{"description":"Limit result set to all items that have the specified term assigned in the product_tag taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbpp\/v1\/post-select"}]}},"\/kbpp\/v1\/post-query":{"namespace":"kbpp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"type":{"description":"Limit results to items of a specific post type.","type":"string","required":false},"include":{"description":"Include posts by ID.","type":"array","required":false},"query":{"description":"Define Type of Query.","type":"string","required":false},"order":{"description":"Define Query Order.","type":"string","required":false},"order_by":{"description":"Define Query Order By.","type":"string","required":false},"allow_sticky":{"description":"Allow Sticky in Query.","type":"boolean","required":false},"exclude":{"description":"Exclude Category.","type":"string","required":false},"offset":{"description":"Number of items to offset in query.","type":"number","default":0,"required":false},"post_tax":{"description":"Check if using a custom Taxonomy","type":"boolean","required":false},"tax_type":{"description":"Define Query Order By.","type":"string","required":false},"category":{"description":"Include posts category.","type":"string","required":false},"author":{"description":"Include posts by Author","type":"string","required":false},"tags":{"description":"Include posts tags.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbpp\/v1\/post-query"}]}},"\/kbpp\/v1\/tax-query":{"namespace":"kbpp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"type":{"description":"Limit results to items of a specific post type.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbpp\/v1\/tax-query"}]}},"\/kbpp\/v1\/term-query":{"namespace":"kbpp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"tax_type":{"description":"Taxonomy Type.","type":"string","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbpp\/v1\/term-query"}]}},"\/kb-mailchimp\/v1":{"namespace":"kb-mailchimp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-mailchimp\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-mailchimp\/v1"}]}},"\/kb-mailchimp\/v1\/get":{"namespace":"kb-mailchimp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"apikey":{"description":"The API Key for mailchimp account.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false},"queryargs":{"description":"Query Args for url.","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-mailchimp\/v1\/get"}]}},"\/kb-activecampaign\/v1":{"namespace":"kb-activecampaign\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-activecampaign\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-activecampaign\/v1"}]}},"\/kb-activecampaign\/v1\/get":{"namespace":"kb-activecampaign\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false},"queryargs":{"description":"Query Args for url.","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-activecampaign\/v1\/get"}]}},"\/kb-sendinblue\/v1":{"namespace":"kb-sendinblue\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-sendinblue\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-sendinblue\/v1"}]}},"\/kb-sendinblue\/v1\/get":{"namespace":"kb-sendinblue\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"apikey":{"description":"The API Key for Brevo (SendInBlue ) account.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false},"queryargs":{"description":"Query Args for url.","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-sendinblue\/v1\/get"}]}},"\/kbp-dynamic\/v1":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kbp-dynamic\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1"}]}},"\/kbp-dynamic\/v1\/render":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/render"}]}},"\/kbp-dynamic\/v1\/image_render":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/image_render"}]}},"\/kbp-dynamic\/v1\/image_data":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/image_data"}]}},"\/kbp-dynamic\/v1\/gallery_data":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/gallery_data"}]}},"\/kbp-dynamic\/v1\/custom_fields":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/custom_fields"}]}},"\/kbp-dynamic\/v1\/link_label":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/link_label"}]}},"\/kbp-dynamic\/v1\/input_label":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/input_label"}]}},"\/kbp-dynamic\/v1\/list_data":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/list_data"}]}},"\/kbp-dynamic\/v1\/html_data":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/html_data"}]}},"\/kbp-dynamic\/v1\/repeaters":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/repeaters"}]}},"\/kbp-dynamic\/v1\/repeater_data":{"namespace":"kbp-dynamic\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"origin":{"description":"The origin of content.","type":"string","default":"core","required":false},"source":{"description":"The source of the content.","type":"string","default":"current","required":false},"group":{"description":"The group for source.","type":"string","default":"post","required":false},"field":{"description":"The dynamic field","type":"string","required":false},"custom":{"description":"The custom field setting.","type":"string","required":false},"para":{"description":"The custom field Key.","type":"string","required":false},"force_string":{"description":"For a string return","type":"boolean","default":false,"required":false},"ignore_source":{"description":"Fetch all fields","type":"boolean","default":false,"required":false},"before":{"description":"Text Before Item.","type":"string","required":false},"after":{"description":"Text After Item.","type":"string","required":false},"fallback":{"description":"Fallback.","type":"string","required":false},"current":{"description":"If the content is current.","type":"string","required":false},"relcustom":{"description":"The custom field setting.","type":"string","required":false},"relate":{"description":"The custom field Key.","type":"string","required":false},"useRepeaterContext":{"description":"If this dynamic content should be rendered in repeater context.","type":"boolean","default":false,"required":false},"repeaterRow":{"description":"The repeater row to use for repeater context.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/repeater_data"}]}},"\/kbp-dynamic\/v1\/batch":{"namespace":"kbp-dynamic\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kbp-dynamic\/v1\/batch"}]}},"\/kb-convertkit\/v1":{"namespace":"kb-convertkit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-convertkit\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-convertkit\/v1"}]}},"\/kb-convertkit\/v1\/get":{"namespace":"kb-convertkit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"endpoint":{"description":"Actionable endpoint for api call.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-convertkit\/v1\/get"}]}},"\/kb-custom-svg\/v1":{"namespace":"kb-custom-svg\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kb-custom-svg\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-custom-svg\/v1"}]}},"\/kb-custom-svg\/v1\/manage":{"namespace":"kb-custom-svg\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-custom-svg\/v1\/manage"}]}},"\/kb-custom-svg\/v1\/search":{"namespace":"kb-custom-svg\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-custom-svg\/v1\/search"}]}},"\/kb-custom-svg\/v1\/search\/add":{"namespace":"kb-custom-svg\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kb-custom-svg\/v1\/search\/add"}]}},"\/kt-wc-blocks\/v1":{"namespace":"kt-wc-blocks\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"kt-wc-blocks\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kt-wc-blocks\/v1"}]}},"\/kt-wc-blocks\/v1\/products\/categories":{"namespace":"kt-wc-blocks\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kt-wc-blocks\/v1\/products\/categories"}]}},"\/kt-wc-blocks\/v1\/products\/categories\/(?P[\\d]+)":{"namespace":"kt-wc-blocks\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/kt-wc-blocks\/v1\/products":{"namespace":"kt-wc-blocks\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating","menu_order","price","popularity","rating","price","popularity","rating","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"search_sku":{"description":"Limit results to those with a SKU that partial matches a string. This argument takes precedence over 'sku'.","type":"string","required":false},"search_name_or_sku":{"description":"Limit results to those with a name or SKU that partial matches a string. This argument takes precedence over 'search', 'sku' and 'search_sku'.","type":"string","required":false},"search_fields":{"description":"Limit search to specific fields when used with search parameter. Available fields: name, sku, global_unique_id, description, short_description. This argument takes precedence over all other search parameters.","type":"array","items":{"type":"string","enum":["name","global_unique_id","description","short_description","sku"]},"default":[],"required":false},"include_status":{"description":"Limit result set to products with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude products with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"include_types":{"description":"Limit result set to products with any of the types.","type":"array","items":{"type":"string","enum":["simple","grouped","external","variable"]},"required":false},"exclude_types":{"description":"Exclude products with any of the types from result set.","type":"array","items":{"type":"string","enum":["simple","grouped","external","variable"]},"required":false},"downloadable":{"description":"Limit result set to downloadable products.","type":"boolean","required":false},"virtual":{"description":"Limit result set to virtual products.","type":"boolean","required":false},"pos_products_only":{"description":"Limit result set to products visible in Point of Sale.","type":"boolean","required":false},"category_operator":{"description":"Operator to compare product category terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"attribute_operator":{"description":"Operator to compare product attribute terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"catalog_visibility":{"description":"Determines if hidden or visible catalog products are shown.","type":"string","enum":["visible","catalog","search","hidden"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/kt-wc-blocks\/v1\/products"}]}},"\/kt-wc-blocks\/v1\/products\/(?P[\\d]+)":{"namespace":"kt-wc-blocks\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc-admin":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc-admin","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin"}]}},"\/wc-admin\/notice\/dismiss":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/notice\/dismiss"}]}},"\/wc-admin\/features":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/features"}]}},"\/wc-admin\/experiments\/assignment":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/experiments\/assignment"}]}},"\/wc-admin\/marketing\/recommended":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"category":{"type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/recommended"}]}},"\/wc-admin\/marketing\/knowledge-base":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"category":{"type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/knowledge-base"}]}},"\/wc-admin\/marketing\/misc-recommendations":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/misc-recommendations"}]}},"\/wc-admin\/marketing\/overview\/activate-plugin":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"plugin":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/overview\/activate-plugin"}]}},"\/wc-admin\/marketing\/overview\/installed-plugins":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/overview\/installed-plugins"}]}},"\/wc-admin\/marketing\/recommendations":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"category":{"type":"string","enum":["channels","extensions"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/recommendations"}]}},"\/wc-admin\/marketing\/channels":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/channels"}]}},"\/wc-admin\/marketing\/campaigns":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/campaigns"}]}},"\/wc-admin\/marketing\/campaign-types":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/marketing\/campaign-types"}]}},"\/wc-admin\/options":{"namespace":"wc-admin","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/options"}]}},"\/wc-admin\/legacy-settings":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"schema":{"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/legacy-settings"}]}},"\/wc-admin\/payment-gateway-suggestions":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"force_default_suggestions":{"type":"boolean","description":"Return the default payment suggestions when woocommerce_show_marketplace_suggestions and woocommerce_setting_payments_recommendations_hidden options are set to no","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/payment-gateway-suggestions"}]}},"\/wc-admin\/payment-gateway-suggestions\/dismiss":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/payment-gateway-suggestions\/dismiss"}]}},"\/wc-admin\/themes":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"pluginzip":{"description":"A zip file of the theme to be uploaded.","type":"file","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/themes"}]}},"\/wc-admin\/plugins\/install":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/install"}]}},"\/wc-admin\/plugins\/install\/status":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/install\/status"}]}},"\/wc-admin\/plugins\/install\/status\/(?P[a-z0-9_\\-]+)":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/wc-admin\/plugins\/active":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/active"}]}},"\/wc-admin\/plugins\/installed":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/installed"}]}},"\/wc-admin\/plugins\/activate":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/activate"}]}},"\/wc-admin\/plugins\/activate\/status":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/activate\/status"}]}},"\/wc-admin\/plugins\/activate\/status\/(?P[a-z0-9_\\-]+)":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/wc-admin\/plugins\/connect-jetpack":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/connect-jetpack"}]}},"\/wc-admin\/plugins\/request-wccom-connect":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/request-wccom-connect"}]}},"\/wc-admin\/plugins\/finish-wccom-connect":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/finish-wccom-connect"}]}},"\/wc-admin\/plugins\/connect-wcpay":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/connect-wcpay"}]}},"\/wc-admin\/plugins\/connect-square":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/plugins\/connect-square"}]}},"\/wc-admin\/onboarding\/free-extensions":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/free-extensions"}]}},"\/wc-admin\/onboarding\/product-types":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/product-types"}]}},"\/wc-admin\/onboarding\/profile":{"namespace":"wc-admin","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"completed":{"type":"boolean","description":"Whether or not the profile was completed.","required":false},"skipped":{"type":"boolean","description":"Whether or not the profile was skipped.","required":false},"industry":{"type":"array","description":"Industry.","items":{"type":"string"},"required":false},"business_extensions":{"type":"array","description":"Extra business extensions to install.","items":{"type":"string"},"required":false},"is_agree_marketing":{"type":"boolean","description":"Whether or not this store agreed to receiving marketing contents from WooCommerce.com.","required":false},"store_email":{"type":"string","description":"Store email address.","required":false},"is_store_country_set":{"type":"boolean","description":"Whether or not this store country is set via onboarding profiler.","required":false},"is_plugins_page_skipped":{"type":"boolean","description":"Whether or not plugins step in core profiler was skipped.","required":false},"business_choice":{"type":"string","description":"Business choice.","required":false},"selling_online_answer":{"type":"string","description":"Selling online answer.","required":false},"selling_platforms":{"type":["array","null"],"description":"Selling platforms.","items":{"type":["string","null"]},"required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/profile"}]}},"\/wc-admin\/onboarding\/profile\/experimental_get_email_prefill":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/profile\/experimental_get_email_prefill"}]}},"\/wc-admin\/onboarding\/profile\/progress":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/profile\/progress"}]}},"\/wc-admin\/onboarding\/profile\/progress\/core-profiler\/complete":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"step":{"type":"string","description":"The Core Profiler step to mark as complete.","enum":["intro-opt-in","skip-guided-setup","user-profile","business-info","plugins","intro-builder","skip-guided-setup"],"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/profile\/progress\/core-profiler\/complete"}]}},"\/wc-admin\/onboarding\/profile\/update-store-currency-and-measurement-units":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"country_code":{"description":"Country code.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/profile\/update-store-currency-and-measurement-units"}]}},"\/wc-admin\/onboarding\/tasks\/import_sample_products":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/tasks\/import_sample_products"}]}},"\/wc-admin\/onboarding\/tasks\/create_homepage":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/tasks\/create_homepage"}]}},"\/wc-admin\/onboarding\/tasks\/create_product_from_template":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"template_name":{"type":"string","description":"Product template name.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/tasks\/create_product_from_template"}]}},"\/wc-admin\/onboarding\/tasks":{"namespace":"wc-admin","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"ids":{"description":"Optional parameter to get only specific task lists by id.","type":"array","items":{"enum":[],"type":"string"},"required":false}}},{"methods":["POST"],"args":{"ids":{"description":"Optional parameter to get only specific task lists by id.","type":"array","items":{"enum":[],"type":"string"},"required":false},"extended_tasks":{"description":"List of extended deprecated tasks from the client side filter.","type":"array","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/tasks"}]}},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_\\-]+)\/hide":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_\\-]+)\/unhide":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_\\-]+)\/dismiss":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_\\-]+)\/undo_dismiss":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_-]+)\/snooze":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"duration":{"description":"Time period to snooze the task.","type":"string","required":false},"task_list_id":{"description":"Optional parameter to query specific task list.","type":"string","required":false}}}]},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_\\-]+)\/action":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/onboarding\/tasks\/(?P[a-z0-9_\\-]+)\/undo_snooze":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/onboarding\/themes\/install":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/themes\/install"}]}},"\/wc-admin\/onboarding\/themes\/activate":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/themes\/activate"}]}},"\/wc-admin\/onboarding\/plugins\/install-and-activate-async":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"plugins":{"description":"A list of plugins to install","type":"array","items":"string","required":true},"source":{"description":"The source of the request","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/plugins\/install-and-activate-async"}]}},"\/wc-admin\/onboarding\/plugins\/install-and-activate":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/plugins\/install-and-activate"}]}},"\/wc-admin\/onboarding\/plugins\/scheduled-installs\/(?P\\w+)":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/wc-admin\/onboarding\/plugins\/jetpack-authorization-url":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"redirect_url":{"description":"The URL to redirect to after authorization","type":"string","required":true},"from":{"description":"from value for the jetpack authorization page","type":"string","default":"woocommerce-onboarding","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/plugins\/jetpack-authorization-url"}]}},"\/wc-admin\/onboarding\/products":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/onboarding\/products"}]}},"\/wc-admin\/mobile-app\/send-magic-link":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/mobile-app\/send-magic-link"}]}},"\/wc-admin\/mobile-app":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/mobile-app"}]}},"\/wc-admin\/shipping-partner-suggestions":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"force_default_suggestions":{"type":"boolean","description":"Return the default shipping partner suggestions when woocommerce_show_marketplace_suggestions option is set to no","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/shipping-partner-suggestions"}]}},"\/wc-analytics":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc-analytics","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics"}]}},"\/wc-analytics\/customers":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date_registered","enum":["username","name","first_name","last_name","email","location","country","city","state","postcode","date_registered","date_last_active","orders_count","total_spend","avg_order_value"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"registered_before":{"description":"Limit response to objects registered before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"registered_after":{"description":"Limit response to objects registered after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"search":{"description":"Limit response to objects with a customer field containing the search term. Searches the field provided by `searchby`.","type":"string","required":false},"searchby":{"description":"Limit results with `search` and `searchby` to specific fields containing the search term.","type":"string","default":"name","enum":["name","username","email","all"],"required":false},"name_includes":{"description":"Limit response to objects with specific names.","type":"string","required":false},"name_excludes":{"description":"Limit response to objects excluding specific names.","type":"string","required":false},"username_includes":{"description":"Limit response to objects with specific usernames.","type":"string","required":false},"username_excludes":{"description":"Limit response to objects excluding specific usernames.","type":"string","required":false},"email_includes":{"description":"Limit response to objects including emails.","type":"string","required":false},"email_excludes":{"description":"Limit response to objects excluding emails.","type":"string","required":false},"country_includes":{"description":"Limit response to objects with specific countries.","type":"string","required":false},"country_excludes":{"description":"Limit response to objects excluding specific countries.","type":"string","required":false},"last_active_before":{"description":"Limit response to objects last active before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_after":{"description":"Limit response to objects last active after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"registered_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"orders_count_min":{"description":"Limit response to objects with an order count greater than or equal to given integer.","type":"integer","required":false},"orders_count_max":{"description":"Limit response to objects with an order count less than or equal to given integer.","type":"integer","required":false},"orders_count_between":{"description":"Limit response to objects with an order count between two given integers.","type":"array","items":{"type":"integer"},"required":false},"total_spend_min":{"description":"Limit response to objects with a total order spend greater than or equal to given number.","type":"number","required":false},"total_spend_max":{"description":"Limit response to objects with a total order spend less than or equal to given number.","type":"number","required":false},"total_spend_between":{"description":"Limit response to objects with a total order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"avg_order_value_min":{"description":"Limit response to objects with an average order spend greater than or equal to given number.","type":"number","required":false},"avg_order_value_max":{"description":"Limit response to objects with an average order spend less than or equal to given number.","type":"number","required":false},"avg_order_value_between":{"description":"Limit response to objects with an average order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"last_order_before":{"description":"Limit response to objects with last order before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_order_after":{"description":"Limit response to objects with last order after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"users":{"description":"Limit result to items with specified user ids.","type":"array","items":{"type":"integer"},"required":false},"filter_empty":{"description":"Filter out results where any of the passed fields are empty","type":"array","items":{"type":"string","enum":["email","name","country","city","state","postcode"]},"required":false},"user_type":{"description":"Limit result to items with specified user type.","type":"string","default":"all","enum":["all","registered","guest"],"required":false},"location_includes":{"description":"Includes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).","type":"string","required":false},"location_excludes":{"description":"Excludes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).","type":"string","required":false},"include":{"description":"Limit result to items with specified customer ids.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/customers"}]}},"\/wc-analytics\/customers\/(?P[\\d-]+)":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date_registered","enum":["username","name","first_name","last_name","email","location","country","city","state","postcode","date_registered","date_last_active","orders_count","total_spend","avg_order_value"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"registered_before":{"description":"Limit response to objects registered before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"registered_after":{"description":"Limit response to objects registered after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"search":{"description":"Limit response to objects with a customer field containing the search term. Searches the field provided by `searchby`.","type":"string","required":false},"searchby":{"description":"Limit results with `search` and `searchby` to specific fields containing the search term.","type":"string","default":"name","enum":["name","username","email","all"],"required":false},"name_includes":{"description":"Limit response to objects with specific names.","type":"string","required":false},"name_excludes":{"description":"Limit response to objects excluding specific names.","type":"string","required":false},"username_includes":{"description":"Limit response to objects with specific usernames.","type":"string","required":false},"username_excludes":{"description":"Limit response to objects excluding specific usernames.","type":"string","required":false},"email_includes":{"description":"Limit response to objects including emails.","type":"string","required":false},"email_excludes":{"description":"Limit response to objects excluding emails.","type":"string","required":false},"country_includes":{"description":"Limit response to objects with specific countries.","type":"string","required":false},"country_excludes":{"description":"Limit response to objects excluding specific countries.","type":"string","required":false},"last_active_before":{"description":"Limit response to objects last active before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_after":{"description":"Limit response to objects last active after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"registered_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"orders_count_min":{"description":"Limit response to objects with an order count greater than or equal to given integer.","type":"integer","required":false},"orders_count_max":{"description":"Limit response to objects with an order count less than or equal to given integer.","type":"integer","required":false},"orders_count_between":{"description":"Limit response to objects with an order count between two given integers.","type":"array","items":{"type":"integer"},"required":false},"total_spend_min":{"description":"Limit response to objects with a total order spend greater than or equal to given number.","type":"number","required":false},"total_spend_max":{"description":"Limit response to objects with a total order spend less than or equal to given number.","type":"number","required":false},"total_spend_between":{"description":"Limit response to objects with a total order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"avg_order_value_min":{"description":"Limit response to objects with an average order spend greater than or equal to given number.","type":"number","required":false},"avg_order_value_max":{"description":"Limit response to objects with an average order spend less than or equal to given number.","type":"number","required":false},"avg_order_value_between":{"description":"Limit response to objects with an average order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"last_order_before":{"description":"Limit response to objects with last order before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_order_after":{"description":"Limit response to objects with last order after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"users":{"description":"Limit result to items with specified user ids.","type":"array","items":{"type":"integer"},"required":false},"filter_empty":{"description":"Filter out results where any of the passed fields are empty","type":"array","items":{"type":"string","enum":["email","name","country","city","state","postcode"]},"required":false},"user_type":{"description":"Limit result to items with specified user type.","type":"string","default":"all","enum":["all","registered","guest"],"required":false},"location_includes":{"description":"Includes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).","type":"string","required":false},"location_excludes":{"description":"Excludes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).","type":"string","required":false},"include":{"description":"Limit result to items with specified customer ids.","type":"array","items":{"type":"integer"},"required":false}}}]},"\/wc-analytics\/leaderboards":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":5,"minimum":1,"maximum":20,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"persisted_query":{"description":"URL query to persist across links.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/leaderboards"}]}},"\/wc-analytics\/leaderboards\/allowed":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/leaderboards\/allowed"}]}},"\/wc-analytics\/leaderboards\/(?P\\w+)":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"leaderboard":{"type":"string","enum":["customers","coupons","categories","products"],"required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":5,"minimum":1,"maximum":20,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"persisted_query":{"description":"URL query to persist across links.","type":"string","required":false}}}]},"\/wc-analytics\/reports":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports"}]}},"\/wc-analytics\/reports\/import":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"days":{"description":"Number of days to import.","type":"integer","minimum":0,"required":false},"skip_existing":{"description":"Skip importing existing order data.","type":"boolean","default":false,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/import"}]}},"\/wc-analytics\/reports\/import\/cancel":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/import\/cancel"}]}},"\/wc-analytics\/reports\/import\/delete":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/import\/delete"}]}},"\/wc-analytics\/reports\/import\/status":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/import\/status"}]}},"\/wc-analytics\/reports\/import\/totals":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"days":{"description":"Number of days to import.","type":"integer","minimum":0,"required":false},"skip_existing":{"description":"Skip importing existing order data.","type":"boolean","default":false,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/import\/totals"}]}},"\/wc-analytics\/reports\/(?P[a-z]+)\/export":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"report_args":{"description":"Parameters to pass on to the exported report.","type":"object","required":false},"email":{"description":"When true, email a link to download the export to the requesting user.","type":"boolean","required":false}}}]},"\/wc-analytics\/reports\/(?P[a-z]+)\/export\/(?P[a-z0-9]+)\/status":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/wc-analytics\/reports\/products":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","net_revenue","orders_count","items_sold","product_name","variations","sku"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"categories":{"description":"Limit result to items from the specified categories.","type":"array","items":{"type":"integer"},"required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"products":{"description":"Limit result to items with specified product ids.","type":"array","items":{"type":"integer"},"required":false},"extended_info":{"description":"Add additional piece of info about each product to the report.","type":"boolean","default":false,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/products"}]}},"\/wc-analytics\/reports\/variations":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","net_revenue","orders_count","items_sold","sku"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"product_includes":{"description":"Limit result set to items that have the specified parent product(s).","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_excludes":{"description":"Limit result set to items that don't have the specified parent product(s).","type":"array","items":{"type":"integer"},"default":[],"required":false},"variations":{"description":"Limit result to items with specified variation ids.","type":"array","items":{"type":"integer"},"required":false},"extended_info":{"description":"Add additional piece of info about each variation to the report.","type":"boolean","default":false,"required":false},"attribute_is":{"description":"Limit result set to variations that include the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false},"attribute_is_not":{"description":"Limit result set to variations that don't include the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false},"category_includes":{"description":"Limit result set to variations in the specified categories.","type":"array","items":{"type":"integer"},"required":false},"category_excludes":{"description":"Limit result set to variations not in the specified categories.","type":"array","items":{"type":"integer"},"required":false},"products":{"description":"Limit result to items with specified product ids.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/variations"}]}},"\/wc-analytics\/reports\/products\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","net_revenue","coupons","refunds","shipping","taxes","net_revenue","orders_count","items_sold"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"fields":{"description":"Limit stats fields to the specified items.","type":"array","items":{"type":"string"},"required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"categories":{"description":"Limit result to items from the specified categories.","type":"array","items":{"type":"integer"},"required":false},"products":{"description":"Limit result to items with specified product ids.","type":"array","items":{"type":"integer"},"required":false},"variations":{"description":"Limit result to items with specified variation ids.","type":"array","items":{"type":"integer"},"required":false},"segmentby":{"description":"Segment the response by additional constraint.","type":"string","enum":["product","category","variation"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/products\/stats"}]}},"\/wc-analytics\/reports\/variations\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","net_revenue","coupons","refunds","shipping","taxes","net_revenue","orders_count","items_sold"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"fields":{"description":"Limit stats fields to the specified items.","type":"array","items":{"type":"string"},"required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"category_includes":{"description":"Limit result to items from the specified categories.","type":"array","items":{"type":"integer"},"required":false},"category_excludes":{"description":"Limit result set to variations not in the specified categories.","type":"array","items":{"type":"integer"},"required":false},"product_includes":{"description":"Limit result set to items that have the specified parent product(s).","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_excludes":{"description":"Limit result set to items that don't have the specified parent product(s).","type":"array","items":{"type":"integer"},"default":[],"required":false},"variations":{"description":"Limit result to items with specified variation ids.","type":"array","items":{"type":"integer"},"required":false},"segmentby":{"description":"Segment the response by additional constraint.","type":"string","enum":["product","category","variation"],"required":false},"attribute_is":{"description":"Limit result set to orders that include products with the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false},"attribute_is_not":{"description":"Limit result set to orders that don't include products with the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/variations\/stats"}]}},"\/wc-analytics\/reports\/revenue\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","total_sales","coupons","refunds","shipping","taxes","net_revenue","orders_count","items_sold","gross_sales"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"segmentby":{"description":"Segment the response by additional constraint.","type":"string","enum":["product","category","variation","coupon","customer_type"],"required":false},"date_type":{"description":"Override the \"woocommerce_date_type\" option that is used for the database date field considered for revenue reports.","type":"string","enum":["date_paid","date_created","date_completed"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/revenue\/stats"}]}},"\/wc-analytics\/reports\/orders":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","num_items_sold","net_total"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"product_includes":{"description":"Limit result set to items that have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_excludes":{"description":"Limit result set to items that don't have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"variation_includes":{"description":"Limit result set to items that have the specified variation(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"variation_excludes":{"description":"Limit result set to items that don't have the specified variation(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"coupon_includes":{"description":"Limit result set to items that have the specified coupon(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"coupon_excludes":{"description":"Limit result set to items that don't have the specified coupon(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tax_rate_includes":{"description":"Limit result set to items that have the specified tax rate(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tax_rate_excludes":{"description":"Limit result set to items that don't have the specified tax rate(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"status_is":{"description":"Limit result set to items that have the specified order status.","type":"array","items":{"enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"type":"string"},"required":false},"status_is_not":{"description":"Limit result set to items that don't have the specified order status.","type":"array","items":{"enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"type":"string"},"required":false},"customer_type":{"description":"Limit result set to returning or new customers.","type":"string","default":"","enum":["","returning","new"],"required":false},"refunds":{"description":"Limit result set to specific types of refunds.","type":"string","default":"","enum":["","all","partial","full","none"],"required":false},"extended_info":{"description":"Add additional piece of info about each coupon to the report.","type":"boolean","default":false,"required":false},"order_includes":{"description":"Limit result set to items that have the specified order ids.","type":"array","items":{"type":"integer"},"required":false},"order_excludes":{"description":"Limit result set to items that don't have the specified order ids.","type":"array","items":{"type":"integer"},"required":false},"attribute_is":{"description":"Limit result set to orders that include products with the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false},"attribute_is_not":{"description":"Limit result set to orders that don't include products with the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/orders"}]}},"\/wc-analytics\/reports\/orders\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","net_revenue","orders_count","avg_order_value"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"status_is":{"description":"Limit result set to items that have the specified order status.","type":"array","default":null,"items":{"enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"type":"string"},"required":false},"status_is_not":{"description":"Limit result set to items that don't have the specified order status.","type":"array","items":{"enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"type":"string"},"required":false},"product_includes":{"description":"Limit result set to items that have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_excludes":{"description":"Limit result set to items that don't have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"variation_includes":{"description":"Limit result set to items that have the specified variation(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"variation_excludes":{"description":"Limit result set to items that don't have the specified variation(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"coupon_includes":{"description":"Limit result set to items that have the specified coupon(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"coupon_excludes":{"description":"Limit result set to items that don't have the specified coupon(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tax_rate_includes":{"description":"Limit result set to items that have the specified tax rate(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tax_rate_excludes":{"description":"Limit result set to items that don't have the specified tax rate(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"customer":{"description":"Alias for customer_type (deprecated).","type":"string","enum":["new","returning"],"required":false},"customer_type":{"description":"Limit result set to orders that have the specified customer_type","type":"string","enum":["new","returning"],"required":false},"refunds":{"description":"Limit result set to specific types of refunds.","type":"string","default":"","enum":["","all","partial","full","none"],"required":false},"attribute_is":{"description":"Limit result set to orders that include products with the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false},"attribute_is_not":{"description":"Limit result set to orders that don't include products with the specified attributes.","type":"array","items":{"type":"array"},"default":[],"required":false},"segmentby":{"description":"Segment the response by additional constraint.","type":"string","enum":["product","category","variation","coupon","customer_type"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/orders\/stats"}]}},"\/wc-analytics\/reports\/categories":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"category_id","enum":["category_id","items_sold","net_revenue","orders_count","products_count","category"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"status_is":{"description":"Limit result set to items that have the specified order status.","type":"array","items":{"enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"type":"string"},"required":false},"status_is_not":{"description":"Limit result set to items that don't have the specified order status.","type":"array","items":{"enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"type":"string"},"required":false},"categories":{"description":"Limit result set to all items that have the specified term assigned in the categories taxonomy.","type":"array","items":{"type":"integer"},"required":false},"extended_info":{"description":"Add additional piece of info about each category to the report.","type":"boolean","default":false,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/categories"}]}},"\/wc-analytics\/reports\/taxes":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"tax_rate_id","enum":["name","tax_rate_id","tax_code","rate","order_tax","total_tax","shipping_tax","orders_count"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"taxes":{"description":"Limit result set to items assigned one or more tax rates.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/taxes"}]}},"\/wc-analytics\/reports\/taxes\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","items_sold","total_sales","orders_count","products_count"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"fields":{"description":"Limit stats fields to the specified items.","type":"array","items":{"type":"string"},"required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"taxes":{"description":"Limit result set to all items that have the specified term assigned in the taxes taxonomy.","type":"array","items":{"type":"integer"},"required":false},"segmentby":{"description":"Segment the response by additional constraint.","type":"string","enum":["tax_rate_id"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/taxes\/stats"}]}},"\/wc-analytics\/reports\/coupons":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"coupon_id","enum":["coupon_id","code","amount","orders_count"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"coupons":{"description":"Limit result set to coupons assigned specific coupon IDs.","type":"array","items":{"type":"integer"},"required":false},"extended_info":{"description":"Add additional piece of info about each coupon to the report.","type":"boolean","default":false,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/coupons"}]}},"\/wc-analytics\/reports\/coupons\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","amount","coupons_count","orders_count"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"fields":{"description":"Limit stats fields to the specified items.","type":"array","items":{"type":"string"},"required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"coupons":{"description":"Limit result set to coupons assigned specific coupon IDs.","type":"array","items":{"type":"integer"},"required":false},"segmentby":{"description":"Segment the response by additional constraint.","type":"string","enum":["product","variation","category","coupon"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/coupons\/stats"}]}},"\/wc-analytics\/reports\/stock":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"stock_status","enum":["stock_status","stock_quantity","date","id","include","title","sku"],"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"type":{"description":"Limit result set to items assigned a stock report type.","type":"string","default":"all","enum":["all","lowstock","instock","outofstock","onbackorder"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/stock"}]}},"\/wc-analytics\/reports\/stock\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/stock\/stats"}]}},"\/wc-analytics\/reports\/downloads":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","product"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: products, orders, username, ip_address.","type":"string","default":"all","enum":["all","any"],"required":false},"product_includes":{"description":"Limit result set to items that have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_excludes":{"description":"Limit result set to items that don't have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order_includes":{"description":"Limit result set to items that have the specified order ids.","type":"array","items":{"type":"integer"},"required":false},"order_excludes":{"description":"Limit result set to items that don't have the specified order ids.","type":"array","items":{"type":"integer"},"required":false},"customer_includes":{"description":"Limit response to objects that have the specified user ids.","type":"array","items":{"type":"integer"},"required":false},"customer_excludes":{"description":"Limit response to objects that don't have the specified user ids.","type":"array","items":{"type":"integer"},"required":false},"ip_address_includes":{"description":"Limit response to objects that have a specified ip address.","type":"array","items":{"type":"string"},"required":false},"ip_address_excludes":{"description":"Limit response to objects that don't have a specified ip address.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/downloads"}]}},"\/wc-analytics\/reports\/downloads\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","download_count"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"fields":{"description":"Limit stats fields to the specified items.","type":"array","items":{"type":"string"},"required":false},"interval":{"description":"Time interval to use for buckets in the returned data.","type":"string","default":"week","enum":["hour","day","week","month","quarter","year"],"required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"product_includes":{"description":"Limit result set to items that have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_excludes":{"description":"Limit result set to items that don't have the specified product(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order_includes":{"description":"Limit result set to items that have the specified order ids.","type":"array","items":{"type":"integer"},"required":false},"order_excludes":{"description":"Limit result set to items that don't have the specified order ids.","type":"array","items":{"type":"integer"},"required":false},"customer_includes":{"description":"Limit response to objects that have the specified customer ids.","type":"array","items":{"type":"integer"},"required":false},"customer_excludes":{"description":"Limit response to objects that don't have the specified customer ids.","type":"array","items":{"type":"integer"},"required":false},"ip_address_includes":{"description":"Limit response to objects that have a specified ip address.","type":"array","items":{"type":"string"},"required":false},"ip_address_excludes":{"description":"Limit response to objects that don't have a specified ip address.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/downloads\/stats"}]}},"\/wc-analytics\/reports\/customers":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date_registered","enum":["username","name","first_name","last_name","email","location","country","city","state","postcode","date_registered","date_last_active","orders_count","total_spend","avg_order_value"],"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false},"registered_before":{"description":"Limit response to objects registered before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"registered_after":{"description":"Limit response to objects registered after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"search":{"description":"Limit response to objects with a customer field containing the search term. Searches the field provided by `searchby`.","type":"string","required":false},"searchby":{"description":"Limit results with `search` and `searchby` to specific fields containing the search term.","type":"string","default":"name","enum":["name","username","email","all"],"required":false},"name_includes":{"description":"Limit response to objects with specific names.","type":"string","required":false},"name_excludes":{"description":"Limit response to objects excluding specific names.","type":"string","required":false},"username_includes":{"description":"Limit response to objects with specific usernames.","type":"string","required":false},"username_excludes":{"description":"Limit response to objects excluding specific usernames.","type":"string","required":false},"email_includes":{"description":"Limit response to objects including emails.","type":"string","required":false},"email_excludes":{"description":"Limit response to objects excluding emails.","type":"string","required":false},"country_includes":{"description":"Limit response to objects with specific countries.","type":"string","required":false},"country_excludes":{"description":"Limit response to objects excluding specific countries.","type":"string","required":false},"last_active_before":{"description":"Limit response to objects last active before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_after":{"description":"Limit response to objects last active after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"registered_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"orders_count_min":{"description":"Limit response to objects with an order count greater than or equal to given integer.","type":"integer","required":false},"orders_count_max":{"description":"Limit response to objects with an order count less than or equal to given integer.","type":"integer","required":false},"orders_count_between":{"description":"Limit response to objects with an order count between two given integers.","type":"array","items":{"type":"integer"},"required":false},"total_spend_min":{"description":"Limit response to objects with a total order spend greater than or equal to given number.","type":"number","required":false},"total_spend_max":{"description":"Limit response to objects with a total order spend less than or equal to given number.","type":"number","required":false},"total_spend_between":{"description":"Limit response to objects with a total order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"avg_order_value_min":{"description":"Limit response to objects with an average order spend greater than or equal to given number.","type":"number","required":false},"avg_order_value_max":{"description":"Limit response to objects with an average order spend less than or equal to given number.","type":"number","required":false},"avg_order_value_between":{"description":"Limit response to objects with an average order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"last_order_before":{"description":"Limit response to objects with last order before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_order_after":{"description":"Limit response to objects with last order after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"customers":{"description":"Limit result to items with specified customer ids.","type":"array","items":{"type":"integer"},"required":false},"users":{"description":"Limit result to items with specified user ids.","type":"array","items":{"type":"integer"},"required":false},"filter_empty":{"description":"Filter out results where any of the passed fields are empty","type":"array","items":{"type":"string","enum":["email","name","country","city","state","postcode"]},"required":false},"user_type":{"description":"Limit result to items with specified user type.","type":"string","default":"all","enum":["all","registered","guest"],"required":false},"location_includes":{"description":"Includes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).","type":"string","required":false},"location_excludes":{"description":"Excludes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/customers"}]}},"\/wc-analytics\/reports\/customers\/stats":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"registered_before":{"description":"Limit response to objects registered before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"registered_after":{"description":"Limit response to objects registered after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"match":{"description":"Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories","type":"string","default":"all","enum":["all","any"],"required":false},"search":{"description":"Limit response to objects with a customer field containing the search term. Searches the field provided by `searchby`.","type":"string","required":false},"searchby":{"description":"Limit results with `search` and `searchby` to specific fields containing the search term.","type":"string","default":"name","enum":["name","username","email","all"],"required":false},"name_includes":{"description":"Limit response to objects with specific names.","type":"string","required":false},"name_excludes":{"description":"Limit response to objects excluding specific names.","type":"string","required":false},"username_includes":{"description":"Limit response to objects with specific usernames.","type":"string","required":false},"username_excludes":{"description":"Limit response to objects excluding specific usernames.","type":"string","required":false},"email_includes":{"description":"Limit response to objects including emails.","type":"string","required":false},"email_excludes":{"description":"Limit response to objects excluding emails.","type":"string","required":false},"country_includes":{"description":"Limit response to objects with specific countries.","type":"string","required":false},"country_excludes":{"description":"Limit response to objects excluding specific countries.","type":"string","required":false},"last_active_before":{"description":"Limit response to objects last active before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_after":{"description":"Limit response to objects last active after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_active_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"registered_between":{"description":"Limit response to objects last active between two given ISO8601 compliant datetime.","type":"array","items":{"type":"string"},"required":false},"orders_count_min":{"description":"Limit response to objects with an order count greater than or equal to given integer.","type":"integer","required":false},"orders_count_max":{"description":"Limit response to objects with an order count less than or equal to given integer.","type":"integer","required":false},"orders_count_between":{"description":"Limit response to objects with an order count between two given integers.","type":"array","items":{"type":"integer"},"required":false},"total_spend_min":{"description":"Limit response to objects with a total order spend greater than or equal to given number.","type":"number","required":false},"total_spend_max":{"description":"Limit response to objects with a total order spend less than or equal to given number.","type":"number","required":false},"total_spend_between":{"description":"Limit response to objects with a total order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"avg_order_value_min":{"description":"Limit response to objects with an average order spend greater than or equal to given number.","type":"number","required":false},"avg_order_value_max":{"description":"Limit response to objects with an average order spend less than or equal to given number.","type":"number","required":false},"avg_order_value_between":{"description":"Limit response to objects with an average order spend between two given numbers.","type":"array","items":{"type":"integer"},"required":false},"last_order_before":{"description":"Limit response to objects with last order before (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"last_order_after":{"description":"Limit response to objects with last order after (or at) a given ISO8601 compliant datetime.","type":"string","format":"date-time","required":false},"customers":{"description":"Limit result to items with specified customer ids.","type":"array","items":{"type":"integer"},"required":false},"fields":{"description":"Limit stats fields to the specified items.","type":"array","items":{"type":"string"},"required":false},"force_cache_refresh":{"description":"Force retrieval of fresh data instead of from the cache.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/customers\/stats"}]}},"\/wc-analytics\/imports\/status":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/imports\/status"}]}},"\/wc-analytics\/imports\/trigger":{"namespace":"wc-analytics","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/imports\/trigger"}]}},"\/wc-analytics\/reports\/performance-indicators":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"stats":{"description":"Limit response to specific report stats. Allowed values: .","type":"array","items":{"type":"string","enum":[]},"default":[],"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/performance-indicators"}]}},"\/wc-analytics\/reports\/performance-indicators\/allowed":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"stats":{"description":"Limit response to specific report stats. Allowed values: .","type":"array","items":{"type":"string","enum":[]},"default":[],"required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/reports\/performance-indicators\/allowed"}]}},"\/wc-analytics\/admin\/notes":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["note_id","date","type","title","status"],"required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"type":{"description":"Type of note.","type":"array","items":{"enum":["error","warning","update","info","marketing","survey"],"type":"string"},"required":false},"status":{"description":"Status of note.","type":"array","items":{"enum":["pending","actioned","unactioned","snoozed","sent"],"type":"string"},"required":false},"source":{"description":"Source of note.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/admin\/notes"}]}},"\/wc-analytics\/admin\/notes\/(?P[\\d-]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false}}}]},"\/wc-analytics\/admin\/notes\/delete\/(?P[\\d-]+)":{"namespace":"wc-analytics","methods":["DELETE"],"endpoints":[{"methods":["DELETE"],"args":[]}]},"\/wc-analytics\/admin\/notes\/delete\/all":{"namespace":"wc-analytics","methods":["DELETE"],"endpoints":[{"methods":["DELETE"],"args":{"status":{"description":"Status of note.","type":"array","items":{"enum":["pending","actioned","unactioned","snoozed","sent"],"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/admin\/notes\/delete\/all"}]}},"\/wc-analytics\/admin\/notes\/tracker\/(?P[\\d-]+)\/user\/(?P[\\d-]+)":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/wc-analytics\/admin\/notes\/update":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/admin\/notes\/update"}]}},"\/wc-analytics\/admin\/notes\/experimental-activate-promo\/(?P[\\w-]+)":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-analytics\/admin\/notes\/(?P[\\d-]+)\/action\/(?P[\\d-]+)":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"note_id":{"description":"Unique ID for the Note.","type":"integer","required":false},"action_id":{"description":"Unique ID for the Note Action.","type":"integer","required":false}}}]},"\/wc-analytics\/coupons":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to coupons with codes matching a given string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"code":{"description":"Limit result set to resources with a specific code.","type":"string","required":false}}},{"methods":["POST"],"args":{"code":{"description":"Coupon code.","type":"string","required":true},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"default":"fixed_cart","description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"default":false,"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"default":false,"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"default":false,"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/coupons"}]}},"\/wc-analytics\/coupons\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"code":{"description":"Coupon code.","type":"string","required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc-analytics\/coupons\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"code":{"description":"Coupon code.","type":"string","required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/coupons\/batch"}]}},"\/wc-analytics\/data":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/data"}]}},"\/wc-analytics\/data\/countries\/locales":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/data\/countries\/locales"}]}},"\/wc-analytics\/data\/countries":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/data\/countries"}]}},"\/wc-analytics\/data\/countries\/(?P[\\w-]+)":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"location":{"description":"ISO3166 alpha-2 country code.","type":"string","required":false}}}]},"\/wc-analytics\/data\/download-ips":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/data\/download-ips"}]}},"\/wc-analytics\/orders":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"status":{"default":["any"],"description":"Limit result set to orders which have specific statuses.","type":"array","items":{"type":"string","enum":["any","trash","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"]},"required":false},"customer":{"description":"Limit result set to orders assigned a specific customer.","type":"integer","required":false},"product":{"description":"Limit result set to orders assigned a specific product.","type":"integer","required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false},"order_item_display_meta":{"default":false,"description":"Only show meta which is meant to be displayed for an order.","type":"boolean","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"created_via":{"description":"Limit result set to orders created via specific sources (e.g. checkout, admin).","type":"array","items":{"type":"string"},"required":false},"number":{"description":"Limit result set to orders matching part of an order number.","type":"string","required":false}}},{"methods":["POST"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"created_via":{"description":"Shows where the order was created.","type":"string","required":false},"status":{"default":"pending","description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"default":"USD","description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"default":0,"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"],"readonly":true},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"default":false,"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"manual_update":{"default":false,"description":"Set the action as manual so that the order note registers as \"added by user\".","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/orders"}]}},"\/wc-analytics\/orders\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"created_via":{"description":"Shows where the order was created.","type":"string","required":false},"status":{"description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"],"readonly":true},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"manual_update":{"description":"Set the action as manual so that the order note registers as \"added by user\".","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc-analytics\/orders\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"created_via":{"description":"Shows where the order was created.","type":"string","required":false},"status":{"description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"],"readonly":true},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"manual_update":{"description":"Set the action as manual so that the order note registers as \"added by user\".","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/orders\/batch"}]}},"\/wc-analytics\/products":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Search by similar product name or sku.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating","menu_order","price","popularity","rating"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"search_sku":{"description":"Limit results to those with a SKU that partial matches a string. This argument takes precedence over 'sku'.","type":"string","required":false},"search_name_or_sku":{"description":"Limit results to those with a name or SKU that partial matches a string. This argument takes precedence over 'search', 'sku' and 'search_sku'.","type":"string","required":false},"search_fields":{"description":"Limit search to specific fields when used with search parameter. Available fields: name, sku, global_unique_id, description, short_description. This argument takes precedence over all other search parameters.","type":"array","items":{"type":"string","enum":["name","global_unique_id","description","short_description","sku"]},"default":[],"required":false},"include_status":{"description":"Limit result set to products with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude products with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"include_types":{"description":"Limit result set to products with any of the types.","type":"array","items":{"type":"string","enum":["simple","grouped","external","variable"]},"required":false},"exclude_types":{"description":"Exclude products with any of the types from result set.","type":"array","items":{"type":"string","enum":["simple","grouped","external","variable"]},"required":false},"downloadable":{"description":"Limit result set to downloadable products.","type":"boolean","required":false},"virtual":{"description":"Limit result set to virtual products.","type":"boolean","required":false},"pos_products_only":{"description":"Limit result set to products visible in Point of Sale.","type":"boolean","required":false},"low_in_stock":{"description":"Limit result set to products that are low or out of stock. (Deprecated)","type":"boolean","default":false,"required":false}}},{"methods":["POST"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"default":"simple","description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"default":"publish","description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"default":false,"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"default":"visible","description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"default":false,"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"default":"instock","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"default":false,"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"default":true,"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products"}]}},"\/wc-analytics\/products\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"description":"Whether to bypass trash and force deletion.","type":"boolean","required":false}}}]},"\/wc-analytics\/products\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/batch"}]}},"\/wc-analytics\/products\/(?P[\\d]+)\/related":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false}}}]},"\/wc-analytics\/products\/suggested-products":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"in_stock":{"description":"Limit result set to products in stock or out of stock.","type":"boolean","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"categories":{"description":"Limit result set to specific product categorie ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tags":{"description":"Limit result set to specific product tag ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"limit":{"description":"Limit result set to specific amount of suggested products.","type":"integer","default":5,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/suggested-products"}]}},"\/wc-analytics\/products\/(?P[\\d]+)\/duplicate":{"namespace":"wc-analytics","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc-analytics\/products\/attributes":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"search":{"description":"Search by similar attribute name.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Name for the resource.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"default":"select","description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"default":"menu_order","description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"default":false,"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/attributes"}]}},"\/wc-analytics\/products\/attributes\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc-analytics\/products\/attributes\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/attributes\/batch"}]}},"\/wc-analytics\/products\/attributes\/(?P[a-z0-9_\\-]+)":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"Slug identifier for the resource.","type":"string","required":false}}}]},"\/wc-analytics\/products\/attributes\/(?P[\\d]+)\/terms":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc-analytics\/products\/attributes\/(?P[\\d]+)\/terms\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc-analytics\/products\/attributes\/(?P[\\d]+)\/terms\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc-analytics\/products\/attributes\/(?P[a-z0-9_\\-]+)\/terms":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false}}}]},"\/wc-analytics\/products\/categories":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"default":"default","description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/categories"}]}},"\/wc-analytics\/products\/categories\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc-analytics\/products\/categories\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/categories\/batch"}]}},"\/wc-analytics\/products\/(?P[\\d]+)\/variations":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Search by similar product name, sku, or attribute value.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"has_price":{"description":"Limit result set to products with or without price.","type":"boolean","required":false},"attributes":{"description":"Limit result set to products with specified attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"type":"string","description":"Attribute slug."},"term":{"type":"string","description":"Attribute term."},"terms":{"type":"array","description":"Attribute terms."}}},"required":false},"virtual":{"description":"Limit result set to virtual product variations.","type":"boolean","required":false},"downloadable":{"description":"Limit result set to downloadable product variations.","type":"boolean","required":false},"include_status":{"description":"Limit result set to product variations with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude product variations with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"pos_products_only":{"description":"Limit result set to variations visible in Point of Sale.","type":"boolean","required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"type":{"default":"variation","description":"Product type.","type":"string","enum":["variation"],"required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"default":"publish","description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"default":false,"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"default":"instock","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"name":{"description":"Product parent name.","type":"string","required":false}}}]},"\/wc-analytics\/products\/(?P[\\d]+)\/variations\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"type":{"description":"Product type.","type":"string","enum":["variation"],"required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"name":{"description":"Product parent name.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc-analytics\/products\/(?P[\\d]+)\/variations\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"type":{"description":"Product type.","type":"string","enum":["variation"],"required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"name":{"description":"Product parent name.","type":"string","required":false}}}]},"\/wc-analytics\/products\/(?P[\\d]+)\/variations\/generate":{"namespace":"wc-analytics","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"delete":{"description":"Deletes unused variations.","type":"boolean","required":false},"default_values":{"description":"Default values for generated variations.","type":"object","properties":{"type":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Product type.","type":"string","enum":["variation"]},"description":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation description.","type":"string"},"sku":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Stock Keeping Unit.","type":"string"},"global_unique_id":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"GTIN, UPC, EAN or ISBN.","type":"string"},"regular_price":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation regular price.","type":"string"},"sale_price":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation sale price.","type":"string"},"date_on_sale_from":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Start date of sale price, in the site's timezone.","type":["null","string"]},"date_on_sale_from_gmt":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Start date of sale price, as GMT.","type":["null","string"]},"date_on_sale_to":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"End date of sale price, in the site's timezone.","type":["null","string"]},"date_on_sale_to_gmt":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"End date of sale price, in the site's timezone.","type":["null","string"]},"status":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation status.","type":"string","enum":["draft","pending","private","publish"]},"virtual":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"If the variation is virtual.","type":"boolean"},"downloadable":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"If the variation is downloadable.","type":"boolean"},"downloads":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}}},"download_limit":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Number of times downloadable files can be downloaded after purchase.","type":"integer"},"download_expiry":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Number of days until access to downloadable files expires.","type":"integer"},"tax_status":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Tax status.","type":"string","enum":["taxable","shipping","none"]},"tax_class":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Tax class.","type":"string"},"manage_stock":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Stock management at variation level.","type":["boolean","string"]},"stock_quantity":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Stock quantity.","type":"integer"},"stock_status":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"]},"backorders":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"]},"low_stock_amount":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Low Stock amount for the variation.","type":["integer","null"]},"weight":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation weight (kg).","type":"string"},"dimensions":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}}},"shipping_class":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Shipping class slug.","type":"string"},"image":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"attributes":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}}},"menu_order":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Menu order, used to custom sort products.","type":"integer"},"meta_data":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}},"parent_id":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Product parent ID.","type":"integer"},"name":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Product parent name.","type":"string"}},"required":false},"type":{"default":"variation","description":"Product type.","type":"string","enum":["variation"],"required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"default":"publish","description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"default":false,"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"default":"instock","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"name":{"description":"Product parent name.","type":"string","required":false}}}]},"\/wc-analytics\/variations":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Search by similar product name, sku, or attribute value.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"has_price":{"description":"Limit result set to products with or without price.","type":"boolean","required":false},"attributes":{"description":"Limit result set to products with specified attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"type":"string","description":"Attribute slug."},"term":{"type":"string","description":"Attribute term."},"terms":{"type":"array","description":"Attribute terms."}}},"required":false},"virtual":{"description":"Limit result set to virtual product variations.","type":"boolean","required":false},"downloadable":{"description":"Limit result set to downloadable product variations.","type":"boolean","required":false},"include_status":{"description":"Limit result set to product variations with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude product variations with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"pos_products_only":{"description":"Limit result set to variations visible in Point of Sale.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/variations"}]}},"\/wc-analytics\/products\/reviews":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to reviews published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date_gmt","enum":["date","date_gmt","id","include","product"],"required":false},"reviewer":{"description":"Limit result set to reviews assigned to specific user IDs.","type":"array","items":{"type":"integer"},"required":false},"reviewer_exclude":{"description":"Ensure result set excludes reviews assigned to specific user IDs.","type":"array","items":{"type":"integer"},"required":false},"reviewer_email":{"default":null,"description":"Limit result set to that from a specific author email.","format":"email","type":"string","required":false},"product":{"default":[],"description":"Limit result set to reviews assigned to specific product IDs.","type":"array","items":{"type":"integer"},"required":false},"status":{"default":"approved","description":"Limit result set to reviews assigned a specific status.","type":"string","enum":["all","hold","approved","spam","trash"],"required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the product.","type":"integer","required":true},"product_name":{"description":"Product name.","type":"string","required":false},"status":{"default":"approved","description":"Status of the review.","type":"string","enum":["approved","hold","spam","unspam","trash","untrash"],"required":false},"reviewer":{"type":"string","description":"Name of the reviewer.","required":true},"reviewer_email":{"type":"string","description":"Email of the reviewer.","required":true},"review":{"type":"string","description":"Review content.","required":true},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/reviews"}]}},"\/wc-analytics\/products\/reviews\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"product_id":{"description":"Unique identifier for the product that the review belongs to.","type":"integer","required":false},"product_name":{"description":"Product name.","type":"string","required":false},"status":{"description":"Status of the review.","type":"string","enum":["approved","hold","spam","unspam","trash","untrash"],"required":false},"reviewer":{"description":"Reviewer name.","type":"string","required":false},"reviewer_email":{"description":"Reviewer email.","type":"string","format":"email","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc-analytics\/products\/reviews\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the product that the review belongs to.","type":"integer","required":false},"product_name":{"description":"Product name.","type":"string","required":false},"status":{"description":"Status of the review.","type":"string","enum":["approved","hold","spam","unspam","trash","untrash"],"required":false},"reviewer":{"description":"Reviewer name.","type":"string","required":false},"reviewer_email":{"description":"Reviewer email.","type":"string","format":"email","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/reviews\/batch"}]}},"\/wc-analytics\/products\/low-in-stock":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"status":{"default":"publish","description":"Limit result set to products assigned a specific status.","type":"string","enum":["draft","pending","private","publish","future"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/low-in-stock"}]}},"\/wc-analytics\/products\/count-low-in-stock":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"status":{"default":"publish","description":"Limit result set to products assigned a specific status.","type":"string","enum":["draft","pending","private","publish","future"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/products\/count-low-in-stock"}]}},"\/wc-analytics\/settings\/(?P[\\w-]+)":{"namespace":"wc-analytics","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false}}}]},"\/wc-analytics\/settings\/(?P[\\w-]+)\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"value":{"description":"Setting value.","type":["null","object","string","number","boolean","integer","array"],"required":false}}}]},"\/wc-analytics\/settings\/(?P[\\w-]+)\/(?P[\\w-]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"id":{"description":"Unique identifier for the resource.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"value":{"description":"Setting value.","type":["null","object","string","number","boolean","integer","array"],"required":false}}}]},"\/wc-analytics\/taxes":{"namespace":"wc-analytics","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"order","description":"Sort collection by object attribute.","enum":["id","order","priority"],"type":"string","required":false},"class":{"description":"Sort by tax class.","enum":["standard","reduced-rate","zero-rate"],"type":"string","required":false},"search":{"description":"Search by similar tax code.","type":"string","required":false},"include":{"description":"Limit result set to items that have the specified rate ID(s) assigned.","type":"array","items":{"type":"integer"},"default":[],"required":false}}},{"methods":["POST"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode\/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead.","type":"string","required":false},"city":{"description":"City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"default":1,"description":"Tax priority.","type":"integer","required":false},"compound":{"default":false,"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"default":true,"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"default":"standard","description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false},"postcodes":{"description":"List of postcodes \/ ZIPs. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false},"cities":{"description":"List of city names. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/taxes"}]}},"\/wc-analytics\/taxes\/(?P[\\d]+)":{"namespace":"wc-analytics","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode\/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead.","type":"string","required":false},"city":{"description":"City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false},"postcodes":{"description":"List of postcodes \/ ZIPs. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false},"cities":{"description":"List of city names. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc-analytics\/taxes\/batch":{"namespace":"wc-analytics","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode\/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead.","type":"string","required":false},"city":{"description":"City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false},"postcodes":{"description":"List of postcodes \/ ZIPs. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false},"cities":{"description":"List of city names. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-analytics\/taxes\/batch"}]}},"\/wc-admin\/launch-your-store\/initialize-coming-soon":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/launch-your-store\/initialize-coming-soon"}]}},"\/wc-admin\/launch-your-store\/update-survey-status":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"status":{"type":"string","enum":["yes","no"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/launch-your-store\/update-survey-status"}]}},"\/wc-admin\/launch-your-store\/survey-completed":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/launch-your-store\/survey-completed"}]}},"\/wc-admin\/launch-your-store\/woopayments\/test-orders\/count":{"namespace":"wc-admin","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/launch-your-store\/woopayments\/test-orders\/count"}]}},"\/wc-admin\/launch-your-store\/woopayments\/test-orders":{"namespace":"wc-admin","methods":["DELETE"],"endpoints":[{"methods":["DELETE"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/launch-your-store\/woopayments\/test-orders"}]}},"\/wc\/store":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/store","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store"}]}},"\/wc\/store\/batch":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"validation":{"type":"string","enum":["require-all-validate","normal"],"default":"normal","required":false},"requests":{"type":"array","maxItems":25,"items":{"type":"object","properties":{"method":{"type":"string","enum":["POST","PUT","PATCH","DELETE"],"default":"POST"},"path":{"type":"string","required":true},"body":{"type":"object","properties":[],"additionalProperties":true},"headers":{"type":"object","properties":[],"additionalProperties":{"type":["string","array"],"items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/batch"}]}},"\/wc\/store\/cart":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart"}]}},"\/wc\/store\/cart\/add-item":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"id":{"description":"The cart item product or variation ID.","type":"integer","required":false},"quantity":{"description":"Quantity of this item to add to the cart.","type":"number","required":false},"variation":{"description":"Chosen attributes (for variations).","type":"array","items":{"type":"object","properties":{"attribute":{"description":"Variation attribute name.","type":"string","context":["view","edit"]},"value":{"description":"Variation attribute value.","type":"string","context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/add-item"}]}},"\/wc\/store\/cart\/apply-coupon":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/apply-coupon"}]}},"\/wc\/store\/cart\/coupons":{"namespace":"wc\/store","methods":["GET","POST","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"code":{"description":"The coupon's unique code.","type":"string","required":false},"discount_type":{"description":"The discount type for the coupon (e.g. percentage or fixed amount)","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/coupons"}]}},"\/wc\/store\/cart\/coupons\/(?P[\\w-]+)":{"namespace":"wc\/store","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false}}}]},"\/wc\/store\/cart\/extensions":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"namespace":{"description":"Extension's name - this will be used to ensure the data in the request is routed appropriately.","type":"string","required":false},"data":{"description":"Additional data to pass to the extension","type":"object","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/extensions"}]}},"\/wc\/store\/cart\/items":{"namespace":"wc\/store","methods":["GET","POST","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"extensions":{"type":"object","properties":[],"default":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/items"}]}},"\/wc\/store\/cart\/items\/(?P[\\w-]{32})":{"namespace":"wc\/store","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier for the item within the cart.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier for the item within the cart.","type":"string","required":false},"extensions":{"type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier for the item within the cart.","type":"string","required":false}}}]},"\/wc\/store\/cart\/remove-coupon":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/remove-coupon"}]}},"\/wc\/store\/cart\/remove-item":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier (key) for the cart item.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/remove-item"}]}},"\/wc\/store\/cart\/select-shipping-rate":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"package_id":{"description":"The ID of the package being shipped. Leave blank to apply to all packages.","type":["integer","string","null"],"required":false},"rate_id":{"description":"The chosen rate ID for the package.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/select-shipping-rate"}]}},"\/wc\/store\/cart\/update-item":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier (key) for the cart item to update.","type":"string","required":false},"quantity":{"description":"New quantity of the item in the cart.","type":"number","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/update-item"}]}},"\/wc\/store\/cart\/update-customer":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":false},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/cart\/update-customer"}]}},"\/wc\/store\/checkout":{"namespace":"wc\/store","methods":["GET","POST","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"payment_data":{"description":"Data to pass through to the payment method when processing payment.","type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":["string","boolean"]}}},"required":false},"customer_password":{"description":"Customer password for new accounts, if applicable.","type":"string","required":false},"customer_note":{"description":"Note added to the order by the customer during checkout.","type":"string","required":false},"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":true},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false},"payment_method":{"description":"The ID of the payment method being used to process the payment.","type":"string","enum":["","bacs","cheque","cod"],"required":false},"create_account":{"description":"Whether to create a new user account as part of order processing.","type":"boolean","required":false},"additional_fields":{"description":"Additional fields to be persisted on the order.","type":"object","properties":[],"required":false},"extensions":{"type":"object","properties":{"woocommerce\/order-attribution":{"description":"Extension data registered by woocommerce\/order-attribution","type":["object","null"],"context":["view","edit"],"properties":{"source_type":{"description":"Order attribution field: source_type","type":["string","null"],"context":[]},"referrer":{"description":"Order attribution field: referrer","type":["string","null"],"context":[]},"utm_campaign":{"description":"Order attribution field: utm_campaign","type":["string","null"],"context":[]},"utm_source":{"description":"Order attribution field: utm_source","type":["string","null"],"context":[]},"utm_medium":{"description":"Order attribution field: utm_medium","type":["string","null"],"context":[]},"utm_content":{"description":"Order attribution field: utm_content","type":["string","null"],"context":[]},"utm_id":{"description":"Order attribution field: utm_id","type":["string","null"],"context":[]},"utm_term":{"description":"Order attribution field: utm_term","type":["string","null"],"context":[]},"utm_source_platform":{"description":"Order attribution field: utm_source_platform","type":["string","null"],"context":[]},"utm_creative_format":{"description":"Order attribution field: utm_creative_format","type":["string","null"],"context":[]},"utm_marketing_tactic":{"description":"Order attribution field: utm_marketing_tactic","type":["string","null"],"context":[]},"session_entry":{"description":"Order attribution field: session_entry","type":["string","null"],"context":[]},"session_start_time":{"description":"Order attribution field: session_start_time","type":["string","null"],"context":[]},"session_pages":{"description":"Order attribution field: session_pages","type":["string","null"],"context":[]},"session_count":{"description":"Order attribution field: session_count","type":["string","null"],"context":[]},"user_agent":{"description":"Order attribution field: user_agent","type":["string","null"],"context":[]}}}},"default":{"woocommerce\/order-attribution":[]},"required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"additional_fields":{"description":"Additional fields to be persisted on the order.","type":"object","properties":[],"required":false},"payment_method":{"description":"The ID of the payment method being used to process the payment.","type":"string","enum":["","bacs","cheque","cod"],"required":false},"order_notes":{"description":"Order notes.","type":"string","required":false},"customer_note":{"description":"Note added to the order by the customer during checkout.","type":"string","required":false},"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":false},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false},"create_account":{"description":"Whether to create a new user account as part of order processing.","type":"boolean","required":false},"extensions":{"type":"object","properties":{"woocommerce\/order-attribution":{"description":"Extension data registered by woocommerce\/order-attribution","type":["object","null"],"context":["view","edit"],"properties":{"source_type":{"description":"Order attribution field: source_type","type":["string","null"],"context":[]},"referrer":{"description":"Order attribution field: referrer","type":["string","null"],"context":[]},"utm_campaign":{"description":"Order attribution field: utm_campaign","type":["string","null"],"context":[]},"utm_source":{"description":"Order attribution field: utm_source","type":["string","null"],"context":[]},"utm_medium":{"description":"Order attribution field: utm_medium","type":["string","null"],"context":[]},"utm_content":{"description":"Order attribution field: utm_content","type":["string","null"],"context":[]},"utm_id":{"description":"Order attribution field: utm_id","type":["string","null"],"context":[]},"utm_term":{"description":"Order attribution field: utm_term","type":["string","null"],"context":[]},"utm_source_platform":{"description":"Order attribution field: utm_source_platform","type":["string","null"],"context":[]},"utm_creative_format":{"description":"Order attribution field: utm_creative_format","type":["string","null"],"context":[]},"utm_marketing_tactic":{"description":"Order attribution field: utm_marketing_tactic","type":["string","null"],"context":[]},"session_entry":{"description":"Order attribution field: session_entry","type":["string","null"],"context":[]},"session_start_time":{"description":"Order attribution field: session_start_time","type":["string","null"],"context":[]},"session_pages":{"description":"Order attribution field: session_pages","type":["string","null"],"context":[]},"session_count":{"description":"Order attribution field: session_count","type":["string","null"],"context":[]},"user_agent":{"description":"Order attribution field: user_agent","type":["string","null"],"context":[]}}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/checkout"}]}},"\/wc\/store\/checkout\/(?P[\\d]+)":{"namespace":"wc\/store","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"payment_data":{"description":"Data to pass through to the payment method when processing payment.","type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":["string","boolean"]}}},"required":false},"customer_note":{"description":"Note added to the order by the customer during checkout.","type":"string","required":false},"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":true},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false},"payment_method":{"description":"The ID of the payment method being used to process the payment.","type":"string","enum":["","bacs","cheque","cod"],"required":false},"additional_fields":{"description":"Additional fields to be persisted on the order.","type":"object","properties":[],"required":false},"extensions":{"type":"object","properties":{"woocommerce\/order-attribution":{"description":"Extension data registered by woocommerce\/order-attribution","type":["object","null"],"context":["view","edit"],"properties":{"source_type":{"description":"Order attribution field: source_type","type":["string","null"],"context":[]},"referrer":{"description":"Order attribution field: referrer","type":["string","null"],"context":[]},"utm_campaign":{"description":"Order attribution field: utm_campaign","type":["string","null"],"context":[]},"utm_source":{"description":"Order attribution field: utm_source","type":["string","null"],"context":[]},"utm_medium":{"description":"Order attribution field: utm_medium","type":["string","null"],"context":[]},"utm_content":{"description":"Order attribution field: utm_content","type":["string","null"],"context":[]},"utm_id":{"description":"Order attribution field: utm_id","type":["string","null"],"context":[]},"utm_term":{"description":"Order attribution field: utm_term","type":["string","null"],"context":[]},"utm_source_platform":{"description":"Order attribution field: utm_source_platform","type":["string","null"],"context":[]},"utm_creative_format":{"description":"Order attribution field: utm_creative_format","type":["string","null"],"context":[]},"utm_marketing_tactic":{"description":"Order attribution field: utm_marketing_tactic","type":["string","null"],"context":[]},"session_entry":{"description":"Order attribution field: session_entry","type":["string","null"],"context":[]},"session_start_time":{"description":"Order attribution field: session_start_time","type":["string","null"],"context":[]},"session_pages":{"description":"Order attribution field: session_pages","type":["string","null"],"context":[]},"session_count":{"description":"Order attribution field: session_count","type":["string","null"],"context":[]},"user_agent":{"description":"Order attribution field: user_agent","type":["string","null"],"context":[]}}}},"default":{"woocommerce\/order-attribution":[]},"required":false}}}]},"\/wc\/store\/order\/(?P[\\d]+)":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/products\/attributes":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products\/attributes"}]}},"\/wc\/store\/products\/attributes\/(?P[\\d]+)":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/products\/attributes\/(?P[\\d]+)\/terms":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"attribute_id":{"description":"Unique identifier for the attribute.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count","menu_order","name_num","id"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}]},"\/wc\/store\/products\/categories":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products\/categories"}]}},"\/wc\/store\/products\/categories\/(?P[\\d]+)":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wc\/store\/products\/brands":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products\/brands"}]}},"\/wc\/store\/products\/brands\/(?P[\\w-]+)":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"identifier":{"description":"Unique identifier for the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wc\/store\/products\/collection-data":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"slug":{"description":"Limit result set to products with specific slug(s). Use commas to separate.","type":"string","required":false},"after":{"description":"Limit response to resources created after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources created before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"date_column":{"description":"When limiting response using after\/before, which date column to compare against.","type":"string","default":"date","enum":["date","date_gmt","modified","modified_gmt"],"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","modified","id","include","title","slug","price","popularity","rating","menu_order","comment_count"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable","variation"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a set of category IDs or slugs, separated by commas.","type":"string","required":false},"category_operator":{"description":"Operator to compare product category terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"brand":{"description":"Limit result set to products assigned a set of brand IDs or slugs, separated by commas.","type":"string","required":false},"brand_operator":{"description":"Operator to compare product brand terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"tag":{"description":"Limit result set to products assigned a set of tag IDs or slugs, separated by commas.","type":"string","required":false},"tag_operator":{"description":"Operator to compare product tags.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price, provided using the smallest unit of the currency.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price, provided using the smallest unit of the currency.","type":"string","required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"array","items":{"type":"string","enum":["instock","outofstock","onbackorder"],"sanitize_callback":"sanitize_text_field","validate_callback":"rest_validate_request_arg"},"default":[],"required":false},"attributes":{"description":"Limit result set to products with selected global attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"description":"Attribute taxonomy name.","type":"string","sanitize_callback":"wc_sanitize_taxonomy_name"},"term_id":{"description":"List of attribute term IDs.","type":"array","items":{"type":"integer"},"sanitize_callback":"wp_parse_id_list"},"slug":{"description":"List of attribute slug(s). If a term ID is provided, this will be ignored.","type":"array","items":{"type":"string"},"sanitize_callback":"wp_parse_slug_list"},"operator":{"description":"Operator to compare product attribute terms.","type":"string","enum":["in","not_in","and"]}}},"default":[],"required":false},"attribute_relation":{"description":"The logical relationship between attributes when filtering across multiple at once.","type":"string","enum":["in","and"],"default":"and","required":false},"catalog_visibility":{"description":"Determines if hidden or visible catalog products are shown.","type":"string","enum":["any","visible","catalog","search","hidden"],"required":false},"rating":{"description":"Limit result set to products with a certain average rating.","type":"array","items":{"type":"integer","enum":[1,2,3,4,5]},"default":[],"required":false},"calculate_price_range":{"description":"If true, calculates the minimum and maximum product prices for the collection.","type":"boolean","default":false,"required":false},"calculate_stock_status_counts":{"description":"If true, calculates stock counts for products in the collection.","type":"boolean","default":false,"required":false},"calculate_attribute_counts":{"description":"If requested, calculates attribute term counts for products in the collection.","type":"array","items":{"type":"object","properties":{"taxonomy":{"description":"Taxonomy name.","type":"string","context":["view","edit"],"readonly":true},"query_type":{"description":"Filter condition\t being performed which may affect counts. Valid values include \"and\" and \"or\".","type":"string","enum":["and","or"],"context":["view","edit"],"readonly":true}}},"default":[],"required":false},"calculate_rating_counts":{"description":"If true, calculates rating counts for products in the collection.","type":"boolean","default":false,"required":false},"calculate_taxonomy_counts":{"description":"If requested, calculates taxonomy term counts for products in the collection.","type":"array","items":{"type":"string","description":"Taxonomy name."},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products\/collection-data"}]}},"\/wc\/store\/products\/reviews":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","date_gmt","id","rating","product"],"required":false},"category_id":{"description":"Limit result set to reviews from specific category IDs.","type":"string","required":false},"product_id":{"description":"Limit result set to reviews from specific product IDs.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products\/reviews"}]}},"\/wc\/store\/products\/tags":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products\/tags"}]}},"\/wc\/store\/products":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"slug":{"description":"Limit result set to products with specific slug(s). Use commas to separate.","type":"string","required":false},"after":{"description":"Limit response to resources created after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources created before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"date_column":{"description":"When limiting response using after\/before, which date column to compare against.","type":"string","default":"date","enum":["date","date_gmt","modified","modified_gmt"],"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","modified","id","include","title","slug","price","popularity","rating","menu_order","comment_count"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable","variation"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a set of category IDs or slugs, separated by commas.","type":"string","required":false},"category_operator":{"description":"Operator to compare product category terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"brand":{"description":"Limit result set to products assigned a set of brand IDs or slugs, separated by commas.","type":"string","required":false},"brand_operator":{"description":"Operator to compare product brand terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"tag":{"description":"Limit result set to products assigned a set of tag IDs or slugs, separated by commas.","type":"string","required":false},"tag_operator":{"description":"Operator to compare product tags.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price, provided using the smallest unit of the currency.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price, provided using the smallest unit of the currency.","type":"string","required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"array","items":{"type":"string","enum":["instock","outofstock","onbackorder"],"sanitize_callback":"sanitize_text_field","validate_callback":"rest_validate_request_arg"},"default":[],"required":false},"attributes":{"description":"Limit result set to products with selected global attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"description":"Attribute taxonomy name.","type":"string","sanitize_callback":"wc_sanitize_taxonomy_name"},"term_id":{"description":"List of attribute term IDs.","type":"array","items":{"type":"integer"},"sanitize_callback":"wp_parse_id_list"},"slug":{"description":"List of attribute slug(s). If a term ID is provided, this will be ignored.","type":"array","items":{"type":"string"},"sanitize_callback":"wp_parse_slug_list"},"operator":{"description":"Operator to compare product attribute terms.","type":"string","enum":["in","not_in","and"]}}},"default":[],"required":false},"attribute_relation":{"description":"The logical relationship between attributes when filtering across multiple at once.","type":"string","enum":["in","and"],"default":"and","required":false},"catalog_visibility":{"description":"Determines if hidden or visible catalog products are shown.","type":"string","enum":["any","visible","catalog","search","hidden"],"required":false},"rating":{"description":"Limit result set to products with a certain average rating.","type":"array","items":{"type":"integer","enum":[1,2,3,4,5]},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/products"}]}},"\/wc\/store\/products\/(?P[\\d]+)":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/products\/(?P[\\S]+)":{"namespace":"wc\/store","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"slug":{"description":"Slug of the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/v1":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/store\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1"}]}},"\/wc\/store\/v1\/batch":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"validation":{"type":"string","enum":["require-all-validate","normal"],"default":"normal","required":false},"requests":{"type":"array","maxItems":25,"items":{"type":"object","properties":{"method":{"type":"string","enum":["POST","PUT","PATCH","DELETE"],"default":"POST"},"path":{"type":"string","required":true},"body":{"type":"object","properties":[],"additionalProperties":true},"headers":{"type":"object","properties":[],"additionalProperties":{"type":["string","array"],"items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/batch"}]}},"\/wc\/store\/v1\/cart":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart"}]}},"\/wc\/store\/v1\/cart\/add-item":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"id":{"description":"The cart item product or variation ID.","type":"integer","required":false},"quantity":{"description":"Quantity of this item to add to the cart.","type":"number","required":false},"variation":{"description":"Chosen attributes (for variations).","type":"array","items":{"type":"object","properties":{"attribute":{"description":"Variation attribute name.","type":"string","context":["view","edit"]},"value":{"description":"Variation attribute value.","type":"string","context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/add-item"}]}},"\/wc\/store\/v1\/cart\/apply-coupon":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/apply-coupon"}]}},"\/wc\/store\/v1\/cart\/coupons":{"namespace":"wc\/store\/v1","methods":["GET","POST","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"code":{"description":"The coupon's unique code.","type":"string","required":false},"discount_type":{"description":"The discount type for the coupon (e.g. percentage or fixed amount)","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/coupons"}]}},"\/wc\/store\/v1\/cart\/coupons\/(?P[\\w-]+)":{"namespace":"wc\/store\/v1","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false}}}]},"\/wc\/store\/v1\/cart\/extensions":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"namespace":{"description":"Extension's name - this will be used to ensure the data in the request is routed appropriately.","type":"string","required":false},"data":{"description":"Additional data to pass to the extension","type":"object","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/extensions"}]}},"\/wc\/store\/v1\/cart\/items":{"namespace":"wc\/store\/v1","methods":["GET","POST","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"extensions":{"type":"object","properties":[],"default":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/items"}]}},"\/wc\/store\/v1\/cart\/items\/(?P[\\w-]{32})":{"namespace":"wc\/store\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier for the item within the cart.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier for the item within the cart.","type":"string","required":false},"extensions":{"type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier for the item within the cart.","type":"string","required":false}}}]},"\/wc\/store\/v1\/cart\/remove-coupon":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"code":{"description":"Unique identifier for the coupon within the cart.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/remove-coupon"}]}},"\/wc\/store\/v1\/cart\/remove-item":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier (key) for the cart item.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/remove-item"}]}},"\/wc\/store\/v1\/cart\/select-shipping-rate":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"package_id":{"description":"The ID of the package being shipped. Leave blank to apply to all packages.","type":["integer","string","null"],"required":false},"rate_id":{"description":"The chosen rate ID for the package.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/select-shipping-rate"}]}},"\/wc\/store\/v1\/cart\/update-item":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"key":{"description":"Unique identifier (key) for the cart item to update.","type":"string","required":false},"quantity":{"description":"New quantity of the item in the cart.","type":"number","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/update-item"}]}},"\/wc\/store\/v1\/cart\/update-customer":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":false},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/cart\/update-customer"}]}},"\/wc\/store\/v1\/checkout":{"namespace":"wc\/store\/v1","methods":["GET","POST","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"payment_data":{"description":"Data to pass through to the payment method when processing payment.","type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":["string","boolean"]}}},"required":false},"customer_password":{"description":"Customer password for new accounts, if applicable.","type":"string","required":false},"customer_note":{"description":"Note added to the order by the customer during checkout.","type":"string","required":false},"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":true},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false},"payment_method":{"description":"The ID of the payment method being used to process the payment.","type":"string","enum":["","bacs","cheque","cod"],"required":false},"create_account":{"description":"Whether to create a new user account as part of order processing.","type":"boolean","required":false},"additional_fields":{"description":"Additional fields to be persisted on the order.","type":"object","properties":[],"required":false},"extensions":{"type":"object","properties":{"woocommerce\/order-attribution":{"description":"Extension data registered by woocommerce\/order-attribution","type":["object","null"],"context":["view","edit"],"properties":{"source_type":{"description":"Order attribution field: source_type","type":["string","null"],"context":[]},"referrer":{"description":"Order attribution field: referrer","type":["string","null"],"context":[]},"utm_campaign":{"description":"Order attribution field: utm_campaign","type":["string","null"],"context":[]},"utm_source":{"description":"Order attribution field: utm_source","type":["string","null"],"context":[]},"utm_medium":{"description":"Order attribution field: utm_medium","type":["string","null"],"context":[]},"utm_content":{"description":"Order attribution field: utm_content","type":["string","null"],"context":[]},"utm_id":{"description":"Order attribution field: utm_id","type":["string","null"],"context":[]},"utm_term":{"description":"Order attribution field: utm_term","type":["string","null"],"context":[]},"utm_source_platform":{"description":"Order attribution field: utm_source_platform","type":["string","null"],"context":[]},"utm_creative_format":{"description":"Order attribution field: utm_creative_format","type":["string","null"],"context":[]},"utm_marketing_tactic":{"description":"Order attribution field: utm_marketing_tactic","type":["string","null"],"context":[]},"session_entry":{"description":"Order attribution field: session_entry","type":["string","null"],"context":[]},"session_start_time":{"description":"Order attribution field: session_start_time","type":["string","null"],"context":[]},"session_pages":{"description":"Order attribution field: session_pages","type":["string","null"],"context":[]},"session_count":{"description":"Order attribution field: session_count","type":["string","null"],"context":[]},"user_agent":{"description":"Order attribution field: user_agent","type":["string","null"],"context":[]}}}},"default":{"woocommerce\/order-attribution":[]},"required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"additional_fields":{"description":"Additional fields to be persisted on the order.","type":"object","properties":[],"required":false},"payment_method":{"description":"The ID of the payment method being used to process the payment.","type":"string","enum":["","bacs","cheque","cod"],"required":false},"order_notes":{"description":"Order notes.","type":"string","required":false},"customer_note":{"description":"Note added to the order by the customer during checkout.","type":"string","required":false},"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":false},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false},"create_account":{"description":"Whether to create a new user account as part of order processing.","type":"boolean","required":false},"extensions":{"type":"object","properties":{"woocommerce\/order-attribution":{"description":"Extension data registered by woocommerce\/order-attribution","type":["object","null"],"context":["view","edit"],"properties":{"source_type":{"description":"Order attribution field: source_type","type":["string","null"],"context":[]},"referrer":{"description":"Order attribution field: referrer","type":["string","null"],"context":[]},"utm_campaign":{"description":"Order attribution field: utm_campaign","type":["string","null"],"context":[]},"utm_source":{"description":"Order attribution field: utm_source","type":["string","null"],"context":[]},"utm_medium":{"description":"Order attribution field: utm_medium","type":["string","null"],"context":[]},"utm_content":{"description":"Order attribution field: utm_content","type":["string","null"],"context":[]},"utm_id":{"description":"Order attribution field: utm_id","type":["string","null"],"context":[]},"utm_term":{"description":"Order attribution field: utm_term","type":["string","null"],"context":[]},"utm_source_platform":{"description":"Order attribution field: utm_source_platform","type":["string","null"],"context":[]},"utm_creative_format":{"description":"Order attribution field: utm_creative_format","type":["string","null"],"context":[]},"utm_marketing_tactic":{"description":"Order attribution field: utm_marketing_tactic","type":["string","null"],"context":[]},"session_entry":{"description":"Order attribution field: session_entry","type":["string","null"],"context":[]},"session_start_time":{"description":"Order attribution field: session_start_time","type":["string","null"],"context":[]},"session_pages":{"description":"Order attribution field: session_pages","type":["string","null"],"context":[]},"session_count":{"description":"Order attribution field: session_count","type":["string","null"],"context":[]},"user_agent":{"description":"Order attribution field: user_agent","type":["string","null"],"context":[]}}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/checkout"}]}},"\/wc\/store\/v1\/checkout\/(?P[\\d]+)":{"namespace":"wc\/store\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"allow_batch":{"v1":true},"args":{"payment_data":{"description":"Data to pass through to the payment method when processing payment.","type":"array","items":{"type":"object","properties":{"key":{"type":"string"},"value":{"type":["string","boolean"]}}},"required":false},"customer_note":{"description":"Note added to the order by the customer during checkout.","type":"string","required":false},"billing_address":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true},"email":{"description":"Email","type":"string","context":["view","edit"],"required":true}},"required":true},"shipping_address":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name","type":"string","context":["view","edit"],"required":true},"last_name":{"description":"Last name","type":"string","context":["view","edit"],"required":true},"company":{"description":"Company","type":"string","context":["view","edit"],"required":true},"address_1":{"description":"Address","type":"string","context":["view","edit"],"required":true},"address_2":{"description":"Apartment, suite, etc.","type":"string","context":["view","edit"],"required":true},"city":{"description":"City","type":"string","context":["view","edit"],"required":true},"state":{"description":"State\/County code, or name of the state, county, province, or district.","type":"string","context":["view","edit"],"required":true},"postcode":{"description":"Postal code","type":"string","context":["view","edit"],"required":true},"country":{"description":"Country\/Region code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"],"required":true},"phone":{"description":"Phone","type":"string","context":["view","edit"],"required":true}},"required":false},"payment_method":{"description":"The ID of the payment method being used to process the payment.","type":"string","enum":["","bacs","cheque","cod"],"required":false},"additional_fields":{"description":"Additional fields to be persisted on the order.","type":"object","properties":[],"required":false},"extensions":{"type":"object","properties":{"woocommerce\/order-attribution":{"description":"Extension data registered by woocommerce\/order-attribution","type":["object","null"],"context":["view","edit"],"properties":{"source_type":{"description":"Order attribution field: source_type","type":["string","null"],"context":[]},"referrer":{"description":"Order attribution field: referrer","type":["string","null"],"context":[]},"utm_campaign":{"description":"Order attribution field: utm_campaign","type":["string","null"],"context":[]},"utm_source":{"description":"Order attribution field: utm_source","type":["string","null"],"context":[]},"utm_medium":{"description":"Order attribution field: utm_medium","type":["string","null"],"context":[]},"utm_content":{"description":"Order attribution field: utm_content","type":["string","null"],"context":[]},"utm_id":{"description":"Order attribution field: utm_id","type":["string","null"],"context":[]},"utm_term":{"description":"Order attribution field: utm_term","type":["string","null"],"context":[]},"utm_source_platform":{"description":"Order attribution field: utm_source_platform","type":["string","null"],"context":[]},"utm_creative_format":{"description":"Order attribution field: utm_creative_format","type":["string","null"],"context":[]},"utm_marketing_tactic":{"description":"Order attribution field: utm_marketing_tactic","type":["string","null"],"context":[]},"session_entry":{"description":"Order attribution field: session_entry","type":["string","null"],"context":[]},"session_start_time":{"description":"Order attribution field: session_start_time","type":["string","null"],"context":[]},"session_pages":{"description":"Order attribution field: session_pages","type":["string","null"],"context":[]},"session_count":{"description":"Order attribution field: session_count","type":["string","null"],"context":[]},"user_agent":{"description":"Order attribution field: user_agent","type":["string","null"],"context":[]}}}},"default":{"woocommerce\/order-attribution":[]},"required":false}}}]},"\/wc\/store\/v1\/order\/(?P[\\d]+)":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/v1\/products\/attributes":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products\/attributes"}]}},"\/wc\/store\/v1\/products\/attributes\/(?P[\\d]+)":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/v1\/products\/attributes\/(?P[\\d]+)\/terms":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"attribute_id":{"description":"Unique identifier for the attribute.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count","menu_order","name_num","id"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}]},"\/wc\/store\/v1\/products\/categories":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products\/categories"}]}},"\/wc\/store\/v1\/products\/categories\/(?P[\\d]+)":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wc\/store\/v1\/products\/brands":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products\/brands"}]}},"\/wc\/store\/v1\/products\/brands\/(?P[\\w-]+)":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"identifier":{"description":"Unique identifier for the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wc\/store\/v1\/products\/collection-data":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"slug":{"description":"Limit result set to products with specific slug(s). Use commas to separate.","type":"string","required":false},"after":{"description":"Limit response to resources created after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources created before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"date_column":{"description":"When limiting response using after\/before, which date column to compare against.","type":"string","default":"date","enum":["date","date_gmt","modified","modified_gmt"],"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","modified","id","include","title","slug","price","popularity","rating","menu_order","comment_count"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable","variation"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a set of category IDs or slugs, separated by commas.","type":"string","required":false},"category_operator":{"description":"Operator to compare product category terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"brand":{"description":"Limit result set to products assigned a set of brand IDs or slugs, separated by commas.","type":"string","required":false},"brand_operator":{"description":"Operator to compare product brand terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"tag":{"description":"Limit result set to products assigned a set of tag IDs or slugs, separated by commas.","type":"string","required":false},"tag_operator":{"description":"Operator to compare product tags.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price, provided using the smallest unit of the currency.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price, provided using the smallest unit of the currency.","type":"string","required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"array","items":{"type":"string","enum":["instock","outofstock","onbackorder"],"sanitize_callback":"sanitize_text_field","validate_callback":"rest_validate_request_arg"},"default":[],"required":false},"attributes":{"description":"Limit result set to products with selected global attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"description":"Attribute taxonomy name.","type":"string","sanitize_callback":"wc_sanitize_taxonomy_name"},"term_id":{"description":"List of attribute term IDs.","type":"array","items":{"type":"integer"},"sanitize_callback":"wp_parse_id_list"},"slug":{"description":"List of attribute slug(s). If a term ID is provided, this will be ignored.","type":"array","items":{"type":"string"},"sanitize_callback":"wp_parse_slug_list"},"operator":{"description":"Operator to compare product attribute terms.","type":"string","enum":["in","not_in","and"]}}},"default":[],"required":false},"attribute_relation":{"description":"The logical relationship between attributes when filtering across multiple at once.","type":"string","enum":["in","and"],"default":"and","required":false},"catalog_visibility":{"description":"Determines if hidden or visible catalog products are shown.","type":"string","enum":["any","visible","catalog","search","hidden"],"required":false},"rating":{"description":"Limit result set to products with a certain average rating.","type":"array","items":{"type":"integer","enum":[1,2,3,4,5]},"default":[],"required":false},"calculate_price_range":{"description":"If true, calculates the minimum and maximum product prices for the collection.","type":"boolean","default":false,"required":false},"calculate_stock_status_counts":{"description":"If true, calculates stock counts for products in the collection.","type":"boolean","default":false,"required":false},"calculate_attribute_counts":{"description":"If requested, calculates attribute term counts for products in the collection.","type":"array","items":{"type":"object","properties":{"taxonomy":{"description":"Taxonomy name.","type":"string","context":["view","edit"],"readonly":true},"query_type":{"description":"Filter condition\t being performed which may affect counts. Valid values include \"and\" and \"or\".","type":"string","enum":["and","or"],"context":["view","edit"],"readonly":true}}},"default":[],"required":false},"calculate_rating_counts":{"description":"If true, calculates rating counts for products in the collection.","type":"boolean","default":false,"required":false},"calculate_taxonomy_counts":{"description":"If requested, calculates taxonomy term counts for products in the collection.","type":"array","items":{"type":"string","description":"Taxonomy name."},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products\/collection-data"}]}},"\/wc\/store\/v1\/products\/reviews":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","date_gmt","id","rating","product"],"required":false},"category_id":{"description":"Limit result set to reviews from specific category IDs.","type":"string","required":false},"product_id":{"description":"Limit result set to reviews from specific product IDs.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products\/reviews"}]}},"\/wc\/store\/v1\/products\/tags":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Sort ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort by term property.","type":"string","default":"name","enum":["name","slug","count"],"required":false},"hide_empty":{"description":"If true, empty terms will not be returned.","type":"boolean","default":true,"required":false},"parent":{"description":"Limit results to terms with a specific parent (hierarchical taxonomies only).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products\/tags"}]}},"\/wc\/store\/v1\/products":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set. Defaults to no limit if left blank.","type":"integer","default":10,"minimum":0,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"slug":{"description":"Limit result set to products with specific slug(s). Use commas to separate.","type":"string","required":false},"after":{"description":"Limit response to resources created after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources created before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"date_column":{"description":"When limiting response using after\/before, which date column to compare against.","type":"string","default":"date","enum":["date","date_gmt","modified","modified_gmt"],"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","modified","id","include","title","slug","price","popularity","rating","menu_order","comment_count"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable","variation"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a set of category IDs or slugs, separated by commas.","type":"string","required":false},"category_operator":{"description":"Operator to compare product category terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"brand":{"description":"Limit result set to products assigned a set of brand IDs or slugs, separated by commas.","type":"string","required":false},"brand_operator":{"description":"Operator to compare product brand terms.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"tag":{"description":"Limit result set to products assigned a set of tag IDs or slugs, separated by commas.","type":"string","required":false},"tag_operator":{"description":"Operator to compare product tags.","type":"string","enum":["in","not_in","and"],"default":"in","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price, provided using the smallest unit of the currency.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price, provided using the smallest unit of the currency.","type":"string","required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"array","items":{"type":"string","enum":["instock","outofstock","onbackorder"],"sanitize_callback":"sanitize_text_field","validate_callback":"rest_validate_request_arg"},"default":[],"required":false},"attributes":{"description":"Limit result set to products with selected global attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"description":"Attribute taxonomy name.","type":"string","sanitize_callback":"wc_sanitize_taxonomy_name"},"term_id":{"description":"List of attribute term IDs.","type":"array","items":{"type":"integer"},"sanitize_callback":"wp_parse_id_list"},"slug":{"description":"List of attribute slug(s). If a term ID is provided, this will be ignored.","type":"array","items":{"type":"string"},"sanitize_callback":"wp_parse_slug_list"},"operator":{"description":"Operator to compare product attribute terms.","type":"string","enum":["in","not_in","and"]}}},"default":[],"required":false},"attribute_relation":{"description":"The logical relationship between attributes when filtering across multiple at once.","type":"string","enum":["in","and"],"default":"and","required":false},"catalog_visibility":{"description":"Determines if hidden or visible catalog products are shown.","type":"string","enum":["any","visible","catalog","search","hidden"],"required":false},"rating":{"description":"Limit result set to products with a certain average rating.","type":"array","items":{"type":"integer","enum":[1,2,3,4,5]},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/store\/v1\/products"}]}},"\/wc\/store\/v1\/products\/(?P[\\d]+)":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/store\/v1\/products\/(?P[\\S]+)":{"namespace":"wc\/store\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"slug":{"description":"Slug of the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/private":{"namespace":"wc\/private","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/private","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/private"}]}},"\/wc\/private\/patterns":{"namespace":"wc\/private","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/private\/patterns"}]}},"\/wc\/v2":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc\/v2","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2"}]}},"\/wc\/v2\/products\/brands":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"default":"default","description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/brands"}]}},"\/wc\/v2\/products\/brands\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/products\/brands\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/brands\/batch"}]}},"\/wc\/v3\/products\/brands":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"default":"default","description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/brands"}]}},"\/wc\/v3\/products\/brands\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/products\/brands\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/brands\/batch"}]}},"\/rankmath\/v1\/ca":{"namespace":"rankmath\/v1\/ca","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/ca","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca"}]}},"\/rankmath\/v1\/ca\/researchKeyword":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"keyword":{"description":"The keyword to be researched.","type":"string","required":true},"country":{"description":"The country for which the keyword should be researched.","type":"string","required":true},"objectID":{"description":"The ID of the post initiating the keyword research request.","type":"integer","required":true},"force_update":{"description":"If true, forces a fresh research request.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/researchKeyword"}]}},"\/rankmath\/v1\/ca\/getCredits":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/getCredits"}]}},"\/rankmath\/v1\/ca\/createPost":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"content":{"description":"The content of the new post.","type":"string","required":true},"title":{"description":"The title of the new post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/createPost"}]}},"\/rankmath\/v1\/ca\/saveOutput":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"outputs":{"description":"An array of AI-generated and existing outputs to be saved.","type":"array","required":true},"endpoint":{"description":"The API endpoint for which the output was generated.","type":"string","required":true},"isChat":{"description":"Indicates if the request was for the Chat endpoint.","type":"boolean","required":false},"attributes":{"description":"The parameters used to generate the AI output.","type":"object","required":false},"credits":{"description":"Credit usage details returned by the API.","type":"object","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/saveOutput"}]}},"\/rankmath\/v1\/ca\/deleteOutput":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"isChat":{"description":"Indicates if the request to delete the output was for the Chat endpoint.","type":"boolean","required":false},"index":{"description":"The output index to delete, applicable only to the Chat endpoint.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/deleteOutput"}]}},"\/rankmath\/v1\/ca\/updateRecentPrompt":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"prompt":{"description":"The selected prompt to be updated in the recent prompts.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/updateRecentPrompt"}]}},"\/rankmath\/v1\/ca\/updatePrompt":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"prompt":{"description":"The prompt data to be saved in the database.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/updatePrompt"}]}},"\/rankmath\/v1\/ca\/savePrompts":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"prompts":{"description":"A list of prompts received from the API to be saved in the database.","type":"array","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/savePrompts"}]}},"\/rankmath\/v1\/ca\/pingContentAI":{"namespace":"rankmath\/v1\/ca","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"plan":{"description":"Content AI plan to update in the Database.","type":"string","required":true},"refreshDate":{"description":"Content AI reset date to update in the Database","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/pingContentAI"}]}},"\/rankmath\/v1\/ca\/generateAlt":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"attachmentIds":{"description":"List of attachment IDs for which to generate alt text.","type":"array","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/generateAlt"}]}},"\/rankmath\/v1\/ca\/updateCredits":{"namespace":"rankmath\/v1\/ca","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"credits":{"description":"Credit usage details returned by the API.","type":"integer","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/ca\/updateCredits"}]}},"\/rankmath\/v1\/an":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/an","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an"}]}},"\/rankmath\/v1\/an\/dashboard":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/dashboard"}]}},"\/rankmath\/v1\/an\/keywordsOverview":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/keywordsOverview"}]}},"\/rankmath\/v1\/an\/postsSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/postsSummary"}]}},"\/rankmath\/v1\/an\/postsRowsByObjects":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/postsRowsByObjects"}]}},"\/rankmath\/v1\/an\/post\/(?P\\d+)":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Post ID.","type":"integer","required":true}}}]},"\/rankmath\/v1\/an\/keywordsSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/keywordsSummary"}]}},"\/rankmath\/v1\/an\/analyticsSummary":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"postType":{"description":"Post Type.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/analyticsSummary"}]}},"\/rankmath\/v1\/an\/keywordsRows":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"page":{"description":"Page number.","type":"integer","required":false},"perPage":{"description":"Results per page.","type":"integer","required":false},"orderBy":{"description":"Order by.","type":"string","required":false},"order":{"description":"Order.","type":"string","required":false},"search":{"description":"Search.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/keywordsRows"}]}},"\/rankmath\/v1\/an\/userPreferences":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"preferences":{"description":"User preferences.","type":"object","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/userPreferences"}]}},"\/rankmath\/v1\/an\/inspectionResults":{"namespace":"rankmath\/v1\/an","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"page":{"description":"Page number.","type":"integer","required":false},"perPage":{"description":"Results per page.","type":"integer","required":false},"orderBy":{"description":"Order by.","type":"string","required":false},"order":{"description":"Order.","type":"string","required":false},"search":{"description":"Search.","type":"string","required":false},"filter":{"description":"Filter.","type":"string","required":false},"filterType":{"description":"Filter type.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/inspectionResults"}]}},"\/rankmath\/v1\/an\/removeFrontendStats":{"namespace":"rankmath\/v1\/an","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"toggleBar":{"description":"Toggle bar.","type":"boolean","required":false},"hide":{"description":"Hide.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/an\/removeFrontendStats"}]}},"\/rankmath\/v1\/in":{"namespace":"rankmath\/v1\/in","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/in","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/in"}]}},"\/rankmath\/v1\/in\/submitUrls":{"namespace":"rankmath\/v1\/in","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"urls":{"description":"The list of urls to submit to the Instant Indexing API.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/in\/submitUrls"}]}},"\/rankmath\/v1\/in\/getLog":{"namespace":"rankmath\/v1\/in","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"filter":{"description":"Filter log by type.","type":"string","enum":["all","manual","auto"],"default":"all","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/in\/getLog"}]}},"\/rankmath\/v1\/in\/clearLog":{"namespace":"rankmath\/v1\/in","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"filter":{"description":"Clear log by type.","type":"string","enum":["all","manual","auto"],"default":"all","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/in\/clearLog"}]}},"\/rankmath\/v1\/in\/resetKey":{"namespace":"rankmath\/v1\/in","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/in\/resetKey"}]}},"\/rankmath\/v1\/status":{"namespace":"rankmath\/v1\/status","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"rankmath\/v1\/status","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/status"}]}},"\/rankmath\/v1\/status\/getViewData":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/status\/getViewData"}]}},"\/rankmath\/v1\/status\/updateViewData":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/status\/updateViewData"}]}},"\/rankmath\/v1\/status\/importSettings":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/status\/importSettings"}]}},"\/rankmath\/v1\/status\/exportSettings":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/status\/exportSettings"}]}},"\/rankmath\/v1\/status\/runBackup":{"namespace":"rankmath\/v1\/status","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/rankmath\/v1\/status\/runBackup"}]}},"\/ktp\/v1":{"namespace":"ktp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"ktp\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/ktp\/v1"}]}},"\/ktp\/v1\/post-select":{"namespace":"ktp\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Page of results to return.","type":"number","default":1,"required":false},"per_page":{"description":"Number of results to return.","type":"number","default":25,"required":false},"search":{"description":"Limit results to items that match search query.","type":"string","required":false},"type":{"description":"Limit results to items of an object type.","type":"array","items":{"type":"string"},"default":{"0":"post","1":"page","3":"nav_menu_item","4":"wp_block","5":"wp_template","6":"wp_template_part","7":"wp_global_styles","8":"wp_navigation","9":"wp_font_family","10":"wp_font_face","11":"kadence_form","12":"kadence_navigation","13":"kadence_header","14":"kadence_custom_svg","15":"kadence_query","16":"kadence_query_card","17":"product","18":"kadence_lottie","19":"kadence_vector","20":"kb_icon","21":"rm_content_editor"},"required":false},"include":{"description":"Include posts by ID.","type":"array","required":false},"categories":{"description":"Limit result set to all items that have the specified term assigned in the categories taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tags":{"description":"Limit result set to all items that have the specified term assigned in the tags taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"menus":{"description":"Limit result set to all items that have the specified term assigned in the menus taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"wp_pattern_category":{"description":"Limit result set to all items that have the specified term assigned in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_brand":{"description":"Limit result set to all items that have the specified term assigned in the product_brand taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_cat":{"description":"Limit result set to all items that have the specified term assigned in the product_cat taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false},"product_tag":{"description":"Limit result set to all items that have the specified term assigned in the product_tag taxonomy.","type":"array","items":{"type":"integer"},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/ktp\/v1\/post-select"}]}},"\/google-site-kit\/v1":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"google-site-kit\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1"}]}},"\/google-site-kit\/v1\/core\/site\/data\/setup-tag":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/setup-tag"}]}},"\/google-site-kit\/v1\/core\/site\/data\/connection":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/connection"}]}},"\/google-site-kit\/v1\/core\/user\/data\/authentication":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/authentication"}]}},"\/google-site-kit\/v1\/core\/user\/data\/disconnect":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/disconnect"}]}},"\/google-site-kit\/v1\/core\/user\/data\/get-token":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/get-token"}]}},"\/google-site-kit\/v1\/core\/user\/data\/user-input-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"questions":{"purpose":{"type":"array","items":{"type":"string"}},"postFrequency":{"type":"array","items":{"type":"string"}},"goals":{"type":"array","items":{"type":"string"}},"includeConversionEvents":{"type":"array","items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/user-input-settings"}]}},"\/google-site-kit\/v1\/core\/user\/data\/audience-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"minProperties":1,"additionalProperties":false,"properties":{"configuredAudiences":{"type":"array","items":{"type":"string"}},"isAudienceSegmentationWidgetHidden":{"type":"boolean"},"didSetAudiences":{"type":"boolean"}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/audience-settings"}]}},"\/google-site-kit\/v1\/core\/user\/data\/conversion-reporting-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"minProperties":1,"additionalProperties":false,"properties":{"newEventsCalloutDismissedAt":{"type":"integer"},"lostEventsCalloutDismissedAt":{"type":"integer"}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/conversion-reporting-settings"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/list":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/list"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/activation":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/activation"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/info":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/info"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/check-access":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/check-access"}]}},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/notifications":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false},"data":{"type":"object","description":"Settings to set.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/data-available":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/modules\/(?P[a-z0-9\\-]+)\/data\/(?P[a-z\\-]+)":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false},"datapoint":{"type":"string","description":"Module data point to address.","default":null,"required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"slug":{"type":"string","description":"Identifier for the module.","default":null,"required":false},"datapoint":{"type":"string","description":"Module data point to address.","default":null,"required":false},"data":{"type":"object","description":"Data to set.","default":null,"required":false}}}]},"\/google-site-kit\/v1\/core\/modules\/data\/recover-modules":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/recover-modules"}]}},"\/google-site-kit\/v1\/core\/modules\/data\/sharing-settings":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}},{"methods":["DELETE"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/modules\/data\/sharing-settings"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismissed-items":{"namespace":"google-site-kit\/v1","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["DELETE"],"args":{"data":{"type":"object","description":"","default":null,"minProperties":1,"additionalProperties":false,"properties":{"slugs":{"type":"array","required":true,"items":{"type":"string"}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismissed-items"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismiss-item":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismiss-item"}]}},"\/google-site-kit\/v1\/core\/user\/data\/expirable-items":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/expirable-items"}]}},"\/google-site-kit\/v1\/core\/user\/data\/set-expirable-item-timers":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"array","description":"","default":null,"items":{"type":"object","additionalProperties":false,"properties":{"slug":{"type":"string","required":true},"expiration":{"type":"integer","required":true}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/set-expirable-item-timers"}]}},"\/google-site-kit\/v1\/core\/user\/data\/permissions":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/permissions"}]}},"\/google-site-kit\/v1\/core\/user\/data\/nonces":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/nonces"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey-trigger":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"triggerID":{"type":"string","required":true},"ttl":{"type":"integer","minimum":0}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey-trigger"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey-event":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"session":{"type":"object","required":true,"properties":{"session_id":{"type":"string","required":true},"session_token":{"type":"string","required":true}}},"event":{"type":"object","required":true,"properties":{"survey_shown":{"type":"object"},"survey_closed":{"type":"object"},"question_answered":{"type":"object"},"completion_shown":{"type":"object"},"follow_up_link_clicked":{"type":"object"}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey-event"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey-timeouts":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey-timeouts"}]}},"\/google-site-kit\/v1\/core\/user\/data\/survey":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/survey"}]}},"\/google-site-kit\/v1\/core\/site\/data\/reset":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/reset"}]}},"\/google-site-kit\/v1\/core\/site\/data\/reset-persistent":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/reset-persistent"}]}},"\/google-site-kit\/v1\/core\/site\/data\/developer-plugin":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/developer-plugin"}]}},"\/google-site-kit\/v1\/core\/user\/data\/tracking":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"enabled":{"type":"boolean","required":true}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/tracking"}]}},"\/google-site-kit\/v1\/core\/search\/data\/entity-search":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"query":{"type":"string","description":"Text content to search for.","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/search\/data\/entity-search"}]}},"\/google-site-kit\/v1\/core\/site\/data\/admin-bar-settings":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"enabled":{"type":"boolean","required":false}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/admin-bar-settings"}]}},"\/google-site-kit\/v1\/core\/site\/data\/notifications":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/notifications"}]}},"\/google-site-kit\/v1\/core\/site\/data\/mark-notification":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/mark-notification"}]}},"\/google-site-kit\/v1\/core\/site\/data\/site-health-tag-placement-test":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/site-health-tag-placement-test"}]}},"\/google-site-kit\/v1\/core\/site\/data\/health-checks":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/health-checks"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismissed-tours":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismissed-tours"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismiss-tour":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismiss-tour"}]}},"\/google-site-kit\/v1\/core\/user\/data\/key-metrics":{"namespace":"google-site-kit\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"properties":{"isWidgetHidden":{"type":"boolean","required":true},"widgetSlugs":{"type":"array","required":false,"maxItems":8,"items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/key-metrics"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismissed-prompts":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismissed-prompts"}]}},"\/google-site-kit\/v1\/core\/user\/data\/dismiss-prompt":{"namespace":"google-site-kit\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"data":{"type":"object","description":"","default":null,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/user\/data\/dismiss-prompt"}]}},"\/google-site-kit\/v1\/core\/site\/data\/consent-mode":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"minProperties":1,"additionalProperties":false,"properties":{"enabled":{"type":"boolean"},"regions":{"type":"array","items":{"type":"string"}}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/consent-mode"}]}},"\/google-site-kit\/v1\/core\/site\/data\/consent-api-info":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/consent-api-info"}]}},"\/google-site-kit\/v1\/core\/site\/data\/consent-api-activate":{"namespace":"google-site-kit\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/consent-api-activate"}]}},"\/google-site-kit\/v1\/core\/site\/data\/ads-measurement-status":{"namespace":"google-site-kit\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/ads-measurement-status"}]}},"\/google-site-kit\/v1\/core\/site\/data\/conversion-tracking":{"namespace":"google-site-kit\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"data":{"type":"object","description":"","default":null,"properties":{"settings":{"type":"object","required":true,"properties":{"enabled":{"type":"boolean","required":true}}}},"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/google-site-kit\/v1\/core\/site\/data\/conversion-tracking"}]}},"\/wc\/v1\/coupons":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"filter":{"type":"object","description":"Use WP Query arguments to modify the response; private query vars require appropriate authorization.","required":false},"code":{"description":"Limit result set to resources with a specific code.","type":"string","required":false}}},{"methods":["POST"],"args":{"code":{"description":"Coupon code.","type":"string","required":true},"description":{"description":"Coupon description.","type":"string","required":false},"discount_type":{"default":"fixed_cart","description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":"string","required":false},"expiry_date":{"description":"UTC DateTime when the coupon expires.","type":["null","string"],"required":false},"individual_use":{"default":false,"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"exclude_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"default":false,"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"default":false,"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":"string","required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":"string","required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/coupons"}]}},"\/wc\/v1\/coupons\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"code":{"description":"Coupon code.","type":"string","required":false},"description":{"description":"Coupon description.","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":"string","required":false},"expiry_date":{"description":"UTC DateTime when the coupon expires.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"exclude_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":"string","required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":"string","required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v1\/coupons\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"code":{"description":"Coupon code.","type":"string","required":false},"description":{"description":"Coupon description.","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":"string","required":false},"expiry_date":{"description":"UTC DateTime when the coupon expires.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"exclude_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":"string","required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":"string","required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/coupons\/batch"}]}},"\/wc\/v1\/customers\/(?P[\\d]+)\/downloads":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"customer_id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}]},"\/wc\/v1\/customers":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"name","description":"Sort collection by object attribute.","enum":["id","include","name","registered_date"],"type":"string","required":false},"email":{"description":"Limit result set to resources with a specific email.","type":"string","format":"email","required":false},"role":{"description":"Limit result set to resources with a specific role.","type":"string","default":"customer","enum":["all","administrator","editor","author","contributor","subscriber","customer","shop_manager"],"required":false}}},{"methods":["POST"],"args":{"email":{"type":"string","description":"New user email address.","required":true},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"New user username.","type":"string","required":false},"password":{"description":"New user password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/customers"}]}},"\/wc\/v1\/customers\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"email":{"description":"The email address for the customer.","type":"string","format":"email","required":false},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"Customer login name.","type":"string","required":false},"password":{"description":"Customer password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false},"reassign":{"default":0,"type":"integer","description":"ID to reassign posts to.","required":false}}}]},"\/wc\/v1\/customers\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"email":{"description":"The email address for the customer.","type":"string","format":"email","required":false},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"Customer login name.","type":"string","required":false},"password":{"description":"Customer password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/customers\/batch"}]}},"\/wc\/v1\/orders\/(?P[\\d]+)\/notes":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"note":{"type":"string","description":"Order note content.","required":true},"customer_note":{"default":false,"description":"Shows\/define if the note is only for reference or for the customer (the user will be notified).","type":"boolean","required":false}}}]},"\/wc\/v1\/orders\/(?P[\\d]+)\/notes\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"order_id":{"description":"The order ID.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/orders\/(?P[\\d]+)\/refunds":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"filter":{"type":"object","description":"Use WP Query arguments to modify the response; private query vars require appropriate authorization.","required":false},"status":{"default":"any","description":"Limit result set to orders assigned a specific status.","type":"string","enum":["any","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"customer":{"description":"Limit result set to orders assigned a specific customer.","type":"integer","required":false},"product":{"description":"Limit result set to orders assigned a specific product.","type":"integer","required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false}}},{"methods":["POST"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"amount":{"description":"Refund amount.","type":"string","required":false},"reason":{"description":"Reason for refund.","type":"string","required":false}}}]},"\/wc\/v1\/orders\/(?P[\\d]+)\/refunds\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/orders":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"filter":{"type":"object","description":"Use WP Query arguments to modify the response; private query vars require appropriate authorization.","required":false},"status":{"default":"any","description":"Limit result set to orders assigned a specific status.","type":"string","enum":["any","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"customer":{"description":"Limit result set to orders assigned a specific customer.","type":"integer","required":false},"product":{"description":"Limit result set to orders assigned a specific product.","type":"integer","required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false}}},{"methods":["POST"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"status":{"default":"pending","description":"Order status.","type":"string","enum":["pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"default":"USD","description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"default":0,"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"set_paid":{"default":false,"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"],"readonly":true},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"]},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta":{"description":"Line item meta data.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"key":{"description":"Meta key.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"Meta label.","type":"string","context":["view","edit"],"readonly":true},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"],"readonly":true}}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"]},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"]},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/orders"}]}},"\/wc\/v1\/orders\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"status":{"description":"Order status.","type":"string","enum":["pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"],"readonly":true},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"]},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta":{"description":"Line item meta data.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"key":{"description":"Meta key.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"Meta label.","type":"string","context":["view","edit"],"readonly":true},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"],"readonly":true}}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"]},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"]},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v1\/orders\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"status":{"description":"Order status.","type":"string","enum":["pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1.","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2.","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"],"readonly":true},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"]},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta":{"description":"Line item meta data.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"key":{"description":"Meta key.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"Meta label.","type":"string","context":["view","edit"],"readonly":true},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"],"readonly":true}}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"]},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"]},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/orders\/batch"}]}},"\/wc\/v1\/products\/attributes\/(?P[\\d]+)\/terms":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc\/v1\/products\/attributes\/(?P[\\d]+)\/terms\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/products\/attributes\/(?P[\\d]+)\/terms\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc\/v1\/products\/attributes":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Name for the resource.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"default":"select","description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"default":"menu_order","description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"default":false,"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/attributes"}]}},"\/wc\/v1\/products\/attributes\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/products\/attributes\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/attributes\/batch"}]}},"\/wc\/v1\/products\/categories":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"default":"default","description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/categories"}]}},"\/wc\/v1\/products\/categories\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/products\/categories\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/categories\/batch"}]}},"\/wc\/v1\/products\/(?P[\\d]+)\/reviews":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"review":{"type":"string","description":"Review content.","required":true},"date_created":{"description":"The date the review was created, in the site's timezone.","type":["null","string"],"required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false},"name":{"type":"string","description":"Name of the reviewer.","required":true},"email":{"type":"string","description":"Email of the reviewer.","required":true}}}]},"\/wc\/v1\/products\/(?P[\\d]+)\/reviews\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"date_created":{"description":"The date the review was created, in the site's timezone.","type":["null","string"],"required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false},"name":{"description":"Reviewer name.","type":"string","required":false},"email":{"description":"Reviewer email.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v1\/products\/shipping_classes":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/shipping_classes"}]}},"\/wc\/v1\/products\/shipping_classes\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/products\/shipping_classes\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/shipping_classes\/batch"}]}},"\/wc\/v1\/products\/tags":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/tags"}]}},"\/wc\/v1\/products\/tags\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Tag name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/products\/tags\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Tag name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/tags\/batch"}]}},"\/wc\/v1\/products":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"filter":{"type":"object","description":"Use WP Query arguments to modify the response; private query vars require appropriate authorization.","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"sku":{"description":"Limit result set to products with a specific SKU.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"type":{"default":"simple","description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"default":"publish","description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future"],"required":false},"featured":{"default":false,"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"default":"visible","description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price.","type":"string","required":false},"date_on_sale_to":{"description":"End date of sale price.","type":"string","required":false},"virtual":{"default":false,"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"download_type":{"default":"standard","description":"Download type, this controls the schema on the front-end.","type":"string","enum":["standard"],"required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"default":true,"description":"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"sold_individually":{"default":false,"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"default":true,"description":"Allow reviews.","type":"boolean","required":false},"upsell_ids":{"description":"List of upsell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"variations":{"description":"List of variations.","type":"array","items":{"type":"object","properties":{"id":{"description":"Variation ID.","type":"integer","context":["view","edit"],"readonly":true},"date_created":{"description":"The date the variation was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the variation was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"permalink":{"description":"Variation URL.","type":"string","format":"uri","context":["view","edit"],"readonly":true},"sku":{"description":"Unique identifier.","type":"string","context":["view","edit"]},"price":{"description":"Current variation price.","type":"string","context":["view","edit"],"readonly":true},"regular_price":{"description":"Variation regular price.","type":"string","context":["view","edit"]},"sale_price":{"description":"Variation sale price.","type":"string","context":["view","edit"]},"date_on_sale_from":{"description":"Start date of sale price.","type":"string","context":["view","edit"]},"date_on_sale_to":{"description":"End date of sale price.","type":"string","context":["view","edit"]},"on_sale":{"description":"Shows if the variation is on sale.","type":"boolean","context":["view","edit"],"readonly":true},"purchasable":{"description":"Shows if the variation can be bought.","type":"boolean","context":["view","edit"],"readonly":true},"visible":{"description":"If the variation is visible.","type":"boolean","context":["view","edit"]},"virtual":{"description":"If the variation is virtual.","type":"boolean","default":false,"context":["view","edit"]},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","default":false,"context":["view","edit"]},"downloads":{"description":"List of downloadable files.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}}},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","default":null,"context":["view","edit"]},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","default":null,"context":["view","edit"]},"tax_status":{"description":"Tax status.","type":"string","default":"taxable","enum":["taxable","shipping","none"],"context":["view","edit"]},"tax_class":{"description":"Tax class.","type":"string","context":["view","edit"]},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"default":false,"context":["view","edit"]},"stock_quantity":{"description":"Stock quantity.","type":"integer","context":["view","edit"]},"in_stock":{"description":"Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","default":true,"context":["view","edit"]},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","default":"no","enum":["no","notify","yes"],"context":["view","edit"]},"backorders_allowed":{"description":"Shows if backorders are allowed.","type":"boolean","context":["view","edit"],"readonly":true},"backordered":{"description":"Shows if the variation is on backordered.","type":"boolean","context":["view","edit"],"readonly":true},"weight":{"description":"Variation weight (kg).","type":"string","context":["view","edit"]},"dimensions":{"description":"Variation dimensions.","type":"object","context":["view","edit"],"properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}}},"shipping_class":{"description":"Shipping class slug.","type":"string","context":["view","edit"]},"shipping_class_id":{"description":"Shipping class ID.","type":"integer","context":["view","edit"],"readonly":true},"image":{"description":"Variation image data.","type":"object","context":["view","edit"],"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"attributes":{"description":"List of attributes.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}}}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products"}]}},"\/wc\/v1\/products\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price.","type":"string","required":false},"date_on_sale_to":{"description":"End date of sale price.","type":"string","required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"download_type":{"description":"Download type, this controls the schema on the front-end.","type":"string","enum":["standard"],"required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"description":"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"upsell_ids":{"description":"List of upsell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"variations":{"description":"List of variations.","type":"array","items":{"type":"object","properties":{"id":{"description":"Variation ID.","type":"integer","context":["view","edit"],"readonly":true},"date_created":{"description":"The date the variation was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the variation was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"permalink":{"description":"Variation URL.","type":"string","format":"uri","context":["view","edit"],"readonly":true},"sku":{"description":"Unique identifier.","type":"string","context":["view","edit"]},"price":{"description":"Current variation price.","type":"string","context":["view","edit"],"readonly":true},"regular_price":{"description":"Variation regular price.","type":"string","context":["view","edit"]},"sale_price":{"description":"Variation sale price.","type":"string","context":["view","edit"]},"date_on_sale_from":{"description":"Start date of sale price.","type":"string","context":["view","edit"]},"date_on_sale_to":{"description":"End date of sale price.","type":"string","context":["view","edit"]},"on_sale":{"description":"Shows if the variation is on sale.","type":"boolean","context":["view","edit"],"readonly":true},"purchasable":{"description":"Shows if the variation can be bought.","type":"boolean","context":["view","edit"],"readonly":true},"visible":{"description":"If the variation is visible.","type":"boolean","context":["view","edit"]},"virtual":{"description":"If the variation is virtual.","type":"boolean","default":false,"context":["view","edit"]},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","default":false,"context":["view","edit"]},"downloads":{"description":"List of downloadable files.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}}},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","default":null,"context":["view","edit"]},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","default":null,"context":["view","edit"]},"tax_status":{"description":"Tax status.","type":"string","default":"taxable","enum":["taxable","shipping","none"],"context":["view","edit"]},"tax_class":{"description":"Tax class.","type":"string","context":["view","edit"]},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"default":false,"context":["view","edit"]},"stock_quantity":{"description":"Stock quantity.","type":"integer","context":["view","edit"]},"in_stock":{"description":"Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","default":true,"context":["view","edit"]},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","default":"no","enum":["no","notify","yes"],"context":["view","edit"]},"backorders_allowed":{"description":"Shows if backorders are allowed.","type":"boolean","context":["view","edit"],"readonly":true},"backordered":{"description":"Shows if the variation is on backordered.","type":"boolean","context":["view","edit"],"readonly":true},"weight":{"description":"Variation weight (kg).","type":"string","context":["view","edit"]},"dimensions":{"description":"Variation dimensions.","type":"object","context":["view","edit"],"properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}}},"shipping_class":{"description":"Shipping class slug.","type":"string","context":["view","edit"]},"shipping_class_id":{"description":"Shipping class ID.","type":"integer","context":["view","edit"],"readonly":true},"image":{"description":"Variation image data.","type":"object","context":["view","edit"],"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"attributes":{"description":"List of attributes.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}}}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"description":"Whether to bypass trash and force deletion.","type":"boolean","required":false}}}]},"\/wc\/v1\/products\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price.","type":"string","required":false},"date_on_sale_to":{"description":"End date of sale price.","type":"string","required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"download_type":{"description":"Download type, this controls the schema on the front-end.","type":"string","enum":["standard"],"required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"description":"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"upsell_ids":{"description":"List of upsell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"variations":{"description":"List of variations.","type":"array","items":{"type":"object","properties":{"id":{"description":"Variation ID.","type":"integer","context":["view","edit"],"readonly":true},"date_created":{"description":"The date the variation was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the variation was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"permalink":{"description":"Variation URL.","type":"string","format":"uri","context":["view","edit"],"readonly":true},"sku":{"description":"Unique identifier.","type":"string","context":["view","edit"]},"price":{"description":"Current variation price.","type":"string","context":["view","edit"],"readonly":true},"regular_price":{"description":"Variation regular price.","type":"string","context":["view","edit"]},"sale_price":{"description":"Variation sale price.","type":"string","context":["view","edit"]},"date_on_sale_from":{"description":"Start date of sale price.","type":"string","context":["view","edit"]},"date_on_sale_to":{"description":"End date of sale price.","type":"string","context":["view","edit"]},"on_sale":{"description":"Shows if the variation is on sale.","type":"boolean","context":["view","edit"],"readonly":true},"purchasable":{"description":"Shows if the variation can be bought.","type":"boolean","context":["view","edit"],"readonly":true},"visible":{"description":"If the variation is visible.","type":"boolean","context":["view","edit"]},"virtual":{"description":"If the variation is virtual.","type":"boolean","default":false,"context":["view","edit"]},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","default":false,"context":["view","edit"]},"downloads":{"description":"List of downloadable files.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}}},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","default":null,"context":["view","edit"]},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","default":null,"context":["view","edit"]},"tax_status":{"description":"Tax status.","type":"string","default":"taxable","enum":["taxable","shipping","none"],"context":["view","edit"]},"tax_class":{"description":"Tax class.","type":"string","context":["view","edit"]},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"default":false,"context":["view","edit"]},"stock_quantity":{"description":"Stock quantity.","type":"integer","context":["view","edit"]},"in_stock":{"description":"Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","default":true,"context":["view","edit"]},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","default":"no","enum":["no","notify","yes"],"context":["view","edit"]},"backorders_allowed":{"description":"Shows if backorders are allowed.","type":"boolean","context":["view","edit"],"readonly":true},"backordered":{"description":"Shows if the variation is on backordered.","type":"boolean","context":["view","edit"],"readonly":true},"weight":{"description":"Variation weight (kg).","type":"string","context":["view","edit"]},"dimensions":{"description":"Variation dimensions.","type":"object","context":["view","edit"],"properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}}},"shipping_class":{"description":"Shipping class slug.","type":"string","context":["view","edit"]},"shipping_class_id":{"description":"Shipping class ID.","type":"integer","context":["view","edit"],"readonly":true},"image":{"description":"Variation image data.","type":"object","context":["view","edit"],"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"attributes":{"description":"List of attributes.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}}}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/products\/batch"}]}},"\/wc\/v1\/reports\/sales":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"period":{"description":"Report period.","type":"string","enum":["week","month","last_month","year"],"required":false},"date_min":{"description":"Return sales for a specific start date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false},"date_max":{"description":"Return sales for a specific end date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/reports\/sales"}]}},"\/wc\/v1\/reports\/top_sellers":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"period":{"description":"Report period.","type":"string","enum":["week","month","last_month","year"],"required":false},"date_min":{"description":"Return sales for a specific start date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false},"date_max":{"description":"Return sales for a specific end date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/reports\/top_sellers"}]}},"\/wc\/v1\/reports":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/reports"}]}},"\/wc\/v1\/taxes\/classes":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Tax class name.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/taxes\/classes"}]}},"\/wc\/v1\/taxes\/classes\/(?P\\w[\\w\\s\\-]*)":{"namespace":"wc\/v1","methods":["DELETE"],"endpoints":[{"methods":["DELETE"],"args":{"slug":{"description":"Unique slug for the resource.","type":"string","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/taxes":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"order","description":"Sort collection by object attribute.","enum":["id","order","priority"],"type":"string","required":false},"class":{"description":"Sort by tax class.","enum":["standard","reduced-rate","zero-rate"],"type":"string","required":false}}},{"methods":["POST"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode \/ ZIP.","type":"string","required":false},"city":{"description":"City name.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"default":1,"description":"Tax priority.","type":"integer","required":false},"compound":{"default":false,"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"default":true,"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"default":"standard","description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/taxes"}]}},"\/wc\/v1\/taxes\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode \/ ZIP.","type":"string","required":false},"city":{"description":"City name.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/taxes\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode \/ ZIP.","type":"string","required":false},"city":{"description":"City name.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/taxes\/batch"}]}},"\/wc\/v1\/webhooks":{"namespace":"wc\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","title"],"required":false},"status":{"default":"all","description":"Limit result set to webhooks assigned a specific status.","type":"string","enum":["all","active","paused","disabled"],"required":false}}},{"methods":["POST"],"args":{"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"default":"active","description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"type":"string","description":"Webhook topic.","required":true},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false},"delivery_url":{"type":"string","description":"Webhook delivery URL.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/webhooks"}]}},"\/wc\/v1\/webhooks\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"description":"Webhook topic.","type":"string","required":false},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v1\/webhooks\/batch":{"namespace":"wc\/v1","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"description":"Webhook topic.","type":"string","required":false},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v1\/webhooks\/batch"}]}},"\/wc\/v1\/webhooks\/(?P[\\d]+)\/deliveries":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"webhook_id":{"description":"Unique identifier for the webhook.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/v1\/webhooks\/(?P[\\d]+)\/deliveries\/(?P[\\d]+)":{"namespace":"wc\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"webhook_id":{"description":"Unique identifier for the webhook.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/v2\/coupons":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"code":{"description":"Limit result set to resources with a specific code.","type":"string","required":false}}},{"methods":["POST"],"args":{"code":{"description":"Coupon code.","type":"string","required":true},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"default":"fixed_cart","description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"default":false,"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"default":false,"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"default":false,"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/coupons"}]}},"\/wc\/v2\/coupons\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"code":{"description":"Coupon code.","type":"string","required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v2\/coupons\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"code":{"description":"Coupon code.","type":"string","required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/coupons\/batch"}]}},"\/wc\/v2\/customers\/(?P[\\d]+)\/downloads":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"customer_id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}]},"\/wc\/v2\/customers":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"name","description":"Sort collection by object attribute.","enum":["id","include","name","registered_date"],"type":"string","required":false},"email":{"description":"Limit result set to resources with a specific email.","type":"string","format":"email","required":false},"role":{"description":"Limit result set to resources with a specific role.","type":"string","default":"customer","enum":["all","administrator","editor","author","contributor","subscriber","customer","shop_manager"],"required":false}}},{"methods":["POST"],"args":{"email":{"type":"string","description":"New user email address.","required":true},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"New user username.","type":"string","required":false},"password":{"description":"New user password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]}},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/customers"}]}},"\/wc\/v2\/customers\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"email":{"description":"The email address for the customer.","type":"string","format":"email","required":false},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"Customer login name.","type":"string","required":false},"password":{"description":"Customer password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]}},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false},"reassign":{"default":0,"type":"integer","description":"ID to reassign posts to.","required":false}}}]},"\/wc\/v2\/customers\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"email":{"description":"The email address for the customer.","type":"string","format":"email","required":false},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"Customer login name.","type":"string","required":false},"password":{"description":"Customer password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]}},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/customers\/batch"}]}},"\/wc\/v2\/orders\/(?P[\\d]+)\/notes":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"type":{"default":"any","description":"Limit result to customers or internal notes.","type":"string","enum":["any","customer","internal"],"required":false}}},{"methods":["POST"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"note":{"type":"string","description":"Order note content.","required":true},"customer_note":{"default":false,"description":"If true, the note will be shown to customers and they will be notified. If false, the note will be for admin reference only.","type":"boolean","required":false}}}]},"\/wc\/v2\/orders\/(?P[\\d]+)\/notes\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"order_id":{"description":"The order ID.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/orders\/(?P[\\d]+)\/refunds":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false},"order_item_display_meta":{"default":false,"description":"Only show meta which is meant to be displayed for an order.","type":"boolean","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"amount":{"description":"Refund amount.","type":"string","required":false},"reason":{"description":"Reason for refund.","type":"string","required":false},"refunded_by":{"description":"User ID of user who created the refund.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"api_refund":{"default":true,"description":"When true, the payment gateway API is used to generate the refund.","type":"boolean","required":false}}}]},"\/wc\/v2\/orders\/(?P[\\d]+)\/refunds\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/orders":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"status":{"default":"any","description":"Limit result set to orders assigned a specific status.","type":"string","enum":["any","trash","auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"customer":{"description":"Limit result set to orders assigned a specific customer.","type":"integer","required":false},"product":{"description":"Limit result set to orders assigned a specific product.","type":"integer","required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false},"order_item_display_meta":{"default":false,"description":"Only show meta which is meant to be displayed for an order.","type":"boolean","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"status":{"default":"pending","description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"default":"USD","description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"default":0,"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"]},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"default":false,"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/orders"}]}},"\/wc\/v2\/orders\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"status":{"description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"]},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v2\/orders\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"status":{"description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"]},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/orders\/batch"}]}},"\/wc\/v2\/products\/attributes\/(?P[\\d]+)\/terms":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc\/v2\/products\/attributes\/(?P[\\d]+)\/terms\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/products\/attributes\/(?P[\\d]+)\/terms\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc\/v2\/products\/attributes":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Name for the resource.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"default":"select","description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"default":"menu_order","description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"default":false,"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/attributes"}]}},"\/wc\/v2\/products\/attributes\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/products\/attributes\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/attributes\/batch"}]}},"\/wc\/v2\/products\/categories":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"default":"default","description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/categories"}]}},"\/wc\/v2\/products\/categories\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/products\/categories\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"title":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/categories\/batch"}]}},"\/wc\/v2\/products\/(?P[\\d]+)\/reviews":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"review":{"type":"string","description":"Review content.","required":true},"date_created":{"description":"The date the review was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the review was created, as GMT.","type":["null","string"],"required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false},"name":{"type":"string","description":"Name of the reviewer.","required":true},"email":{"type":"string","description":"Email of the reviewer.","required":true}}}]},"\/wc\/v2\/products\/(?P[\\d]+)\/reviews\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"date_created":{"description":"The date the review was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the review was created, as GMT.","type":["null","string"],"required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false},"name":{"description":"Reviewer name.","type":"string","required":false},"email":{"description":"Reviewer email.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v2\/products\/(?P[\\d]+)\/reviews\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"date_created":{"description":"The date the review was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the review was created, as GMT.","type":["null","string"],"required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false},"name":{"description":"Reviewer name.","type":"string","required":false},"email":{"description":"Reviewer email.","type":"string","required":false}}}]},"\/wc\/v2\/products\/shipping_classes":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/shipping_classes"}]}},"\/wc\/v2\/products\/shipping_classes\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/products\/shipping_classes\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/shipping_classes\/batch"}]}},"\/wc\/v2\/products\/tags":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/tags"}]}},"\/wc\/v2\/products\/tags\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Tag name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/products\/tags\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Tag name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/tags\/batch"}]}},"\/wc\/v2\/products":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"in_stock":{"description":"Limit result set to products in stock or out of stock.","type":"boolean","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"type":{"default":"simple","description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"default":"publish","description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future"],"required":false},"featured":{"default":false,"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"default":"visible","description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, as GMT.","type":["null","string"],"required":false},"virtual":{"default":false,"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"default":true,"description":"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"sold_individually":{"default":false,"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"default":true,"description":"Allow reviews.","type":"boolean","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","context":["view","edit"],"items":{"type":"string"}}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"grouped_products":{"description":"List of grouped products ID.","type":"array","items":{"type":"integer"},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products"}]}},"\/wc\/v2\/products\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, as GMT.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"description":"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","context":["view","edit"],"items":{"type":"string"}}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"grouped_products":{"description":"List of grouped products ID.","type":"array","items":{"type":"integer"},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"description":"Whether to bypass trash and force deletion.","type":"boolean","required":false}}}]},"\/wc\/v2\/products\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, as GMT.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"description":"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","context":["view","edit"],"items":{"type":"string"}}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"grouped_products":{"description":"List of grouped products ID.","type":"array","items":{"type":"integer"},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/products\/batch"}]}},"\/wc\/v2\/products\/(?P[\\d]+)\/related":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false}}}]},"\/wc\/v2\/products\/(?P[\\d]+)\/variations":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"in_stock":{"description":"Limit result set to products in stock or out of stock.","type":"boolean","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, as GMT.","type":["null","string"],"required":false},"visible":{"default":true,"description":"Define if the variation is visible on the product's page.","type":"boolean","required":false},"virtual":{"default":false,"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at variation level.","type":["null","object","string","number","boolean","integer","array"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"default":true,"description":"Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc\/v2\/products\/(?P[\\d]+)\/variations\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, as GMT.","type":["null","string"],"required":false},"visible":{"description":"Define if the variation is visible on the product's page.","type":"boolean","required":false},"virtual":{"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at variation level.","type":["null","object","string","number","boolean","integer","array"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"description":"Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v2\/products\/(?P[\\d]+)\/variations\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Unique identifier.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, as GMT.","type":["null","string"],"required":false},"visible":{"description":"Define if the variation is visible on the product's page.","type":"boolean","required":false},"virtual":{"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at variation level.","type":["null","object","string","number","boolean","integer","array"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"in_stock":{"description":"Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend.","type":"boolean","required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]},"position":{"description":"Image position. 0 means that the image is featured.","type":"integer","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc\/v2\/reports\/sales":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"period":{"description":"Report period.","type":"string","enum":["week","month","last_month","year"],"required":false},"date_min":{"description":"Return sales for a specific start date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false},"date_max":{"description":"Return sales for a specific end date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/reports\/sales"}]}},"\/wc\/v2\/reports\/top_sellers":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"period":{"description":"Report period.","type":"string","enum":["week","month","last_month","year"],"required":false},"date_min":{"description":"Return sales for a specific start date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false},"date_max":{"description":"Return sales for a specific end date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/reports\/top_sellers"}]}},"\/wc\/v2\/reports":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/reports"}]}},"\/wc\/v2\/settings":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/settings"}]}},"\/wc\/v2\/settings\/(?P[\\w-]+)":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false}}}]},"\/wc\/v2\/settings\/(?P[\\w-]+)\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"value":{"description":"Setting value.","type":["null","object","string","number","boolean","integer","array"],"required":false}}}]},"\/wc\/v2\/settings\/(?P[\\w-]+)\/(?P[\\w-]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"id":{"description":"Unique identifier for the resource.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"value":{"description":"Setting value.","type":["null","object","string","number","boolean","integer","array"],"required":false}}}]},"\/wc\/v2\/shipping\/zones":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"name":{"type":"string","description":"Shipping zone name.","required":true},"order":{"description":"Shipping zone order.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/shipping\/zones"}]}},"\/wc\/v2\/shipping\/zones\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"name":{"description":"Shipping zone name.","type":"string","required":false},"order":{"description":"Shipping zone order.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v2\/shipping\/zones\/(?P[\\d]+)\/locations":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"code":{"description":"Shipping zone location code.","type":"string","required":false},"type":{"description":"Shipping zone location type.","type":"string","enum":["postcode","state","country","continent"],"required":false}}}]},"\/wc\/v2\/shipping\/zones\/(?P[\\d]+)\/methods":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false}}},{"methods":["POST"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"order":{"description":"Shipping method sort order.","type":"integer","required":false},"enabled":{"description":"Shipping method enabled status.","type":"boolean","required":false},"settings":{"description":"Shipping method settings.","type":"object","properties":{"id":{"description":"A unique identifier for the setting.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"A human readable label for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"description":{"description":"A human readable description for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"type":{"description":"Type of setting.","type":"string","context":["view","edit"],"enum":["text","email","number","color","password","textarea","select","multiselect","radio","image_width","checkbox"],"readonly":true},"value":{"description":"Setting value.","type":"string","context":["view","edit"]},"default":{"description":"Default value for the setting.","type":"string","context":["view","edit"],"readonly":true},"tip":{"description":"Additional help text shown to the user about the setting.","type":"string","context":["view","edit"],"readonly":true},"placeholder":{"description":"Placeholder text to be displayed in text inputs.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"method_id":{"description":"Shipping method ID.","required":true}}}]},"\/wc\/v2\/shipping\/zones\/(?P[\\d]+)\/methods\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"instance_id":{"description":"Unique ID for the instance.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"instance_id":{"description":"Unique ID for the instance.","type":"integer","required":false},"order":{"description":"Shipping method sort order.","type":"integer","required":false},"enabled":{"description":"Shipping method enabled status.","type":"boolean","required":false},"settings":{"description":"Shipping method settings.","type":"object","properties":{"id":{"description":"A unique identifier for the setting.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"A human readable label for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"description":{"description":"A human readable description for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"type":{"description":"Type of setting.","type":"string","context":["view","edit"],"enum":["text","email","number","color","password","textarea","select","multiselect","radio","image_width","checkbox"],"readonly":true},"value":{"description":"Setting value.","type":"string","context":["view","edit"]},"default":{"description":"Default value for the setting.","type":"string","context":["view","edit"],"readonly":true},"tip":{"description":"Additional help text shown to the user about the setting.","type":"string","context":["view","edit"],"readonly":true},"placeholder":{"description":"Placeholder text to be displayed in text inputs.","type":"string","context":["view","edit"],"readonly":true}},"required":false}}},{"methods":["DELETE"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"instance_id":{"description":"Unique ID for the instance.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v2\/taxes\/classes":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Tax class name.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/taxes\/classes"}]}},"\/wc\/v2\/taxes\/classes\/(?P\\w[\\w\\s\\-]*)":{"namespace":"wc\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"Unique slug for the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"slug":{"description":"Unique slug for the resource.","type":"string","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/taxes":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"order","description":"Sort collection by object attribute.","enum":["id","order","priority"],"type":"string","required":false},"class":{"description":"Sort by tax class.","enum":["standard","reduced-rate","zero-rate"],"type":"string","required":false}}},{"methods":["POST"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode \/ ZIP.","type":"string","required":false},"city":{"description":"City name.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"default":1,"description":"Tax priority.","type":"integer","required":false},"compound":{"default":false,"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"default":true,"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"default":"standard","description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/taxes"}]}},"\/wc\/v2\/taxes\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode \/ ZIP.","type":"string","required":false},"city":{"description":"City name.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/taxes\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode \/ ZIP.","type":"string","required":false},"city":{"description":"City name.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/taxes\/batch"}]}},"\/wc\/v2\/webhooks":{"namespace":"wc\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","title"],"required":false},"status":{"default":"all","description":"Limit result set to webhooks assigned a specific status.","type":"string","enum":["all","active","paused","disabled"],"required":false}}},{"methods":["POST"],"args":{"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"default":"active","description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"type":"string","description":"Webhook topic.","required":true},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false},"delivery_url":{"type":"string","description":"Webhook delivery URL.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/webhooks"}]}},"\/wc\/v2\/webhooks\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"description":"Webhook topic.","type":"string","required":false},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v2\/webhooks\/batch":{"namespace":"wc\/v2","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"description":"Webhook topic.","type":"string","required":false},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/webhooks\/batch"}]}},"\/wc\/v2\/webhooks\/(?P[\\d]+)\/deliveries":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"webhook_id":{"description":"Unique identifier for the webhook.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/v2\/webhooks\/(?P[\\d]+)\/deliveries\/(?P[\\d]+)":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"webhook_id":{"description":"Unique identifier for the webhook.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}]},"\/wc\/v2\/system_status":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/system_status"}]}},"\/wc\/v2\/system_status\/tools":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/system_status\/tools"}]}},"\/wc\/v2\/system_status\/tools\/(?P[\\w-]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"A unique identifier for the tool.","type":"string","required":false},"name":{"description":"Tool name.","type":"string","required":false},"action":{"description":"What running the tool will do.","type":"string","required":false},"description":{"description":"Tool description.","type":"string","required":false},"success":{"description":"Did the tool run successfully?","type":"boolean","required":false},"message":{"description":"Tool return message.","type":"string","required":false}}}]},"\/wc\/v2\/shipping_methods":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/shipping_methods"}]}},"\/wc\/v2\/shipping_methods\/(?P[\\w-]+)":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}]},"\/wc\/v2\/payment_gateways":{"namespace":"wc\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v2\/payment_gateways"}]}},"\/wc\/v2\/payment_gateways\/(?P[\\w-]+)":{"namespace":"wc\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"title":{"description":"Payment gateway title on checkout.","type":"string","required":false},"description":{"description":"Payment gateway description on checkout.","type":"string","required":false},"order":{"description":"Payment gateway sort order.","type":"integer","required":false},"enabled":{"description":"Payment gateway enabled status.","type":"boolean","required":false},"settings":{"description":"Payment gateway settings.","type":"object","properties":{"id":{"description":"A unique identifier for the setting.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"A human readable label for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"description":{"description":"A human readable description for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"type":{"description":"Type of setting.","type":"string","context":["view","edit"],"enum":["text","email","number","color","password","textarea","select","multiselect","radio","image_width","checkbox"],"readonly":true},"value":{"description":"Setting value.","type":"string","context":["view","edit"]},"default":{"description":"Default value for the setting.","type":"string","context":["view","edit"],"readonly":true},"tip":{"description":"Additional help text shown to the user about the setting.","type":"string","context":["view","edit"],"readonly":true},"placeholder":{"description":"Placeholder text to be displayed in text inputs.","type":"string","context":["view","edit"],"readonly":true}},"required":false}}}]},"\/wc\/v3\/coupons":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"code":{"description":"Limit result set to resources with a specific code.","type":"string","required":false}}},{"methods":["POST"],"args":{"code":{"description":"Coupon code.","type":"string","required":true},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"default":"fixed_cart","description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"default":false,"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"default":false,"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"default":false,"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/coupons"}]}},"\/wc\/v3\/coupons\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"code":{"description":"Coupon code.","type":"string","required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v3\/coupons\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"code":{"description":"Coupon code.","type":"string","required":false},"amount":{"description":"The amount of discount. Should always be numeric, even if setting a percentage.","type":["number","string"],"required":false},"status":{"description":"The status of the coupon. Should always be draft, published, or pending review","type":"string","required":false},"discount_type":{"description":"Determines the type of discount that will be applied.","type":"string","enum":["percent","fixed_cart","fixed_product"],"required":false},"description":{"description":"Coupon description.","type":"string","required":false},"date_expires":{"description":"The date the coupon expires, in the site's timezone.","type":["null","string"],"required":false},"date_expires_gmt":{"description":"The date the coupon expires, as GMT.","type":["null","string"],"required":false},"individual_use":{"description":"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.","type":"boolean","required":false},"product_ids":{"description":"List of product IDs the coupon can be used on.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_ids":{"description":"List of product IDs the coupon cannot be used on.","type":"array","items":{"type":"integer"},"required":false},"usage_limit":{"description":"How many times the coupon can be used in total.","type":"integer","required":false},"usage_limit_per_user":{"description":"How many times the coupon can be used per customer.","type":"integer","required":false},"limit_usage_to_x_items":{"description":"Max number of items in the cart the coupon can be applied to.","type":"integer","required":false},"free_shipping":{"description":"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.","type":"boolean","required":false},"product_categories":{"description":"List of category IDs the coupon applies to.","type":"array","items":{"type":"integer"},"required":false},"excluded_product_categories":{"description":"List of category IDs the coupon does not apply to.","type":"array","items":{"type":"integer"},"required":false},"exclude_sale_items":{"description":"If true, this coupon will not be applied to items that have sale prices.","type":"boolean","required":false},"minimum_amount":{"description":"Minimum order amount that needs to be in the cart before coupon applies.","type":["number","string"],"required":false},"maximum_amount":{"description":"Maximum order amount allowed when using the coupon.","type":["number","string"],"required":false},"email_restrictions":{"description":"List of email addresses that can use this coupon.","type":"array","items":{"type":"string"},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/coupons\/batch"}]}},"\/wc\/v3\/customers\/(?P[\\d]+)\/downloads":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"customer_id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}]},"\/wc\/v3\/customers":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"name","description":"Sort collection by object attribute.","enum":["id","include","name","registered_date"],"type":"string","required":false},"email":{"description":"Limit result set to resources with a specific email.","type":"string","format":"email","required":false},"role":{"description":"Limit result set to resources with a specific role.","type":"string","default":"customer","enum":["all","administrator","editor","author","contributor","subscriber","customer","shop_manager"],"required":false}}},{"methods":["POST"],"args":{"email":{"type":"string","description":"New user email address.","required":true},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"New user username.","type":"string","required":false},"password":{"description":"New user password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/customers"}]}},"\/wc\/v3\/customers\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"email":{"description":"The email address for the customer.","type":"string","format":"email","required":false},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"Customer login name.","type":"string","required":false},"password":{"description":"Customer password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false},"reassign":{"default":0,"type":"integer","description":"ID to reassign posts to.","required":false}}}]},"\/wc\/v3\/customers\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"email":{"description":"The email address for the customer.","type":"string","format":"email","required":false},"first_name":{"description":"Customer first name.","type":"string","required":false},"last_name":{"description":"Customer last name.","type":"string","required":false},"username":{"description":"Customer login name.","type":"string","required":false},"password":{"description":"Customer password.","type":"string","required":false},"billing":{"description":"List of billing address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":"string","format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"List of shipping address data.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"ISO code of the country.","type":"string","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/customers\/batch"}]}},"\/wc\/v3\/layout-templates":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"area":{"description":"Area to get templates for.","type":"string","default":"","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/layout-templates"}]}},"\/wc\/v3\/layout-templates\/(?P\\w[\\w\\s\\-]*)":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/notes":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"type":{"default":"any","description":"Limit result to customers or internal notes.","type":"string","enum":["any","customer","internal"],"required":false}}},{"methods":["POST"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"note":{"type":"string","description":"Order note content.","required":true},"customer_note":{"default":false,"description":"If true, the note will be shown to customers and they will be notified. If false, the note will be for admin reference only.","type":"boolean","required":false},"added_by_user":{"default":false,"description":"If true, this note will be attributed to the current user. If false, the note will be attributed to the system.","type":"boolean","required":false}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/notes\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"order_id":{"description":"The order ID.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/refunds":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false},"order_item_display_meta":{"default":false,"description":"Only show meta which is meant to be displayed for an order.","type":"boolean","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"amount":{"description":"Refund amount.","type":"string","required":false},"reason":{"description":"Reason for refund.","type":"string","required":false},"refunded_by":{"description":"User ID of user who created the refund.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"api_refund":{"default":true,"description":"When true, the payment gateway API is used to generate the refund.","type":"boolean","required":false},"api_restock":{"default":true,"description":"When true, refunded items are restocked.","type":"boolean","required":false}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/refunds\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"order_id":{"description":"The order ID.","type":"integer","required":false},"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/orders":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"status":{"default":"any","description":"Limit result set to orders which have specific statuses.","type":"array","items":{"type":"string","enum":["any","trash","auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"]},"required":false},"customer":{"description":"Limit result set to orders assigned a specific customer.","type":"integer","required":false},"product":{"description":"Limit result set to orders assigned a specific product.","type":"integer","required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false},"order_item_display_meta":{"default":false,"description":"Only show meta which is meant to be displayed for an order.","type":"boolean","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"created_via":{"description":"Limit result set to orders created via specific sources (e.g. checkout, admin).","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"created_via":{"description":"Shows where the order was created.","type":"string","required":false},"status":{"default":"pending","description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"default":"USD","description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"default":0,"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"],"readonly":true},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"default":false,"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"manual_update":{"default":false,"description":"Set the action as manual so that the order note registers as \"added by user\".","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/orders"}]}},"\/wc\/v3\/orders\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"created_via":{"description":"Shows where the order was created.","type":"string","required":false},"status":{"description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"],"readonly":true},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"manual_update":{"description":"Set the action as manual so that the order note registers as \"added by user\".","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v3\/orders\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"parent_id":{"description":"Parent order ID.","type":"integer","required":false},"created_via":{"description":"Shows where the order was created.","type":"string","required":false},"status":{"description":"Order status.","type":"string","enum":["auto-draft","pending","processing","on-hold","completed","cancelled","refunded","failed","checkout-draft"],"required":false},"currency":{"description":"Currency the order was created with, in ISO format.","type":"string","enum":["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BHD","BIF","BMD","BND","BOB","BRL","BSD","BTC","BTN","BWP","BYR","BYN","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CUC","CUP","CVE","CZK","DJF","DKK","DOP","DZD","EGP","ERN","ETB","EUR","FJD","FKP","GBP","GEL","GGP","GHS","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","IMP","INR","IQD","IRR","IRT","ISK","JEP","JMD","JOD","JPY","KES","KGS","KHR","KMF","KPW","KRW","KWD","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LYD","MAD","MDL","MGA","MKD","MMK","MNT","MOP","MRU","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","OMR","PAB","PEN","PGK","PHP","PKR","PLN","PRB","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SDG","SEK","SGD","SHP","SLL","SOS","SRD","SSP","STN","SYP","SZL","THB","TJS","TMT","TND","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VEF","VES","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"],"required":false},"customer_id":{"description":"User ID who owns the order. 0 for guests.","type":"integer","required":false},"customer_note":{"description":"Note left by customer during checkout.","type":"string","required":false},"billing":{"description":"Billing address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]},"email":{"description":"Email address.","type":["string","null"],"format":"email","context":["view","edit"]},"phone":{"description":"Phone number.","type":"string","context":["view","edit"]}},"required":false},"shipping":{"description":"Shipping address.","type":"object","properties":{"first_name":{"description":"First name.","type":"string","context":["view","edit"]},"last_name":{"description":"Last name.","type":"string","context":["view","edit"]},"company":{"description":"Company name.","type":"string","context":["view","edit"]},"address_1":{"description":"Address line 1","type":"string","context":["view","edit"]},"address_2":{"description":"Address line 2","type":"string","context":["view","edit"]},"city":{"description":"City name.","type":"string","context":["view","edit"]},"state":{"description":"ISO code or name of the state, province or district.","type":"string","context":["view","edit"]},"postcode":{"description":"Postal code.","type":"string","context":["view","edit"]},"country":{"description":"Country code in ISO 3166-1 alpha-2 format.","type":"string","context":["view","edit"]}},"required":false},"payment_method":{"description":"Payment method ID.","type":"string","required":false},"payment_method_title":{"description":"Payment method title.","type":"string","required":false},"transaction_id":{"description":"Unique transaction ID.","type":"string","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false},"line_items":{"description":"Line items data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Product name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"parent_name":{"description":"Parent product name if the product is a variation.","type":"string","context":["view","edit"]},"product_id":{"description":"Product ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"variation_id":{"description":"Variation ID, if applicable.","type":"integer","context":["view","edit"]},"quantity":{"description":"Quantity ordered.","type":"integer","context":["view","edit"]},"tax_class":{"description":"Tax class of product.","type":"string","context":["view","edit"]},"subtotal":{"description":"Line subtotal (before discounts).","type":"string","context":["view","edit"]},"subtotal_tax":{"description":"Line subtotal tax (before discounts).","type":"string","context":["view","edit"],"readonly":true},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"]},"total":{"description":"Tax total.","type":"string","context":["view","edit"]},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"]}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"display_key":{"description":"Meta key for UI display.","type":"string","context":["view","edit"]},"display_value":{"description":"Meta value for UI display.","type":"string","context":["view","edit"]}}}},"sku":{"description":"Product SKU.","type":"string","context":["view","edit"],"readonly":true},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","context":["view","edit"],"readonly":true},"price":{"description":"Product price.","type":"number","context":["view","edit"],"readonly":true},"image":{"description":"Properties of the main product image.","type":"object","context":["view","edit"],"readonly":true,"properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]}}}}},"required":false},"shipping_lines":{"description":"Shipping lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"method_title":{"description":"Shipping method name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"method_id":{"description":"Shipping method ID.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"instance_id":{"description":"Shipping instance ID.","type":"string","context":["view","edit"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"fee_lines":{"description":"Fee lines data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"name":{"description":"Fee name.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"tax_class":{"description":"Tax class of fee.","type":"string","context":["view","edit"]},"tax_status":{"description":"Tax status of fee.","type":"string","context":["view","edit"],"enum":["taxable","none"]},"total":{"description":"Line total (after discounts).","type":"string","context":["view","edit"]},"total_tax":{"description":"Line total tax (after discounts).","type":"string","context":["view","edit"],"readonly":true},"taxes":{"description":"Line taxes.","type":"array","context":["view","edit"],"readonly":true,"items":{"type":"object","properties":{"id":{"description":"Tax rate ID.","type":"integer","context":["view","edit"],"readonly":true},"total":{"description":"Tax total.","type":"string","context":["view","edit"],"readonly":true},"subtotal":{"description":"Tax subtotal.","type":"string","context":["view","edit"],"readonly":true}}}},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"coupon_lines":{"description":"Coupons line data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Item ID.","type":"integer","context":["view","edit"],"readonly":true},"code":{"description":"Coupon code.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]},"discount":{"description":"Discount total.","type":"string","context":["view","edit"],"readonly":true},"discount_tax":{"description":"Discount total tax.","type":"string","context":["view","edit"],"readonly":true},"discount_type":{"description":"Discount type.","type":"string","context":["view"],"readonly":true},"nominal_amount":{"description":"Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).","type":"number","context":["view"],"readonly":true},"free_shipping":{"description":"Whether the coupon grants free shipping or not.","type":"boolean","context":["view"],"readonly":true},"meta_data":{"description":"Meta data.","type":"array","context":["view","edit"],"items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}}},"required":false},"set_paid":{"description":"Define if the order is paid. It will set the status to processing and reduce stock items.","type":"boolean","required":false},"manual_update":{"description":"Set the action as manual so that the order note registers as \"added by user\".","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/orders\/batch"}]}},"\/wc\/v3\/products\/attributes\/(?P[\\d]+)\/terms":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc\/v3\/products\/attributes\/(?P[\\d]+)\/terms\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/products\/attributes\/(?P[\\d]+)\/terms\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"attribute_id":{"description":"Unique identifier for the attribute of the terms.","type":"integer","required":false},"name":{"description":"Term name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}]},"\/wc\/v3\/products\/attributes":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Name for the resource.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"default":"select","description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"default":"menu_order","description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"default":false,"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/attributes"}]}},"\/wc\/v3\/products\/attributes\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":true,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/products\/attributes\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Attribute name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"type":{"description":"Type of attribute.","type":"string","enum":["select"],"required":false},"order_by":{"description":"Default sort order.","type":"string","enum":["menu_order","name","name_num","id"],"required":false},"has_archives":{"description":"Enable\/Disable attribute archives.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/attributes\/batch"}]}},"\/wc\/v3\/products\/categories":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"default":"default","description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/categories"}]}},"\/wc\/v3\/products\/categories\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/products\/categories\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Category name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"parent":{"description":"The ID for the parent of the resource.","type":"integer","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false},"display":{"description":"Category archive display type.","type":"string","enum":["default","products","subcategories","both"],"required":false},"image":{"description":"Image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"menu_order":{"description":"Menu order, used to custom sort the resource.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/categories\/batch"}]}},"\/wc\/v3\/products\/custom-fields\/names":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"order":{"description":"Order sort items ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/custom-fields\/names"}]}},"\/wc\/v3\/products\/reviews":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to reviews published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date_gmt","enum":["date","date_gmt","id","include","product"],"required":false},"reviewer":{"description":"Limit result set to reviews assigned to specific user IDs.","type":"array","items":{"type":"integer"},"required":false},"reviewer_exclude":{"description":"Ensure result set excludes reviews assigned to specific user IDs.","type":"array","items":{"type":"integer"},"required":false},"reviewer_email":{"default":null,"description":"Limit result set to that from a specific author email.","format":"email","type":"string","required":false},"product":{"default":[],"description":"Limit result set to reviews assigned to specific product IDs.","type":"array","items":{"type":"integer"},"required":false},"status":{"default":"approved","description":"Limit result set to reviews assigned a specific status.","type":"string","enum":["all","hold","approved","spam","trash"],"required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the product.","type":"integer","required":true},"product_name":{"description":"Product name.","type":"string","required":false},"status":{"default":"approved","description":"Status of the review.","type":"string","enum":["approved","hold","spam","unspam","trash","untrash"],"required":false},"reviewer":{"type":"string","description":"Name of the reviewer.","required":true},"reviewer_email":{"type":"string","description":"Email of the reviewer.","required":true},"review":{"type":"string","description":"Review content.","required":true},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/reviews"}]}},"\/wc\/v3\/products\/reviews\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"product_id":{"description":"Unique identifier for the product that the review belongs to.","type":"integer","required":false},"product_name":{"description":"Product name.","type":"string","required":false},"status":{"description":"Status of the review.","type":"string","enum":["approved","hold","spam","unspam","trash","untrash"],"required":false},"reviewer":{"description":"Reviewer name.","type":"string","required":false},"reviewer_email":{"description":"Reviewer email.","type":"string","format":"email","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v3\/products\/reviews\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the product that the review belongs to.","type":"integer","required":false},"product_name":{"description":"Product name.","type":"string","required":false},"status":{"description":"Status of the review.","type":"string","enum":["approved","hold","spam","unspam","trash","untrash"],"required":false},"reviewer":{"description":"Reviewer name.","type":"string","required":false},"reviewer_email":{"description":"Reviewer email.","type":"string","format":"email","required":false},"review":{"description":"The content of the review.","type":"string","required":false},"rating":{"description":"Review rating (0 to 5).","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/reviews\/batch"}]}},"\/wc\/v3\/products\/shipping_classes":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/shipping_classes"}]}},"\/wc\/v3\/products\/shipping_classes\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/products\/shipping_classes\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/shipping_classes\/batch"}]}},"\/wc\/v3\/products\/shipping_classes\/slug-suggestion":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"description":"Shipping class name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/shipping_classes\/slug-suggestion"}]}},"\/wc\/v3\/products\/tags":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by resource attribute.","type":"string","default":"name","enum":["id","include","name","slug","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide resources not assigned to any products.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.","type":"integer","required":false},"product":{"description":"Limit result set to resources assigned to a specific product.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to resources with a specific slug.","type":"string","required":false}}},{"methods":["POST"],"args":{"name":{"type":"string","description":"Name for the resource.","required":true},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/tags"}]}},"\/wc\/v3\/products\/tags\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Tag name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/products\/tags\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Tag name.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the resource unique to its type.","type":"string","required":false},"description":{"description":"HTML description of the resource.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/tags\/batch"}]}},"\/wc\/v3\/products":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating","menu_order","price","popularity","rating"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"search_sku":{"description":"Limit results to those with a SKU that partial matches a string. This argument takes precedence over 'sku'.","type":"string","required":false},"search_name_or_sku":{"description":"Limit results to those with a name or SKU that partial matches a string. This argument takes precedence over 'search', 'sku' and 'search_sku'.","type":"string","required":false},"search_fields":{"description":"Limit search to specific fields when used with search parameter. Available fields: name, sku, global_unique_id, description, short_description. This argument takes precedence over all other search parameters.","type":"array","items":{"type":"string","enum":["name","global_unique_id","description","short_description","sku"]},"default":[],"required":false},"include_status":{"description":"Limit result set to products with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude products with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"include_types":{"description":"Limit result set to products with any of the types.","type":"array","items":{"type":"string","enum":["simple","grouped","external","variable"]},"required":false},"exclude_types":{"description":"Exclude products with any of the types from result set.","type":"array","items":{"type":"string","enum":["simple","grouped","external","variable"]},"required":false},"downloadable":{"description":"Limit result set to downloadable products.","type":"boolean","required":false},"virtual":{"description":"Limit result set to virtual products.","type":"boolean","required":false},"pos_products_only":{"description":"Limit result set to products visible in Point of Sale.","type":"boolean","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"default":"simple","description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"default":"publish","description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"default":false,"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"default":"visible","description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"default":false,"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"default":"instock","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"default":false,"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"default":true,"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products"}]}},"\/wc\/v3\/products\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"description":"Whether to bypass trash and force deletion.","type":"boolean","required":false}}}]},"\/wc\/v3\/products\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/batch"}]}},"\/wc\/v3\/products\/(?P[\\d]+)\/related":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false}}}]},"\/wc\/v3\/products\/suggested-products":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"type":{"description":"Limit result set to products assigned a specific type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"featured":{"description":"Limit result set to featured products.","type":"boolean","required":false},"category":{"description":"Limit result set to products assigned a specific category ID.","type":"string","required":false},"tag":{"description":"Limit result set to products assigned a specific tag ID.","type":"string","required":false},"shipping_class":{"description":"Limit result set to products assigned a specific shipping class ID.","type":"string","required":false},"attribute":{"description":"Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.","type":"string","required":false},"attribute_term":{"description":"Limit result set to products with a specific attribute term ID (required an assigned attribute).","type":"string","required":false},"in_stock":{"description":"Limit result set to products in stock or out of stock.","type":"boolean","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"categories":{"description":"Limit result set to specific product categorie ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"tags":{"description":"Limit result set to specific product tag ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"limit":{"description":"Limit result set to specific amount of suggested products.","type":"integer","default":5,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/products\/suggested-products"}]}},"\/wc\/v3\/products\/(?P[\\d]+)\/duplicate":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"Product name.","type":"string","required":false},"slug":{"description":"Product slug.","type":"string","required":false},"date_created":{"description":"The date the product was created, in the site's timezone.","type":["null","string"],"required":false},"date_created_gmt":{"description":"The date the product was created, as GMT.","type":["null","string"],"required":false},"type":{"description":"Product type.","type":"string","enum":["simple","grouped","external","variable"],"required":false},"status":{"description":"Product status (post status).","type":"string","enum":["draft","pending","private","publish","future","auto-draft","trash"],"required":false},"featured":{"description":"Featured product.","type":"boolean","required":false},"catalog_visibility":{"description":"Catalog visibility.","type":"string","enum":["visible","catalog","search","hidden"],"required":false},"description":{"description":"Product description.","type":"string","required":false},"short_description":{"description":"Product short description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Product regular price.","type":"string","required":false},"sale_price":{"description":"Product sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"virtual":{"description":"If the product is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the product is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"external_url":{"description":"Product external URL. Only for external products.","type":"string","format":"uri","required":false},"button_text":{"description":"Product external button text. Only for external products.","type":"string","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at product level.","type":"boolean","required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the product.","type":["integer","null"],"required":false},"sold_individually":{"description":"Allow one item to be bought in a single order.","type":"boolean","required":false},"weight":{"description":"Product weight (kg).","type":"string","required":false},"dimensions":{"description":"Product dimensions.","type":"object","properties":{"length":{"description":"Product length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Product width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Product height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"reviews_allowed":{"description":"Allow reviews.","type":"boolean","required":false},"post_password":{"description":"Post password.","type":"string","required":false},"upsell_ids":{"description":"List of up-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"cross_sell_ids":{"description":"List of cross-sell products IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_id":{"description":"Product parent ID.","type":"integer","required":false},"purchase_note":{"description":"Optional note to send the customer after purchase.","type":"string","required":false},"categories":{"description":"List of categories.","type":"array","items":{"type":"object","properties":{"id":{"description":"Category ID.","type":"integer","context":["view","edit"]},"name":{"description":"Category name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Category slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"brands":{"description":"List of brands.","type":"array","items":{"type":"object","properties":{"id":{"description":"Brand ID.","type":"integer","context":["view","edit"]},"name":{"description":"Brand name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Brand slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"tags":{"description":"List of tags.","type":"array","items":{"type":"object","properties":{"id":{"description":"Tag ID.","type":"integer","context":["view","edit"]},"name":{"description":"Tag name.","type":"string","context":["view","edit"],"readonly":true},"slug":{"description":"Tag slug.","type":"string","context":["view","edit"],"readonly":true}}},"required":false},"images":{"description":"List of images.","type":"array","items":{"type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"position":{"description":"Attribute position.","type":"integer","context":["view","edit"]},"visible":{"description":"Define if the attribute is visible on the \"Additional information\" tab in the product's page.","type":"boolean","default":false,"context":["view","edit"]},"variation":{"description":"Define if the attribute can be used as variation.","type":"boolean","default":false,"context":["view","edit"]},"options":{"description":"List of available term names of the attribute.","type":"array","items":{"type":"string"},"context":["view","edit"]}}},"required":false},"default_attributes":{"description":"Defaults variation attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc\/v3\/products\/(?P[\\d]+)\/variations":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"has_price":{"description":"Limit result set to products with or without price.","type":"boolean","required":false},"attributes":{"description":"Limit result set to products with specified attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"type":"string","description":"Attribute slug."},"term":{"type":"string","description":"Attribute term."},"terms":{"type":"array","description":"Attribute terms."}}},"required":false},"virtual":{"description":"Limit result set to virtual product variations.","type":"boolean","required":false},"downloadable":{"description":"Limit result set to downloadable product variations.","type":"boolean","required":false},"include_status":{"description":"Limit result set to product variations with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude product variations with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"pos_products_only":{"description":"Limit result set to variations visible in Point of Sale.","type":"boolean","required":false}}},{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"default":"publish","description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"default":false,"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"default":"instock","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc\/v3\/products\/(?P[\\d]+)\/variations\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}},{"methods":["DELETE"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"id":{"description":"Unique identifier for the variation.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v3\/products\/(?P[\\d]+)\/variations\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc\/v3\/products\/(?P[\\d]+)\/variations\/generate":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"product_id":{"description":"Unique identifier for the variable product.","type":"integer","required":false},"delete":{"description":"Deletes unused variations.","type":"boolean","required":false},"default_values":{"description":"Default values for generated variations.","type":"object","properties":{"description":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation description.","type":"string"},"sku":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Stock Keeping Unit.","type":"string"},"global_unique_id":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"GTIN, UPC, EAN or ISBN.","type":"string"},"regular_price":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation regular price.","type":"string"},"sale_price":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation sale price.","type":"string"},"date_on_sale_from":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Start date of sale price, in the site's timezone.","type":["null","string"]},"date_on_sale_from_gmt":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Start date of sale price, as GMT.","type":["null","string"]},"date_on_sale_to":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"End date of sale price, in the site's timezone.","type":["null","string"]},"date_on_sale_to_gmt":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"End date of sale price, in the site's timezone.","type":["null","string"]},"status":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation status.","type":"string","enum":["draft","pending","private","publish"]},"virtual":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"If the variation is virtual.","type":"boolean"},"downloadable":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"If the variation is downloadable.","type":"boolean"},"downloads":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}}},"download_limit":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Number of times downloadable files can be downloaded after purchase.","type":"integer"},"download_expiry":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Number of days until access to downloadable files expires.","type":"integer"},"tax_status":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Tax status.","type":"string","enum":["taxable","shipping","none"]},"tax_class":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Tax class.","type":"string"},"manage_stock":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Stock management at variation level.","type":["boolean","string"]},"stock_quantity":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Stock quantity.","type":"integer"},"stock_status":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"]},"backorders":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"]},"low_stock_amount":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Low Stock amount for the variation.","type":["integer","null"]},"weight":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation weight (kg).","type":"string"},"dimensions":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}}},"shipping_class":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Shipping class slug.","type":"string"},"image":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}}},"attributes":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}}},"menu_order":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Menu order, used to custom sort products.","type":"integer"},"meta_data":{"validate_callback":"rest_validate_request_arg","sanitize_callback":"rest_sanitize_request_arg","description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}}}},"required":false},"description":{"description":"Variation description.","type":"string","required":false},"sku":{"description":"Stock Keeping Unit.","type":"string","required":false},"global_unique_id":{"description":"GTIN, UPC, EAN or ISBN.","type":"string","required":false},"regular_price":{"description":"Variation regular price.","type":"string","required":false},"sale_price":{"description":"Variation sale price.","type":"string","required":false},"date_on_sale_from":{"description":"Start date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_from_gmt":{"description":"Start date of sale price, as GMT.","type":["null","string"],"required":false},"date_on_sale_to":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"date_on_sale_to_gmt":{"description":"End date of sale price, in the site's timezone.","type":["null","string"],"required":false},"status":{"default":"publish","description":"Variation status.","type":"string","enum":["draft","pending","private","publish"],"required":false},"virtual":{"default":false,"description":"If the variation is virtual.","type":"boolean","required":false},"downloadable":{"default":false,"description":"If the variation is downloadable.","type":"boolean","required":false},"downloads":{"description":"List of downloadable files.","type":"array","items":{"type":"object","properties":{"id":{"description":"File ID.","type":"string","context":["view","edit"]},"name":{"description":"File name.","type":"string","context":["view","edit"]},"file":{"description":"File URL.","type":"string","context":["view","edit"]}}},"required":false},"download_limit":{"default":-1,"description":"Number of times downloadable files can be downloaded after purchase.","type":"integer","required":false},"download_expiry":{"default":-1,"description":"Number of days until access to downloadable files expires.","type":"integer","required":false},"tax_status":{"default":"taxable","description":"Tax status.","type":"string","enum":["taxable","shipping","none"],"required":false},"tax_class":{"description":"Tax class.","type":"string","required":false},"manage_stock":{"default":false,"description":"Stock management at variation level.","type":["boolean","string"],"required":false},"stock_quantity":{"description":"Stock quantity.","type":"integer","required":false},"stock_status":{"default":"instock","description":"Controls the stock status of the product.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"backorders":{"default":"no","description":"If managing stock, this controls if backorders are allowed.","type":"string","enum":["no","notify","yes"],"required":false},"low_stock_amount":{"description":"Low Stock amount for the variation.","type":["integer","null"],"required":false},"weight":{"description":"Variation weight (kg).","type":"string","required":false},"dimensions":{"description":"Variation dimensions.","type":"object","properties":{"length":{"description":"Variation length (cm).","type":"string","context":["view","edit"]},"width":{"description":"Variation width (cm).","type":"string","context":["view","edit"]},"height":{"description":"Variation height (cm).","type":"string","context":["view","edit"]}},"required":false},"shipping_class":{"description":"Shipping class slug.","type":"string","required":false},"image":{"description":"Variation image data.","type":"object","properties":{"id":{"description":"Image ID.","type":"integer","context":["view","edit"]},"date_created":{"description":"The date the image was created, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_created_gmt":{"description":"The date the image was created, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified":{"description":"The date the image was last modified, in the site's timezone.","type":["null","string"],"context":["view","edit"],"readonly":true},"date_modified_gmt":{"description":"The date the image was last modified, as GMT.","type":["null","string"],"context":["view","edit"],"readonly":true},"src":{"description":"Image URL.","type":"string","format":"uri","context":["view","edit"]},"name":{"description":"Image name.","type":"string","context":["view","edit"]},"alt":{"description":"Image alternative text.","type":"string","context":["view","edit"]}},"required":false},"attributes":{"description":"List of attributes.","type":"array","items":{"type":"object","properties":{"id":{"description":"Attribute ID.","type":"integer","context":["view","edit"]},"name":{"description":"Attribute name.","type":"string","context":["view","edit"]},"option":{"description":"Selected attribute term name.","type":"string","context":["view","edit"]}}},"required":false},"menu_order":{"description":"Menu order, used to custom sort products.","type":"integer","required":false},"meta_data":{"description":"Meta data.","type":"array","items":{"type":"object","properties":{"id":{"description":"Meta ID.","type":"integer","context":["view","edit"],"readonly":true},"key":{"description":"Meta key.","type":"string","context":["view","edit"]},"value":{"description":"Meta value.","type":["null","object","string","number","boolean","integer","array"],"context":["view","edit"]}}},"required":false}}}]},"\/wc\/v3\/refunds":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"dp":{"default":2,"description":"Number of decimal points to use in each resource.","type":"integer","required":false},"order_item_display_meta":{"default":false,"description":"Only show meta which is meant to be displayed for an order.","type":"boolean","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/refunds"}]}},"\/wc\/v3\/reports\/sales":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"period":{"description":"Report period.","type":"string","enum":["week","month","last_month","year"],"required":false},"date_min":{"description":"Return sales for a specific start date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false},"date_max":{"description":"Return sales for a specific end date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/sales"}]}},"\/wc\/v3\/reports\/top_sellers":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"period":{"description":"Report period.","type":"string","enum":["week","month","last_month","year"],"required":false},"date_min":{"description":"Return sales for a specific start date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false},"date_max":{"description":"Return sales for a specific end date, the date need to be in the YYYY-MM-DD format.","type":"string","format":"date","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/top_sellers"}]}},"\/wc\/v3\/reports\/orders\/totals":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/orders\/totals"}]}},"\/wc\/v3\/reports\/products\/totals":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/products\/totals"}]}},"\/wc\/v3\/reports\/customers\/totals":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/customers\/totals"}]}},"\/wc\/v3\/reports\/coupons\/totals":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/coupons\/totals"}]}},"\/wc\/v3\/reports\/reviews\/totals":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports\/reviews\/totals"}]}},"\/wc\/v3\/reports":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/reports"}]}},"\/wc\/v3\/settings":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/settings"}]}},"\/wc\/v3\/settings\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/settings\/batch"}]}},"\/wc\/v3\/settings\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false}}}]},"\/wc\/v3\/settings\/(?P[\\w-]+)\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"value":{"description":"Setting value.","type":["null","object","string","number","boolean","integer","array"],"required":false}}}]},"\/wc\/v3\/settings\/(?P[\\w-]+)\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"id":{"description":"Unique identifier for the resource.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"group":{"description":"Settings group ID.","type":"string","required":false},"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"value":{"description":"Setting value.","type":["null","object","string","number","boolean","integer","array"],"required":false}}}]},"\/wc\/v3\/shipping\/zones":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":{"name":{"type":"string","description":"Shipping zone name.","required":true},"order":{"description":"Shipping zone order.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/shipping\/zones"}]}},"\/wc\/v3\/shipping\/zones\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"name":{"description":"Shipping zone name.","type":"string","required":false},"order":{"description":"Shipping zone order.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v3\/shipping\/zones\/(?P[\\d]+)\/locations":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique ID for the resource.","type":"integer","required":false},"code":{"description":"Shipping zone location code.","type":"string","required":false},"type":{"description":"Shipping zone location type.","type":"string","enum":["postcode","state","country","continent"],"required":false}}}]},"\/wc\/v3\/shipping\/zones\/(?P[\\d]+)\/methods":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false}}},{"methods":["POST"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"order":{"description":"Shipping method sort order.","type":"integer","required":false},"enabled":{"description":"Shipping method enabled status.","type":"boolean","required":false},"settings":{"description":"Shipping method settings.","type":"object","properties":{"id":{"description":"A unique identifier for the setting.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"A human readable label for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"description":{"description":"A human readable description for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"type":{"description":"Type of setting.","type":"string","context":["view","edit"],"enum":["text","email","number","color","password","textarea","select","multiselect","radio","image_width","checkbox","class","order"],"readonly":true},"value":{"description":"Setting value.","type":"string","context":["view","edit"]},"default":{"description":"Default value for the setting.","type":"string","context":["view","edit"],"readonly":true},"tip":{"description":"Additional help text shown to the user about the setting.","type":"string","context":["view","edit"],"readonly":true},"placeholder":{"description":"Placeholder text to be displayed in text inputs.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"method_id":{"description":"Shipping method ID.","required":true}}}]},"\/wc\/v3\/shipping\/zones\/(?P[\\d]+)\/methods\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"instance_id":{"description":"Unique ID for the instance.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"instance_id":{"description":"Unique ID for the instance.","type":"integer","required":false},"order":{"description":"Shipping method sort order.","type":"integer","required":false},"enabled":{"description":"Shipping method enabled status.","type":"boolean","required":false},"settings":{"description":"Shipping method settings.","type":"object","properties":{"id":{"description":"A unique identifier for the setting.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"A human readable label for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"description":{"description":"A human readable description for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"type":{"description":"Type of setting.","type":"string","context":["view","edit"],"enum":["text","email","number","color","password","textarea","select","multiselect","radio","image_width","checkbox","class","order"],"readonly":true},"value":{"description":"Setting value.","type":"string","context":["view","edit"]},"default":{"description":"Default value for the setting.","type":"string","context":["view","edit"],"readonly":true},"tip":{"description":"Additional help text shown to the user about the setting.","type":"string","context":["view","edit"],"readonly":true},"placeholder":{"description":"Placeholder text to be displayed in text inputs.","type":"string","context":["view","edit"],"readonly":true}},"required":false}}},{"methods":["DELETE"],"args":{"zone_id":{"description":"Unique ID for the zone.","type":"integer","required":false},"instance_id":{"description":"Unique ID for the instance.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Whether to bypass trash and force deletion.","required":false}}}]},"\/wc\/v3\/taxes\/classes":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"name":{"description":"Tax class name.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/taxes\/classes"}]}},"\/wc\/v3\/taxes\/classes\/(?P\\w[\\w\\s\\-]*)":{"namespace":"wc\/v3","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"Unique slug for the resource.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"slug":{"description":"Unique slug for the resource.","type":"string","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/taxes":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"order","description":"Sort collection by object attribute.","enum":["id","order","priority"],"type":"string","required":false},"class":{"description":"Sort by tax class.","enum":["standard","reduced-rate","zero-rate"],"type":"string","required":false}}},{"methods":["POST"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode\/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead.","type":"string","required":false},"city":{"description":"City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"default":1,"description":"Tax priority.","type":"integer","required":false},"compound":{"default":false,"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"default":true,"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"default":"standard","description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false},"postcodes":{"description":"List of postcodes \/ ZIPs. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false},"cities":{"description":"List of city names. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/taxes"}]}},"\/wc\/v3\/taxes\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode\/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead.","type":"string","required":false},"city":{"description":"City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false},"postcodes":{"description":"List of postcodes \/ ZIPs. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false},"cities":{"description":"List of city names. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/taxes\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"country":{"description":"Country ISO 3166 code.","type":"string","required":false},"state":{"description":"State code.","type":"string","required":false},"postcode":{"description":"Postcode\/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead.","type":"string","required":false},"city":{"description":"City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead.","type":"string","required":false},"rate":{"description":"Tax rate.","type":"string","required":false},"name":{"description":"Tax rate name.","type":"string","required":false},"priority":{"description":"Tax priority.","type":"integer","required":false},"compound":{"description":"Whether or not this is a compound rate.","type":"boolean","required":false},"shipping":{"description":"Whether or not this tax rate also gets applied to shipping.","type":"boolean","required":false},"order":{"description":"Indicates the order that will appear in queries.","type":"integer","required":false},"class":{"description":"Tax class.","type":"string","enum":["standard","reduced-rate","zero-rate"],"required":false},"postcodes":{"description":"List of postcodes \/ ZIPs. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false},"cities":{"description":"List of city names. Introduced in WooCommerce 5.3.","type":"array","items":{"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/taxes\/batch"}]}},"\/wc\/v3\/variations":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to resources modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to resources modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"dates_are_gmt":{"description":"Whether to consider GMT post dates when limiting response by published or modified date.","type":"boolean","default":false,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","title","slug","modified","menu_order"],"required":false},"parent":{"description":"Limit result set to those of particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"slug":{"description":"Limit result set to products with a specific slug.","type":"string","required":false},"status":{"default":"any","description":"Limit result set to products assigned a specific status.","type":"string","enum":["any","future","trash","draft","pending","private","publish"],"required":false},"sku":{"description":"Limit result set to products with specific SKU(s). Use commas to separate.","type":"string","required":false},"on_sale":{"description":"Limit result set to products on sale.","type":"boolean","required":false},"min_price":{"description":"Limit result set to products based on a minimum price.","type":"string","required":false},"max_price":{"description":"Limit result set to products based on a maximum price.","type":"string","required":false},"include_meta":{"default":[],"description":"Limit meta_data to specific keys.","type":"array","items":{"type":"string"},"required":false},"exclude_meta":{"default":[],"description":"Ensure meta_data excludes specific keys.","type":"array","items":{"type":"string"},"required":false},"stock_status":{"description":"Limit result set to products with specified stock status.","type":"string","enum":["instock","outofstock","onbackorder"],"required":false},"has_price":{"description":"Limit result set to products with or without price.","type":"boolean","required":false},"attributes":{"description":"Limit result set to products with specified attributes.","type":"array","items":{"type":"object","properties":{"attribute":{"type":"string","description":"Attribute slug."},"term":{"type":"string","description":"Attribute term."},"terms":{"type":"array","description":"Attribute terms."}}},"required":false},"virtual":{"description":"Limit result set to virtual product variations.","type":"boolean","required":false},"downloadable":{"description":"Limit result set to downloadable product variations.","type":"boolean","required":false},"include_status":{"description":"Limit result set to product variations with any of the statuses.","type":"array","items":{"type":"string","enum":["any","future","trash","draft","pending","private","publish"]},"required":false},"exclude_status":{"description":"Exclude product variations with any of the statuses from result set.","type":"array","items":{"type":"string","enum":["future","trash","draft","pending","private","publish"]},"required":false},"pos_products_only":{"description":"Limit result set to variations visible in Point of Sale.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/variations"}]}},"\/wc\/v3\/webhooks":{"namespace":"wc\/v3","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to resources published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to resources published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific ids.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","title"],"required":false},"status":{"default":"all","description":"Limit result set to webhooks assigned a specific status.","type":"string","enum":["all","active","paused","disabled"],"required":false}}},{"methods":["POST"],"args":{"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"default":"active","description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"type":"string","description":"Webhook topic.","required":true},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false},"delivery_url":{"type":"string","description":"Webhook delivery URL.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/webhooks"}]}},"\/wc\/v3\/webhooks\/(?P[\\d]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"description":"Webhook topic.","type":"string","required":false},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the resource.","type":"integer","required":false},"force":{"default":false,"type":"boolean","description":"Required to be true, as resource does not support trashing.","required":false}}}]},"\/wc\/v3\/webhooks\/batch":{"namespace":"wc\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"name":{"description":"A friendly name for the webhook.","type":"string","required":false},"status":{"description":"Webhook status.","type":"string","enum":["active","paused","disabled"],"required":false},"topic":{"description":"Webhook topic.","type":"string","required":false},"secret":{"description":"Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/webhooks\/batch"}]}},"\/wc\/v3\/system_status":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/system_status"}]}},"\/wc\/v3\/system_status\/tools":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/system_status\/tools"}]}},"\/wc\/v3\/system_status\/tools\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"A unique identifier for the tool.","type":"string","required":false},"name":{"description":"Tool name.","type":"string","required":false},"action":{"description":"What running the tool will do.","type":"string","required":false},"description":{"description":"Tool description.","type":"string","required":false},"success":{"description":"Did the tool run successfully?","type":"boolean","required":false},"message":{"description":"Tool return message.","type":"string","required":false}}}]},"\/wc\/v3\/shipping_methods":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/shipping_methods"}]}},"\/wc\/v3\/shipping_methods\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false}}}]},"\/wc\/v3\/payment_gateways":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/payment_gateways"}]}},"\/wc\/v3\/payment_gateways\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the resource.","type":"string","required":false},"title":{"description":"Payment gateway title on checkout.","type":"string","required":false},"description":{"description":"Payment gateway description on checkout.","type":"string","required":false},"order":{"description":"Payment gateway sort order.","type":"integer","required":false},"enabled":{"description":"Payment gateway enabled status.","type":"boolean","required":false},"settings":{"description":"Payment gateway settings.","type":"object","properties":{"id":{"description":"A unique identifier for the setting.","type":"string","context":["view","edit"],"readonly":true},"label":{"description":"A human readable label for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"description":{"description":"A human readable description for the setting used in interfaces.","type":"string","context":["view","edit"],"readonly":true},"type":{"description":"Type of setting.","type":"string","context":["view","edit"],"enum":["text","email","number","color","password","textarea","select","multiselect","radio","image_width","checkbox"],"readonly":true},"value":{"description":"Setting value.","type":"string","context":["view","edit"]},"default":{"description":"Default value for the setting.","type":"string","context":["view","edit"],"readonly":true},"tip":{"description":"Additional help text shown to the user about the setting.","type":"string","context":["view","edit"],"readonly":true},"placeholder":{"description":"Placeholder text to be displayed in text inputs.","type":"string","context":["view","edit"],"readonly":true}},"required":false}}}]},"\/wc\/v3\/data":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/data"}]}},"\/wc\/v3\/data\/continents":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/data\/continents"}]}},"\/wc\/v3\/data\/continents\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"continent":{"description":"2 character continent code.","type":"string","required":false}}}]},"\/wc\/v3\/data\/countries":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/data\/countries"}]}},"\/wc\/v3\/data\/countries\/(?P[\\w-]+)":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"location":{"description":"ISO3166 alpha-2 country code.","type":"string","required":false}}}]},"\/wc\/v3\/data\/currencies":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/data\/currencies"}]}},"\/wc\/v3\/data\/currencies\/current":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/data\/currencies\/current"}]}},"\/wc\/v3\/data\/currencies\/(?P[\\w-]{3})":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"location":{"description":"ISO4217 currency code.","type":"string","required":false}}}]},"\/wc\/v3\/paypal-standard\/update-shipping":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/paypal-standard\/update-shipping"}]}},"\/wc\/v3\/paypal-webhooks":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/paypal-webhooks"}]}},"\/wc\/v3\/paypal-buttons\/create-order":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/paypal-buttons\/create-order"}]}},"\/wc\/v3\/paypal-buttons\/cancel-payment":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/paypal-buttons\/cancel-payment"}]}},"\/wc\/v3\/orders\/(?P[\\d]+)\/receipt":{"namespace":"wc\/v3","methods":["POST","GET"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier of the order.","type":"integer","required":false},"expiration_date":{"description":"Expiration date formatted as yyyy-mm-dd.","type":"string","default":null,"required":false},"expiration_days":{"description":"Number of days to be added to the current date to get the expiration date.","type":"integer","default":1,"required":false},"force_new":{"description":"True to force the creation of a new receipt even if one already exists and has not expired yet.","type":"boolean","default":false,"required":false}}},{"methods":["GET"],"args":{"id":{"description":"Unique identifier of the order.","type":"integer","required":false}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/actions\/email_templates":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier of the order.","type":"integer","required":false}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/actions\/send_email":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier of the order.","type":"integer","required":false},"email":{"description":"Email address to send the order details to.","type":"string","format":"email","required":false},"force_email_update":{"description":"Whether to update the billing email of the order, even if it already has one.","type":"boolean","required":false},"template_id":{"description":"The ID of the template to use for sending the email.","type":"string","enum":["new_order","cancelled_order","customer_cancelled_order","failed_order","customer_failed_order","customer_on_hold_order","customer_processing_order","customer_completed_order","customer_refunded_order","customer_invoice","customer_note","customer_reset_password","customer_new_account","customer_pos_completed_order","customer_pos_refunded_order"],"required":true}}}]},"\/wc\/v3\/orders\/(?P[\\d]+)\/actions\/send_order_details":{"namespace":"wc\/v3","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier of the order.","type":"integer","required":false},"email":{"description":"Email address to send the order details to.","type":"string","format":"email","required":false},"force_email_update":{"description":"Whether to update the billing email of the order, even if it already has one.","type":"boolean","required":false}}}]},"\/wc\/v3\/orders\/statuses":{"namespace":"wc\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc\/v3\/orders\/statuses"}]}},"\/wc-admin\/settings\/payments\/country":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"location":{"description":"The ISO3166 alpha-2 country code to save for the current user.","type":"string","pattern":"[a-zA-Z]{2}","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/country"}]}},"\/wc-admin\/settings\/payments\/providers":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to WooCommerce's base location country.","type":"string","pattern":"[a-zA-Z]{2}","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/providers"}]}},"\/wc-admin\/settings\/payments\/providers\/order":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"order_map":{"description":"A map of provider ID to integer values representing the sort order.","type":"object","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/providers\/order"}]}},"\/wc-admin\/settings\/payments\/suggestion\/(?P[\\w\\d\\-]+)\/attach":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/settings\/payments\/suggestion\/(?P[\\w\\d\\-]+)\/hide":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}]},"\/wc-admin\/settings\/payments\/suggestion\/(?P[\\w\\d\\-]+)\/incentive\/(?P[\\w\\d\\-]+)\/dismiss":{"namespace":"wc-admin","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"context":{"description":"The context ID for which to dismiss the incentive. If not provided, will dismiss the incentive for all contexts.","type":"string","required":false},"do_not_track":{"description":"If true, the incentive dismissal will be ignored by tracking.","type":"boolean","default":false,"required":false}}}]},"\/wc-admin\/settings\/payments\/woopayments\/onboarding":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/(?P[a-zA-Z0-9_-]+)\/start":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}]},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/(?P[a-zA-Z0-9_-]+)\/save":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}]},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/(?P[a-zA-Z0-9_-]+)\/check":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false}}}]},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/(?P[a-zA-Z0-9_-]+)\/finish":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}]},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/(?P[a-zA-Z0-9_-]+)\/clean":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false}}}]},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/test_account\/init":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/test_account\/init"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/test_account\/reset":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/test_account\/reset"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/business_verification\/kyc_session":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/business_verification\/kyc_session"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/business_verification\/kyc_session\/finish":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/business_verification\/kyc_session\/finish"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/business_verification\/test_account\/disable":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"from":{"description":"Where from in the onboarding flow this request was triggered.","type":"string","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/step\/business_verification\/test_account\/disable"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/preload":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/preload"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/reset":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"from":{"description":"Where from in the onboarding flow this request was triggered.","type":"string","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/reset"}]}},"\/wc-admin\/settings\/payments\/woopayments\/woopay-eligibility":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/woopay-eligibility"}]}},"\/wc-admin\/settings\/payments\/woopayments\/onboarding\/test_account\/disable":{"namespace":"wc-admin","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"location":{"description":"ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.","type":"string","pattern":"[a-zA-Z]{2}","required":false},"from":{"description":"Where from in the onboarding flow this request was triggered.","type":"string","required":false},"source":{"description":"The upmost entry point from where the merchant entered the onboarding flow.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin\/settings\/payments\/woopayments\/onboarding\/test_account\/disable"}]}},"\/wc-admin-email":{"namespace":"wc-admin-email","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc-admin-email","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin-email"}]}},"\/wc-admin-email\/settings\/email\/send-preview":{"namespace":"wc-admin-email","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"type":{"description":"The email type to preview.","type":"string","required":true},"email":{"description":"Email address to send the email preview to.","type":"string","format":"email","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin-email\/settings\/email\/send-preview"}]}},"\/wc-admin-email\/settings\/email\/preview-subject":{"namespace":"wc-admin-email","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"type":{"description":"The email type to get subject for.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin-email\/settings\/email\/preview-subject"}]}},"\/wc-admin-email\/settings\/email\/save-transient":{"namespace":"wc-admin-email","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"key":{"type":"string","description":"The key for the transient. Must be one of the allowed options.","required":true},"value":{"type":"string","description":"The value to be saved for the transient.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin-email\/settings\/email\/save-transient"}]}},"\/wc-admin-email\/settings\/email\/listing\/recreate-email-post":{"namespace":"wc-admin-email","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"email_id":{"description":"The email ID to recreate the post for.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-admin-email\/settings\/email\/listing\/recreate-email-post"}]}},"\/wc-telemetry":{"namespace":"wc-telemetry","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wc-telemetry","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-telemetry"}]}},"\/wc-telemetry\/tracker":{"namespace":"wc-telemetry","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"platform":{"description":"Platform to track.","type":"string","required":true},"version":{"description":"Platform version to track.","type":"string","required":true},"installation_date":{"description":"Installation date of the WooCommerce mobile app.","type":"string","format":"date-time","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wc-telemetry\/tracker"}]}},"\/wccom-site\/v3":{"namespace":"wccom-site\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wccom-site\/v3","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3"}]}},"\/wccom-site\/v3\/installer\/(?P\\d+)\/state":{"namespace":"wccom-site\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"product_id":{"type":"integer","required":true}}}]},"\/wccom-site\/v3\/installer":{"namespace":"wccom-site\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product-id":{"type":"integer","required":true},"run-until-step":{"type":"string","enum":["get_product_info","download_product","unpack_product","move_product","activate_product"],"required":true},"idempotency-key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3\/installer"}]}},"\/wccom-site\/v3\/installer\/reset":{"namespace":"wccom-site\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"product-id":{"type":"integer","required":true},"idempotency-key":{"type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3\/installer\/reset"}]}},"\/wccom-site\/v3\/ssr":{"namespace":"wccom-site\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3\/ssr"}]}},"\/wccom-site\/v3\/status":{"namespace":"wccom-site\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3\/status"}]}},"\/wccom-site\/v3\/connection\/disconnect":{"namespace":"wccom-site\/v3","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3\/connection\/disconnect"}]}},"\/wccom-site\/v3\/connection\/status":{"namespace":"wccom-site\/v3","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wccom-site\/v3\/connection\/status"}]}},"\/wp-abilities\/v1":{"namespace":"wp-abilities\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-abilities\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-abilities\/v1"}]}},"\/wp-abilities\/v1\/categories":{"namespace":"wp-abilities\/v1","methods":["GET","GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":50,"minimum":1,"maximum":100,"required":false}}},{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":50,"minimum":1,"maximum":100,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-abilities\/v1\/categories"}]}},"\/wp-abilities\/v1\/categories\/(?P[a-z0-9]+(?:-[a-z0-9]+)*)":{"namespace":"wp-abilities\/v1","methods":["GET","GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"Unique identifier for the ability category.","type":"string","pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","required":false}}},{"methods":["GET"],"args":{"slug":{"description":"Unique identifier for the ability category.","type":"string","pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","required":false}}}]},"\/wp-abilities\/v1\/abilities\/(?P[a-zA-Z0-9\\-\\\/]+?)\/run":{"namespace":"wp-abilities\/v1","methods":["GET","POST","PUT","PATCH","DELETE","GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET","POST","PUT","PATCH","DELETE"],"args":{"name":{"description":"Unique identifier for the ability.","type":"string","pattern":"^[a-zA-Z0-9\\-\\\/]+$","required":false},"input":{"description":"Input parameters for the ability execution.","type":["integer","number","boolean","string","array","object","null"],"default":null,"required":false}}},{"methods":["GET","POST","PUT","PATCH","DELETE"],"args":{"name":{"description":"Unique identifier for the ability.","type":"string","pattern":"^[a-zA-Z0-9\\-\\\/]+$","required":false},"input":{"description":"Input parameters for the ability execution.","type":["integer","number","boolean","string","array","object","null"],"default":null,"required":false}}}]},"\/wp-abilities\/v1\/abilities":{"namespace":"wp-abilities\/v1","methods":["GET","GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":50,"minimum":1,"maximum":100,"required":false},"category":{"description":"Limit results to abilities in specific ability category.","type":"string","required":false}}},{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":50,"minimum":1,"maximum":100,"required":false},"category":{"description":"Limit results to abilities in specific ability category.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-abilities\/v1\/abilities"}]}},"\/wp-abilities\/v1\/abilities\/(?P[a-zA-Z0-9\\-\\\/]+)":{"namespace":"wp-abilities\/v1","methods":["GET","GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"description":"Unique identifier for the ability.","type":"string","pattern":"^[a-zA-Z0-9\\-\\\/]+$","required":false}}},{"methods":["GET"],"args":{"name":{"description":"Unique identifier for the ability.","type":"string","pattern":"^[a-zA-Z0-9\\-\\\/]+$","required":false}}}]},"\/jetpack\/v4\/verify_registration":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/verify_registration"}]}},"\/jetpack\/v4\/remote_authorize":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/remote_authorize"}]}},"\/jetpack\/v4\/remote_provision":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/remote_provision"}]}},"\/jetpack\/v4\/remote_register":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/remote_register"}]}},"\/jetpack\/v4\/remote_connect":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/remote_connect"}]}},"\/jetpack\/v4\/connection\/check":{"namespace":"jetpack\/v4","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/check"}]}},"\/jetpack\/v4\/connection":{"namespace":"jetpack\/v4","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"isActive":{"description":"Set to false will trigger the site to disconnect.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection"}]}},"\/jetpack\/v4\/connection\/user":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/user"}]}},"\/jetpack\/v4\/connection\/data":{"namespace":"jetpack\/v4","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/data"}]}},"\/jetpack\/v4\/connection\/plugins":{"namespace":"jetpack\/v4","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/plugins"}]}},"\/jetpack\/v4\/connection\/reconnect":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/reconnect"}]}},"\/jetpack\/v4\/connection\/register":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"from":{"description":"Indicates where the registration action was triggered for tracking\/segmentation purposes","type":"string","required":false},"redirect_uri":{"description":"URI of the admin page where the user should be redirected after connection flow","type":"string","required":false},"plugin_slug":{"description":"Indicates from what plugin the request is coming from","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/register"}]}},"\/jetpack\/v4\/connection\/authorize_url":{"namespace":"jetpack\/v4","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"redirect_uri":{"description":"URI of the admin page where the user should be redirected after connection flow","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/authorize_url"}]}},"\/jetpack\/v4\/user-token":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"user_token":{"description":"New user token","type":"string","required":true},"is_connection_owner":{"description":"Is connection owner","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/user-token"}]}},"\/jetpack\/v4\/connection\/owner":{"namespace":"jetpack\/v4","methods":["POST","PUT","PATCH"],"endpoints":[{"methods":["POST","PUT","PATCH"],"args":{"owner":{"description":"New owner","type":"integer","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/jetpack\/v4\/connection\/owner"}]}},"\/wp\/v2":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp\/v2","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2"}]}},"\/wp\/v2\/posts":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","rand","menu_order"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"categories":{"description":"Limit result set to items with specific terms assigned in the categories taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"categories_exclude":{"description":"Limit result set to items except those with specific terms assigned in the categories taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false}},"additionalProperties":false}],"required":false},"tags":{"description":"Limit result set to items with specific terms assigned in the tags taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"tags_exclude":{"description":"Limit result set to items except those with specific terms assigned in the tags taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false},"sticky":{"description":"Limit result set to items that are sticky.","type":"boolean","required":false},"ignore_sticky":{"description":"Whether to ignore sticky posts or not.","type":"boolean","default":true,"required":false},"format":{"description":"Limit result set to items assigned one or more given formats.","type":"array","uniqueItems":true,"items":{"enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"format":{"description":"The format for the post.","type":"string","enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"sticky":{"description":"Whether or not the post should be treated as sticky.","type":"boolean","required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"categories":{"description":"The terms assigned to the post in the category taxonomy.","type":"array","items":{"type":"integer"},"required":false},"tags":{"description":"The terms assigned to the post in the post_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/posts"}]}},"\/wp\/v2\/posts\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"format":{"description":"The format for the post.","type":"string","enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"sticky":{"description":"Whether or not the post should be treated as sticky.","type":"boolean","required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"categories":{"description":"The terms assigned to the post in the category taxonomy.","type":"array","items":{"type":"integer"},"required":false},"tags":{"description":"The terms assigned to the post in the post_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"format":{"description":"The format for the post.","type":"string","enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"sticky":{"description":"Whether or not the post should be treated as sticky.","type":"boolean","required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"categories":{"description":"The terms assigned to the post in the category taxonomy.","type":"array","items":{"type":"integer"},"required":false},"tags":{"description":"The terms assigned to the post in the post_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/pages":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"menu_order":{"description":"Limit result set to posts with a specific menu_order value.","type":"integer","required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","menu_order"],"required":false},"parent":{"description":"Limit result set to items with particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"parent":{"description":"The ID for the parent of the post.","type":"integer","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"menu_order":{"description":"The order of the post in relation to other posts.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/pages"}]}},"\/wp\/v2\/pages\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"parent":{"description":"The ID for the parent of the post.","type":"integer","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"menu_order":{"description":"The order of the post in relation to other posts.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"menu_order":{"description":"The order of the post in relation to other posts.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/media":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"parent":{"description":"Limit result set to items with particular parent IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"parent_exclude":{"description":"Limit result set to all items except those of a particular parent ID.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"inherit","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["inherit","private","trash"],"type":"string"},"required":false},"media_type":{"default":null,"description":"Limit result set to attachments of a particular media type or media types.","type":"array","items":{"type":"string","enum":["image","video","text","application","audio"]},"required":false},"mime_type":{"default":null,"description":"Limit result set to attachments of a particular MIME type or MIME types.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"alt_text":{"description":"Alternative text to display when attachment is not displayed.","type":"string","required":false},"caption":{"description":"The attachment caption.","type":"object","properties":{"raw":{"description":"Caption for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML caption for the attachment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"The attachment description.","type":"object","properties":{"raw":{"description":"Description for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML description for the attachment, transformed for display.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"post":{"description":"The ID for the associated post of the attachment.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/media"}]}},"\/wp\/v2\/media\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"alt_text":{"description":"Alternative text to display when attachment is not displayed.","type":"string","required":false},"caption":{"description":"The attachment caption.","type":"object","properties":{"raw":{"description":"Caption for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML caption for the attachment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"The attachment description.","type":"object","properties":{"raw":{"description":"Description for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML description for the attachment, transformed for display.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"post":{"description":"The ID for the associated post of the attachment.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/media\/(?P[\\d]+)\/post-process":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"Unique identifier for the attachment.","type":"integer","required":false},"action":{"type":"string","enum":["create-image-subsizes"],"required":true}}}]},"\/wp\/v2\/media\/(?P[\\d]+)\/edit":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"src":{"description":"URL to the edited image file.","type":"string","format":"uri","required":true},"modifiers":{"description":"Array of image edits.","type":"array","minItems":1,"items":{"description":"Image edit.","type":"object","required":["type","args"],"oneOf":[{"title":"Flip","properties":{"type":{"description":"Flip type.","type":"string","enum":["flip"]},"args":{"description":"Flip arguments.","type":"object","required":["flip"],"properties":{"flip":{"description":"Flip direction.","type":"object","required":["horizontal","vertical"],"properties":{"horizontal":{"description":"Whether to flip in the horizontal direction.","type":"boolean"},"vertical":{"description":"Whether to flip in the vertical direction.","type":"boolean"}}}}}}},{"title":"Rotation","properties":{"type":{"description":"Rotation type.","type":"string","enum":["rotate"]},"args":{"description":"Rotation arguments.","type":"object","required":["angle"],"properties":{"angle":{"description":"Angle to rotate clockwise in degrees.","type":"number"}}}}},{"title":"Crop","properties":{"type":{"description":"Crop type.","type":"string","enum":["crop"]},"args":{"description":"Crop arguments.","type":"object","required":["left","top","width","height"],"properties":{"left":{"description":"Horizontal position from the left to begin the crop as a percentage of the image width.","type":"number"},"top":{"description":"Vertical position from the top to begin the crop as a percentage of the image height.","type":"number"},"width":{"description":"Width of the crop as a percentage of the image width.","type":"number"},"height":{"description":"Height of the crop as a percentage of the image height.","type":"number"}}}}}]},"required":false},"rotation":{"description":"The amount to rotate the image clockwise in degrees. DEPRECATED: Use `modifiers` instead.","type":"integer","minimum":0,"exclusiveMinimum":true,"maximum":360,"exclusiveMaximum":true,"required":false},"x":{"description":"As a percentage of the image, the x position to start the crop from. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"y":{"description":"As a percentage of the image, the y position to start the crop from. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"width":{"description":"As a percentage of the image, the width to crop the image to. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"height":{"description":"As a percentage of the image, the height to crop the image to. DEPRECATED: Use `modifiers` instead.","type":"number","minimum":0,"maximum":100,"required":false},"caption":{"description":"The attachment caption.","type":"object","properties":{"raw":{"description":"Caption for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML caption for the attachment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"The attachment description.","type":"object","properties":{"raw":{"description":"Description for the attachment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML description for the attachment, transformed for display.","type":"string","context":["view","edit"],"readonly":true}},"required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"post":{"description":"The ID for the associated post of the attachment.","type":"integer","required":false},"alt_text":{"description":"Alternative text to display when attachment is not displayed.","type":"string","required":false}}}]},"\/wp\/v2\/menu-items":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":100,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"menu_order","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","menu_order"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"menus":{"description":"Limit result set to items with specific terms assigned in the menus taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"menus_exclude":{"description":"Limit result set to items except those with specific terms assigned in the menus taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false},"menu_order":{"description":"Limit result set to posts with a specific menu_order value.","type":"integer","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"title":{"description":"The title for the object.","type":["string","object"],"properties":{"raw":{"description":"Title for the object, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the object, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"type":{"default":"custom","description":"The family of objects originally represented, such as \"post_type\" or \"taxonomy\".","type":"string","enum":["taxonomy","post_type","post_type_archive","custom"],"required":false},"status":{"default":"publish","description":"A named status for the object.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"parent":{"default":0,"description":"The ID for the parent of the object.","type":"integer","minimum":0,"required":false},"attr_title":{"description":"Text for the title attribute of the link element for this menu item.","type":"string","required":false},"classes":{"description":"Class names for the link element of this menu item.","type":"array","items":{"type":"string"},"required":false},"description":{"description":"The description of this menu item.","type":"string","required":false},"menu_order":{"default":1,"description":"The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0.","type":"integer","minimum":1,"required":false},"object":{"description":"The type of object originally represented, such as \"category\", \"post\", or \"attachment\".","type":"string","required":false},"object_id":{"default":0,"description":"The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.","type":"integer","minimum":0,"required":false},"target":{"description":"The target attribute of the link element for this menu item.","type":"string","enum":["_blank",""],"required":false},"url":{"description":"The URL to which this menu item points.","type":"string","format":"uri","required":false},"xfn":{"description":"The XFN relationship expressed in the link of this menu item.","type":"array","items":{"type":"string"},"required":false},"menus":{"description":"The terms assigned to the object in the nav_menu taxonomy.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/menu-items"}]}},"\/wp\/v2\/menu-items\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"title":{"description":"The title for the object.","type":["string","object"],"properties":{"raw":{"description":"Title for the object, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the object, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"type":{"description":"The family of objects originally represented, such as \"post_type\" or \"taxonomy\".","type":"string","enum":["taxonomy","post_type","post_type_archive","custom"],"required":false},"status":{"description":"A named status for the object.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"parent":{"description":"The ID for the parent of the object.","type":"integer","minimum":0,"required":false},"attr_title":{"description":"Text for the title attribute of the link element for this menu item.","type":"string","required":false},"classes":{"description":"Class names for the link element of this menu item.","type":"array","items":{"type":"string"},"required":false},"description":{"description":"The description of this menu item.","type":"string","required":false},"menu_order":{"description":"The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0.","type":"integer","minimum":1,"required":false},"object":{"description":"The type of object originally represented, such as \"category\", \"post\", or \"attachment\".","type":"string","required":false},"object_id":{"description":"The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.","type":"integer","minimum":0,"required":false},"target":{"description":"The target attribute of the link element for this menu item.","type":"string","enum":["_blank",""],"required":false},"url":{"description":"The URL to which this menu item points.","type":"string","format":"uri","required":false},"xfn":{"description":"The XFN relationship expressed in the link of this menu item.","type":"array","items":{"type":"string"},"required":false},"menus":{"description":"The terms assigned to the object in the nav_menu taxonomy.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/menu-items\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the object.","type":"integer","minimum":0,"required":false},"title":{"description":"The title for the object.","type":["string","object"],"properties":{"raw":{"description":"Title for the object, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the object, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"type":{"description":"The family of objects originally represented, such as \"post_type\" or \"taxonomy\".","type":"string","enum":["taxonomy","post_type","post_type_archive","custom"],"required":false},"status":{"description":"A named status for the object.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"attr_title":{"description":"Text for the title attribute of the link element for this menu item.","type":"string","required":false},"classes":{"description":"Class names for the link element of this menu item.","type":"array","items":{"type":"string"},"required":false},"description":{"description":"The description of this menu item.","type":"string","required":false},"menu_order":{"description":"The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0.","type":"integer","minimum":1,"required":false},"object":{"description":"The type of object originally represented, such as \"category\", \"post\", or \"attachment\".","type":"string","required":false},"object_id":{"description":"The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.","type":"integer","minimum":0,"required":false},"target":{"description":"The target attribute of the link element for this menu item.","type":"string","enum":["_blank",""],"required":false},"url":{"description":"The URL to which this menu item points.","type":"string","format":"uri","required":false},"xfn":{"description":"The XFN relationship expressed in the link of this menu item.","type":"array","items":{"type":"string"},"required":false},"menus":{"description":"The terms assigned to the object in the nav_menu taxonomy.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false}}}]},"\/wp\/v2\/menu-items\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/blocks":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"wp_pattern_category":{"description":"Limit result set to items with specific terms assigned in the wp_pattern_category taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"wp_pattern_category_exclude":{"description":"Limit result set to items except those with specific terms assigned in the wp_pattern_category taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["view","edit"]}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"wp_pattern_sync_status":{"type":"string","title":"","description":"","default":"","enum":["partial","unsynced"]},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"wp_pattern_category":{"description":"The terms assigned to the post in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/blocks"}]}},"\/wp\/v2\/blocks\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["view","edit"]}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"wp_pattern_sync_status":{"type":"string","title":"","description":"","default":"","enum":["partial","unsynced"]},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"wp_pattern_category":{"description":"The terms assigned to the post in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["view","edit"]}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"wp_pattern_sync_status":{"type":"string","title":"","description":"","default":"","enum":["partial","unsynced"]},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"wp_pattern_category":{"description":"The terms assigned to the post in the wp_pattern_category taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false}}}]},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/templates":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"wp_id":{"description":"Limit to the specified post id.","type":"integer","required":false},"area":{"description":"Limit to the specified template part area.","type":"string","required":false},"post_type":{"description":"Post type to get the templates for.","type":"string","required":false}}},{"methods":["POST"],"args":{"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":true},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"default":"","description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"default":"","description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"default":"","description":"Description of template.","type":"string","required":false},"status":{"default":"publish","description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/templates"}]}},"\/wp\/v2\/templates\/lookup":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"The slug of the template to get the fallback for","type":"string","required":true},"is_custom":{"description":"Indicates if a template is custom or part of the template hierarchy","type":"boolean","required":false},"template_prefix":{"description":"The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/templates\/lookup"}]}},"\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false},"area":{"description":"Where the template part is intended for use (header, footer, etc.)","type":"string","required":false}}}]},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The id of a template","type":"string","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/template-parts":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"wp_id":{"description":"Limit to the specified post id.","type":"integer","required":false},"area":{"description":"Limit to the specified template part area.","type":"string","required":false},"post_type":{"description":"Post type to get the templates for.","type":"string","required":false}}},{"methods":["POST"],"args":{"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":true},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"default":"","description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"default":"","description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"default":"","description":"Description of template.","type":"string","required":false},"status":{"default":"publish","description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false},"area":{"description":"Where the template part is intended for use (header, footer, etc.)","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/template-parts"}]}},"\/wp\/v2\/template-parts\/lookup":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"slug":{"description":"The slug of the template to get the fallback for","type":"string","required":true},"is_custom":{"description":"Indicates if a template is custom or part of the template hierarchy","type":"boolean","required":false},"template_prefix":{"description":"The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/template-parts\/lookup"}]}},"\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"slug":{"description":"Unique slug identifying the template.","type":"string","minLength":1,"pattern":"[a-zA-Z0-9_\\%-]+","required":false},"theme":{"description":"Theme identifier for the template.","type":"string","required":false},"type":{"description":"Type of template.","type":"string","required":false},"content":{"description":"Content of template.","type":["object","string"],"properties":{"raw":{"description":"Content for the template, as it exists in the database.","type":"string","context":["view","edit"]},"block_version":{"description":"Version of the content block format used by the template.","type":"integer","context":["edit"],"readonly":true}},"required":false},"title":{"description":"Title of template.","type":["object","string"],"properties":{"raw":{"description":"Title for the template, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the template, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"description":{"description":"Description of template.","type":"string","required":false},"status":{"description":"Status of template.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"author":{"description":"The ID for the author of the template.","type":"integer","required":false},"area":{"description":"Where the template part is intended for use (header, footer, etc.)","type":"string","required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"The id of a template","type":"string","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/global-styles\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false}}}]},"\/wp\/v2\/global-styles\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the global styles revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the global styles revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/global-styles\/themes\/(?P[\\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)\/variations":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":false},"args":{"stylesheet":{"description":"The theme identifier","type":"string","required":false}}}]},"\/wp\/v2\/global-styles\/themes\/(?P[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":false},"args":{"stylesheet":{"description":"The theme identifier","type":"string","required":false}}}]},"\/wp\/v2\/global-styles\/(?P[\\\/\\d+]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":false},"args":{"id":{"description":"ID of global styles config.","type":"integer","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":false},"args":{"styles":{"description":"Global styles.","type":["object"],"required":false},"settings":{"description":"Global settings.","type":["object"],"required":false},"title":{"description":"Title of the global styles variation.","type":["object","string"],"properties":{"raw":{"description":"Title for the global styles variation, as it exists in the database.","type":"string","context":["view","edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false}}}]},"\/wp\/v2\/navigation":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit","embed"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/navigation"}]}},"\/wp\/v2\/navigation\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit","embed"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit","embed"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit","embed"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/navigation\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/font-families":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"id","enum":["id","include"],"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"args":{"theme_json_version":{"description":"Version of the theme.json schema used for the typography settings.","type":"integer","default":3,"minimum":2,"maximum":3,"required":false},"font_family_settings":{"description":"font-family declaration in theme.json format, encoded as a string.","type":"string","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/font-families"}]}},"\/wp\/v2\/font-families\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"theme_json_version":{"description":"Version of the theme.json schema used for the typography settings.","type":"integer","default":3,"minimum":2,"maximum":3,"required":false},"font_family_settings":{"description":"font-family declaration in theme.json format, encoded as a string.","type":"string","required":true}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/font-families\/(?P[\\d]+)\/font-faces":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"id","enum":["id","include"],"required":false}}},{"methods":["POST"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"theme_json_version":{"description":"Version of the theme.json schema used for the typography settings.","type":"integer","default":3,"minimum":2,"maximum":3,"required":false},"font_face_settings":{"description":"font-face declaration in theme.json format, encoded as a string.","type":"string","required":true}}}]},"\/wp\/v2\/font-families\/(?P[\\d]+)\/font-faces\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"id":{"description":"Unique identifier for the font face.","type":"integer","required":true},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"font_family_id":{"description":"The ID for the parent font family of the font face.","type":"integer","required":true},"id":{"description":"Unique identifier for the font face.","type":"integer","required":true},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_form":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_form_fields":{"type":"array","title":"","description":"","default":[],"items":{"type":"object","properties":{"uniqueID":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"type":{"type":"string"}},"additionalProperties":false}},"_kad_form_email":{"type":"object","title":"","description":"","default":{"emailTo":"","subject":"","fromEmail":"","fromName":"","replyTo":"email_field","cc":"","bcc":"","html":true},"properties":{"emailTo":{"type":"string"},"subject":{"type":"string"},"fromEmail":{"type":"string"},"fromName":{"type":"string"},"replyTo":{"type":"string"},"cc":{"type":"string"},"bcc":{"type":"string"},"html":{"type":"boolean"}},"additionalProperties":false},"_kad_form_mailerlite":{"type":"object","title":"","description":"","default":{"group":[],"map":[]},"properties":{"group":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_fluentcrm":{"type":"object","title":"","description":"","default":{"lists":[],"tags":[],"map":[],"doubleOptin":false},"properties":{"lists":{"type":"array"},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_sendinblue":{"type":"object","title":"","description":"","default":{"lists":[],"map":[]},"properties":{"lists":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_mailchimp":{"type":"object","title":"","description":"","default":{"list":[],"map":[],"groups":[],"tags":[],"doubleOptin":false},"properties":{"list":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"map":{"type":"object","additionalProperties":{"type":"string"}},"groups":{"type":"array"},"tags":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_getresponse":{"type":"object","title":"","description":"","default":{"automation":[],"tags":[],"map":[],"listMulti":[],"doubleOptin":false},"properties":{"automation":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"listMulti":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_convertkit":{"type":"object","title":"","description":"","default":{"form":[],"sequence":[],"tags":[],"map":[]},"properties":{"form":{"type":"object","properties":{"value":{"type":"number"},"label":{"type":"string"}},"additionalProperties":false},"sequence":{"type":"object","properties":{"value":{"type":"number"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_activecampaign":{"type":"object","title":"","description":"","default":{"list":[],"automation":[],"tags":[],"map":[],"listMulti":[],"doubleOptin":false},"properties":{"list":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"automation":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"listMulti":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_browserValidation":{"type":"boolean","title":"","description":"","default":true},"_kad_form_enableAnalytics":{"type":"boolean","title":"","description":"","default":false},"_kad_form_redirect":{"type":"string","title":"","description":"","default":""},"_kad_form_submitHide":{"type":"boolean","title":"","description":"","default":false},"_kad_form_recaptcha":{"type":"boolean","title":"","description":"","default":false},"_kad_form_recaptchaVersion":{"type":"string","title":"","description":"","default":"v3"},"_kad_form_webhook":{"type":"object","title":"","description":"","default":{"url":"","map":[]},"properties":{"url":{"type":"string"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_autoEmail":{"type":"object","title":"","description":"","default":{"emailTo":"","subject":"","message":"","fromEmail":"","fromName":"","replyTo":"","cc":"","bcc":"","html":true},"properties":{"emailTo":{"type":"string"},"subject":{"type":"string"},"message":{"type":"string"},"fromEmail":{"type":"string"},"fromName":{"type":"string"},"replyTo":{"type":"string"},"cc":{"type":"string"},"bcc":{"type":"string"},"html":{"type":"boolean"}},"additionalProperties":false},"_kad_form_entry":{"type":"object","title":"","description":"","default":{"userIP":true,"userDevice":true},"properties":{"userIP":{"type":"boolean"},"userDevice":{"type":"boolean"}},"additionalProperties":false},"_kad_form_fieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_tabletFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_mobileFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_fieldBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_form_description":{"type":"string","title":"","description":"","default":""},"_kad_form_fieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_messages":{"type":"object","title":"","description":"","default":{"success":"","error":"","required":"","invalid":"","recaptchaerror":"","preError":""},"properties":{"success":{"type":"string"},"error":{"type":"string"},"required":{"type":"string"},"invalid":{"type":"string"},"recaptchaerror":{"type":"string"},"preError":{"type":"string"}},"additionalProperties":false},"_kad_form_inputFont":{"type":"object","title":"","description":"","default":{"color":"","colorActive":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"colorActive":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_style":{"type":"object","title":"","description":"","default":{"showRequired":true,"size":"standard","padding":["","","",""],"tabletPadding":["","","",""],"mobilePadding":["","","",""],"paddingUnit":"px","requiredColor":"","background":"","backgroundActive":"","borderActive":"","placeholderColor":"","gradient":"","gradientActive":"","backgroundType":"normal","backgroundActiveType":"normal","boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowActive":[false,"#000000",0.4,2,2,3,0,false],"gap":["","",""],"gapUnit":"px","labelStyle":"normal","basicStyles":true,"isDark":false},"properties":{"showRequired":{"type":"boolean"},"size":{"type":"string"},"padding":{"type":"array"},"tabletPadding":{"type":"array"},"mobilePadding":{"type":"array"},"paddingUnit":{"type":"string"},"requiredColor":{"type":"string"},"background":{"type":"string"},"backgroundActive":{"type":"string"},"borderActive":{"type":"string"},"placeholderColor":{"type":"string"},"gradient":{"type":"string"},"gradientActive":{"type":"string"},"backgroundType":{"type":"string"},"backgroundActiveType":{"type":"string"},"boxShadow":{"type":"array"},"boxShadowActive":{"type":"array"},"gap":{"type":"array"},"gapUnit":{"type":"string"},"labelStyle":{"type":"string"},"basicStyles":{"type":"boolean"},"isDark":{"type":"boolean"}},"additionalProperties":false},"_kad_form_background":{"type":"object","title":"","description":"","default":{"background":"","gradient":"","backgroundType":"normal"},"properties":{"background":{"type":"string"},"gradient":{"type":"string"},"backgroundType":{"type":"string"}},"additionalProperties":false},"_kad_form_labelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_radioLabelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_form_helpFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_messageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletMessageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileMessageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_messageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletMessageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileMessageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_anchor":{"type":"string","title":"","description":"","default":""},"_kad_form_className":{"type":"string","title":"","description":"","default":""},"_kad_form_actions":{"type":"array","title":"","description":"","default":["email"],"items":{"type":"string"}},"_kad_form_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMessageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messageBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tableMessagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messagePaddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMessageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messageMarginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageColor":{"type":"string","title":"","description":"","default":""},"_kad_form_messageBackground":{"type":"string","title":"","description":"","default":""},"_kad_form_messageColorError":{"type":"string","title":"","description":"","default":""},"_kad_form_messageBackgroundError":{"type":"string","title":"","description":"","default":""},"_kad_form_messageFont":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizetype":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadgoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizetype":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadgoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_form_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_form_importId":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_form"}]}},"\/wp\/v2\/kadence_form\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_form_fields":{"type":"array","title":"","description":"","default":[],"items":{"type":"object","properties":{"uniqueID":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"type":{"type":"string"}},"additionalProperties":false}},"_kad_form_email":{"type":"object","title":"","description":"","default":{"emailTo":"","subject":"","fromEmail":"","fromName":"","replyTo":"email_field","cc":"","bcc":"","html":true},"properties":{"emailTo":{"type":"string"},"subject":{"type":"string"},"fromEmail":{"type":"string"},"fromName":{"type":"string"},"replyTo":{"type":"string"},"cc":{"type":"string"},"bcc":{"type":"string"},"html":{"type":"boolean"}},"additionalProperties":false},"_kad_form_mailerlite":{"type":"object","title":"","description":"","default":{"group":[],"map":[]},"properties":{"group":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_fluentcrm":{"type":"object","title":"","description":"","default":{"lists":[],"tags":[],"map":[],"doubleOptin":false},"properties":{"lists":{"type":"array"},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_sendinblue":{"type":"object","title":"","description":"","default":{"lists":[],"map":[]},"properties":{"lists":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_mailchimp":{"type":"object","title":"","description":"","default":{"list":[],"map":[],"groups":[],"tags":[],"doubleOptin":false},"properties":{"list":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"map":{"type":"object","additionalProperties":{"type":"string"}},"groups":{"type":"array"},"tags":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_getresponse":{"type":"object","title":"","description":"","default":{"automation":[],"tags":[],"map":[],"listMulti":[],"doubleOptin":false},"properties":{"automation":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"listMulti":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_convertkit":{"type":"object","title":"","description":"","default":{"form":[],"sequence":[],"tags":[],"map":[]},"properties":{"form":{"type":"object","properties":{"value":{"type":"number"},"label":{"type":"string"}},"additionalProperties":false},"sequence":{"type":"object","properties":{"value":{"type":"number"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_activecampaign":{"type":"object","title":"","description":"","default":{"list":[],"automation":[],"tags":[],"map":[],"listMulti":[],"doubleOptin":false},"properties":{"list":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"automation":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"listMulti":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_browserValidation":{"type":"boolean","title":"","description":"","default":true},"_kad_form_enableAnalytics":{"type":"boolean","title":"","description":"","default":false},"_kad_form_redirect":{"type":"string","title":"","description":"","default":""},"_kad_form_submitHide":{"type":"boolean","title":"","description":"","default":false},"_kad_form_recaptcha":{"type":"boolean","title":"","description":"","default":false},"_kad_form_recaptchaVersion":{"type":"string","title":"","description":"","default":"v3"},"_kad_form_webhook":{"type":"object","title":"","description":"","default":{"url":"","map":[]},"properties":{"url":{"type":"string"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_autoEmail":{"type":"object","title":"","description":"","default":{"emailTo":"","subject":"","message":"","fromEmail":"","fromName":"","replyTo":"","cc":"","bcc":"","html":true},"properties":{"emailTo":{"type":"string"},"subject":{"type":"string"},"message":{"type":"string"},"fromEmail":{"type":"string"},"fromName":{"type":"string"},"replyTo":{"type":"string"},"cc":{"type":"string"},"bcc":{"type":"string"},"html":{"type":"boolean"}},"additionalProperties":false},"_kad_form_entry":{"type":"object","title":"","description":"","default":{"userIP":true,"userDevice":true},"properties":{"userIP":{"type":"boolean"},"userDevice":{"type":"boolean"}},"additionalProperties":false},"_kad_form_fieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_tabletFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_mobileFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_fieldBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_form_description":{"type":"string","title":"","description":"","default":""},"_kad_form_fieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_messages":{"type":"object","title":"","description":"","default":{"success":"","error":"","required":"","invalid":"","recaptchaerror":"","preError":""},"properties":{"success":{"type":"string"},"error":{"type":"string"},"required":{"type":"string"},"invalid":{"type":"string"},"recaptchaerror":{"type":"string"},"preError":{"type":"string"}},"additionalProperties":false},"_kad_form_inputFont":{"type":"object","title":"","description":"","default":{"color":"","colorActive":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"colorActive":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_style":{"type":"object","title":"","description":"","default":{"showRequired":true,"size":"standard","padding":["","","",""],"tabletPadding":["","","",""],"mobilePadding":["","","",""],"paddingUnit":"px","requiredColor":"","background":"","backgroundActive":"","borderActive":"","placeholderColor":"","gradient":"","gradientActive":"","backgroundType":"normal","backgroundActiveType":"normal","boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowActive":[false,"#000000",0.4,2,2,3,0,false],"gap":["","",""],"gapUnit":"px","labelStyle":"normal","basicStyles":true,"isDark":false},"properties":{"showRequired":{"type":"boolean"},"size":{"type":"string"},"padding":{"type":"array"},"tabletPadding":{"type":"array"},"mobilePadding":{"type":"array"},"paddingUnit":{"type":"string"},"requiredColor":{"type":"string"},"background":{"type":"string"},"backgroundActive":{"type":"string"},"borderActive":{"type":"string"},"placeholderColor":{"type":"string"},"gradient":{"type":"string"},"gradientActive":{"type":"string"},"backgroundType":{"type":"string"},"backgroundActiveType":{"type":"string"},"boxShadow":{"type":"array"},"boxShadowActive":{"type":"array"},"gap":{"type":"array"},"gapUnit":{"type":"string"},"labelStyle":{"type":"string"},"basicStyles":{"type":"boolean"},"isDark":{"type":"boolean"}},"additionalProperties":false},"_kad_form_background":{"type":"object","title":"","description":"","default":{"background":"","gradient":"","backgroundType":"normal"},"properties":{"background":{"type":"string"},"gradient":{"type":"string"},"backgroundType":{"type":"string"}},"additionalProperties":false},"_kad_form_labelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_radioLabelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_form_helpFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_messageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletMessageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileMessageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_messageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletMessageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileMessageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_anchor":{"type":"string","title":"","description":"","default":""},"_kad_form_className":{"type":"string","title":"","description":"","default":""},"_kad_form_actions":{"type":"array","title":"","description":"","default":["email"],"items":{"type":"string"}},"_kad_form_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMessageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messageBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tableMessagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messagePaddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMessageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messageMarginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageColor":{"type":"string","title":"","description":"","default":""},"_kad_form_messageBackground":{"type":"string","title":"","description":"","default":""},"_kad_form_messageColorError":{"type":"string","title":"","description":"","default":""},"_kad_form_messageBackgroundError":{"type":"string","title":"","description":"","default":""},"_kad_form_messageFont":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizetype":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadgoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizetype":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadgoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_form_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_form_importId":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_form\/auto-draft":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_form\/auto-draft"}]}},"\/wp\/v2\/kadence_form\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_form\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_form\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_form_fields":{"type":"array","title":"","description":"","default":[],"items":{"type":"object","properties":{"uniqueID":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"type":{"type":"string"}},"additionalProperties":false}},"_kad_form_email":{"type":"object","title":"","description":"","default":{"emailTo":"","subject":"","fromEmail":"","fromName":"","replyTo":"email_field","cc":"","bcc":"","html":true},"properties":{"emailTo":{"type":"string"},"subject":{"type":"string"},"fromEmail":{"type":"string"},"fromName":{"type":"string"},"replyTo":{"type":"string"},"cc":{"type":"string"},"bcc":{"type":"string"},"html":{"type":"boolean"}},"additionalProperties":false},"_kad_form_mailerlite":{"type":"object","title":"","description":"","default":{"group":[],"map":[]},"properties":{"group":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_fluentcrm":{"type":"object","title":"","description":"","default":{"lists":[],"tags":[],"map":[],"doubleOptin":false},"properties":{"lists":{"type":"array"},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_sendinblue":{"type":"object","title":"","description":"","default":{"lists":[],"map":[]},"properties":{"lists":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_mailchimp":{"type":"object","title":"","description":"","default":{"list":[],"map":[],"groups":[],"tags":[],"doubleOptin":false},"properties":{"list":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"map":{"type":"object","additionalProperties":{"type":"string"}},"groups":{"type":"array"},"tags":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_getresponse":{"type":"object","title":"","description":"","default":{"automation":[],"tags":[],"map":[],"listMulti":[],"doubleOptin":false},"properties":{"automation":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"listMulti":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_convertkit":{"type":"object","title":"","description":"","default":{"form":[],"sequence":[],"tags":[],"map":[]},"properties":{"form":{"type":"object","properties":{"value":{"type":"number"},"label":{"type":"string"}},"additionalProperties":false},"sequence":{"type":"object","properties":{"value":{"type":"number"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_activecampaign":{"type":"object","title":"","description":"","default":{"list":[],"automation":[],"tags":[],"map":[],"listMulti":[],"doubleOptin":false},"properties":{"list":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"automation":{"type":"object","properties":{"value":{"type":"string"},"label":{"type":"string"}},"additionalProperties":false},"tags":{"type":"array"},"map":{"type":"object","additionalProperties":{"type":"string"}},"listMulti":{"type":"array"},"doubleOptin":{"type":"boolean"}},"additionalProperties":false},"_kad_form_browserValidation":{"type":"boolean","title":"","description":"","default":true},"_kad_form_enableAnalytics":{"type":"boolean","title":"","description":"","default":false},"_kad_form_redirect":{"type":"string","title":"","description":"","default":""},"_kad_form_submitHide":{"type":"boolean","title":"","description":"","default":false},"_kad_form_recaptcha":{"type":"boolean","title":"","description":"","default":false},"_kad_form_recaptchaVersion":{"type":"string","title":"","description":"","default":"v3"},"_kad_form_webhook":{"type":"object","title":"","description":"","default":{"url":"","map":[]},"properties":{"url":{"type":"string"},"map":{"type":"object","additionalProperties":{"type":"string"}}},"additionalProperties":false},"_kad_form_autoEmail":{"type":"object","title":"","description":"","default":{"emailTo":"","subject":"","message":"","fromEmail":"","fromName":"","replyTo":"","cc":"","bcc":"","html":true},"properties":{"emailTo":{"type":"string"},"subject":{"type":"string"},"message":{"type":"string"},"fromEmail":{"type":"string"},"fromName":{"type":"string"},"replyTo":{"type":"string"},"cc":{"type":"string"},"bcc":{"type":"string"},"html":{"type":"boolean"}},"additionalProperties":false},"_kad_form_entry":{"type":"object","title":"","description":"","default":{"userIP":true,"userDevice":true},"properties":{"userIP":{"type":"boolean"},"userDevice":{"type":"boolean"}},"additionalProperties":false},"_kad_form_fieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_tabletFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_mobileFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_form_fieldBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_form_description":{"type":"string","title":"","description":"","default":""},"_kad_form_fieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_messages":{"type":"object","title":"","description":"","default":{"success":"","error":"","required":"","invalid":"","recaptchaerror":"","preError":""},"properties":{"success":{"type":"string"},"error":{"type":"string"},"required":{"type":"string"},"invalid":{"type":"string"},"recaptchaerror":{"type":"string"},"preError":{"type":"string"}},"additionalProperties":false},"_kad_form_inputFont":{"type":"object","title":"","description":"","default":{"color":"","colorActive":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"colorActive":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_style":{"type":"object","title":"","description":"","default":{"showRequired":true,"size":"standard","padding":["","","",""],"tabletPadding":["","","",""],"mobilePadding":["","","",""],"paddingUnit":"px","requiredColor":"","background":"","backgroundActive":"","borderActive":"","placeholderColor":"","gradient":"","gradientActive":"","backgroundType":"normal","backgroundActiveType":"normal","boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowActive":[false,"#000000",0.4,2,2,3,0,false],"gap":["","",""],"gapUnit":"px","labelStyle":"normal","basicStyles":true,"isDark":false},"properties":{"showRequired":{"type":"boolean"},"size":{"type":"string"},"padding":{"type":"array"},"tabletPadding":{"type":"array"},"mobilePadding":{"type":"array"},"paddingUnit":{"type":"string"},"requiredColor":{"type":"string"},"background":{"type":"string"},"backgroundActive":{"type":"string"},"borderActive":{"type":"string"},"placeholderColor":{"type":"string"},"gradient":{"type":"string"},"gradientActive":{"type":"string"},"backgroundType":{"type":"string"},"backgroundActiveType":{"type":"string"},"boxShadow":{"type":"array"},"boxShadowActive":{"type":"array"},"gap":{"type":"array"},"gapUnit":{"type":"string"},"labelStyle":{"type":"string"},"basicStyles":{"type":"boolean"},"isDark":{"type":"boolean"}},"additionalProperties":false},"_kad_form_background":{"type":"object","title":"","description":"","default":{"background":"","gradient":"","backgroundType":"normal"},"properties":{"background":{"type":"string"},"gradient":{"type":"string"},"backgroundType":{"type":"string"}},"additionalProperties":false},"_kad_form_labelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_radioLabelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_form_helpFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_form_messageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletMessageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileMessageBorderSuccess":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_messageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_tabletMessageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_mobileMessageBorderError":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_form_anchor":{"type":"string","title":"","description":"","default":""},"_kad_form_className":{"type":"string","title":"","description":"","default":""},"_kad_form_actions":{"type":"array","title":"","description":"","default":["email"],"items":{"type":"string"}},"_kad_form_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMessageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessageBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messageBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tableMessagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessagePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messagePaddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_tabletMessageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_mobileMessageMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_form_messageMarginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_messageColor":{"type":"string","title":"","description":"","default":""},"_kad_form_messageBackground":{"type":"string","title":"","description":"","default":""},"_kad_form_messageColorError":{"type":"string","title":"","description":"","default":""},"_kad_form_messageBackgroundError":{"type":"string","title":"","description":"","default":""},"_kad_form_messageFont":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizetype":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadgoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizetype":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadgoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_form_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_form_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_form_importId":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_form\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_navigation":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_navigation_description":{"type":"string","title":"","description":"","default":""},"_kad_navigation_anchor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_className":{"type":"string","title":"","description":"","default":""},"_kad_navigation_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingDropdownUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginDropdownUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingDropdownLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginDropdownLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_orientation":{"type":"string","title":"","description":"","default":""},"_kad_navigation_orientationTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_orientationMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_spacing":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_spacingTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_spacingMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_style":{"type":"string","title":"","description":"","default":""},"_kad_navigation_styleTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_styleMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_spacingUnit":{"type":"string","title":"","description":"","default":"em"},"_kad_navigation_horizontalLayout":{"type":"string","title":"","description":"","default":"standard"},"_kad_navigation_horizontalLayoutTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalLayoutMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGrid":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGridTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGridMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_stretchFill":{"type":"string","title":"","description":"","default":"standard"},"_kad_navigation_stretchFillTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_stretchFillMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_parentActive":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentActiveTablet":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentActiveMobile":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_collapseSubMenus":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_collapseSubMenusTablet":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_collapseSubMenusMobile":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_parentTogglesMenus":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentTogglesMenusTablet":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentTogglesMenusMobile":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_linkColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_background":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdown":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdown":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparent":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparent":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorSticky":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundSticky":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_divider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_typography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_descriptionTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownDescriptionTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownWidth":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_dropdownVerticalSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingUnit":{"type":"string","title":"","description":"","default":"em"},"_kad_navigation_dropdownHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_dropdownDescriptionSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_descriptionPositioning":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_descriptionPositioningTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionPositioningMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionPositioning":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_dropdownDescriptionPositioningTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionPositioningMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownShadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.1,"spread":0,"blur":13,"hOffset":0,"vOffset":2,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownReveal":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownRevealTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownRevealMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownBorder":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderRadius":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_backgroundType":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundTypeHover":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundTypeActive":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundGradient":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundGradientHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundGradientActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_border":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHover":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHoverTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHoverMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActive":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActiveTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActiveMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHover":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHoverTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHoverMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActive":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActiveTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActiveMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_borderRadiusUnitHover":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_borderRadiusUnitActive":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_shadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_shadowHover":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_shadowActive":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_linkHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_enableScrollSpy":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_scrollSpyOffsetManual":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffset":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffsetTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffsetMobile":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_navigation"}]}},"\/wp\/v2\/kadence_navigation\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_navigation_description":{"type":"string","title":"","description":"","default":""},"_kad_navigation_anchor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_className":{"type":"string","title":"","description":"","default":""},"_kad_navigation_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingDropdownUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginDropdownUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingDropdownLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginDropdownLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_orientation":{"type":"string","title":"","description":"","default":""},"_kad_navigation_orientationTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_orientationMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_spacing":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_spacingTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_spacingMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_style":{"type":"string","title":"","description":"","default":""},"_kad_navigation_styleTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_styleMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_spacingUnit":{"type":"string","title":"","description":"","default":"em"},"_kad_navigation_horizontalLayout":{"type":"string","title":"","description":"","default":"standard"},"_kad_navigation_horizontalLayoutTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalLayoutMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGrid":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGridTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGridMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_stretchFill":{"type":"string","title":"","description":"","default":"standard"},"_kad_navigation_stretchFillTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_stretchFillMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_parentActive":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentActiveTablet":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentActiveMobile":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_collapseSubMenus":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_collapseSubMenusTablet":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_collapseSubMenusMobile":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_parentTogglesMenus":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentTogglesMenusTablet":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentTogglesMenusMobile":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_linkColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_background":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdown":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdown":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparent":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparent":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorSticky":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundSticky":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_divider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_typography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_descriptionTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownDescriptionTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownWidth":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_dropdownVerticalSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingUnit":{"type":"string","title":"","description":"","default":"em"},"_kad_navigation_dropdownHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_dropdownDescriptionSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_descriptionPositioning":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_descriptionPositioningTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionPositioningMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionPositioning":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_dropdownDescriptionPositioningTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionPositioningMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownShadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.1,"spread":0,"blur":13,"hOffset":0,"vOffset":2,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownReveal":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownRevealTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownRevealMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownBorder":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderRadius":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_backgroundType":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundTypeHover":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundTypeActive":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundGradient":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundGradientHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundGradientActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_border":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHover":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHoverTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHoverMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActive":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActiveTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActiveMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHover":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHoverTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHoverMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActive":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActiveTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActiveMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_borderRadiusUnitHover":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_borderRadiusUnitActive":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_shadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_shadowHover":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_shadowActive":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_linkHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_enableScrollSpy":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_scrollSpyOffsetManual":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffset":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffsetTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffsetMobile":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_navigation\/auto-draft":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_navigation\/auto-draft"}]}},"\/wp\/v2\/kadence_navigation\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_navigation\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_navigation\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_navigation_description":{"type":"string","title":"","description":"","default":""},"_kad_navigation_anchor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_className":{"type":"string","title":"","description":"","default":""},"_kad_navigation_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingDropdownUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginDropdown":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginDropdownUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_paddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletPaddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobilePaddingDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_paddingDropdownLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_marginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_tabletMarginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_mobileMarginDropdownLink":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_marginDropdownLinkUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_orientation":{"type":"string","title":"","description":"","default":""},"_kad_navigation_orientationTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_orientationMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_spacing":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_spacingTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_spacingMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_style":{"type":"string","title":"","description":"","default":""},"_kad_navigation_styleTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_styleMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_spacingUnit":{"type":"string","title":"","description":"","default":"em"},"_kad_navigation_horizontalLayout":{"type":"string","title":"","description":"","default":"standard"},"_kad_navigation_horizontalLayoutTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalLayoutMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGrid":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGridTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_horizontalGridMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_stretchFill":{"type":"string","title":"","description":"","default":"standard"},"_kad_navigation_stretchFillTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_stretchFillMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_parentActive":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentActiveTablet":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentActiveMobile":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_collapseSubMenus":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_collapseSubMenusTablet":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_collapseSubMenusMobile":{"type":"boolean","title":"","description":"","default":true},"_kad_navigation_parentTogglesMenus":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentTogglesMenusTablet":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_parentTogglesMenusMobile":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_linkColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_background":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdown":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorDropdownActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdown":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundDropdownActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparent":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorTransparentActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparent":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundTransparentActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorSticky":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkColorStickyActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundSticky":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundStickyActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColor":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHoverTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActiveTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorHoverMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionColorActiveMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_divider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_transparentDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDivider":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDividerTablet":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_stickyDividerMobile":{"type":"array","title":"","description":"","default":[{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_typography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_descriptionTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownDescriptionTypography":{"type":"array","title":"","description":"","default":[{"size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true}],"items":{"type":"object","properties":{"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownWidth":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_dropdownVerticalSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownVerticalSpacingUnit":{"type":"string","title":"","description":"","default":"em"},"_kad_navigation_dropdownHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionSpacingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_dropdownDescriptionSpacing":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionSpacingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_descriptionPositioning":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_descriptionPositioningTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_descriptionPositioningMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionPositioning":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_dropdownDescriptionPositioningTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownDescriptionPositioningMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownShadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.1,"spread":0,"blur":13,"hOffset":0,"vOffset":2,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_dropdownReveal":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownRevealTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownRevealMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownBorder":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_dropdownBorderRadius":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_navigation_dropdownBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_backgroundType":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundTypeHover":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundTypeActive":{"type":"string","title":"","description":"","default":"normal"},"_kad_navigation_backgroundGradient":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundGradientHover":{"type":"string","title":"","description":"","default":""},"_kad_navigation_backgroundGradientActive":{"type":"string","title":"","description":"","default":""},"_kad_navigation_border":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHover":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHoverTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderHoverMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActive":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActiveTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderActiveMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_navigation_borderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHover":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHoverTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusHoverMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActive":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActiveTablet":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusActiveMobile":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_navigation_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_borderRadiusUnitHover":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_borderRadiusUnitActive":{"type":"string","title":"","description":"","default":"px"},"_kad_navigation_shadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_shadowHover":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_shadowActive":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":1,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_navigation_linkHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_linkHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignment":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignmentTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_dropdownLinkHorizontalAlignmentMobile":{"type":"string","title":"","description":"","default":""},"_kad_navigation_enableScrollSpy":{"type":"boolean","title":"","description":"","default":false},"_kad_navigation_scrollSpyOffsetManual":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffset":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffsetTablet":{"type":"string","title":"","description":"","default":""},"_kad_navigation_scrollSpyOffsetMobile":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_navigation\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_header":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_header_description":{"type":"string","title":"","description":"","default":""},"_kad_header_typography":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_header_border":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadius":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_borderTransparent":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTransparentTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTransparentMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadiusTransparent":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_borderSticky":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderStickyTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderStickyMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadiusSticky":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_background":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_backgroundTransparent":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_backgroundSticky":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_anchor":{"type":"string","title":"","description":"","default":""},"_kad_header_className":{"type":"string","title":"","description":"","default":""},"_kad_header_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_linkColor":{"type":"string","title":"","description":"","default":""},"_kad_header_linkHoverColor":{"type":"string","title":"","description":"","default":""},"_kad_header_height":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_header_heightUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_width":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_header_widthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_isSticky":{"type":"string","title":"","description":"","default":""},"_kad_header_isStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_isStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparent":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_autoTransparentSpacing":{"type":"boolean","title":"","description":"","default":false},"_kad_header_stickySection":{"type":"string","title":"","description":"","default":""},"_kad_header_stickySectionTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_stickySectionMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMain":{"type":"boolean","title":"","description":"","default":false},"_kad_header_shrinkMainHeight":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMainHeightTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMainHeightMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_revealScrollUp":{"type":"boolean","title":"","description":"","default":false},"_kad_header_inheritPostTransparent":{"type":"boolean","title":"","description":"","default":true},"_kad_header_disableTransparentOverrides":{"type":"array","title":"","description":"","default":[],"items":{"type":"string"}},"_kad_header_shadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":0,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_header_headerTag":{"type":"string","title":"","description":"","default":""},"_kad_header_mobileBreakpoint":{"type":"number","title":"","description":"","default":0},"_kad_header_pro_backdropFilterType":{"type":"string","title":"","description":"","default":""},"_kad_header_pro_backdropFilterSize":{"type":"number","title":"","description":"","default":1},"_kad_header_pro_backdropFilterString":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_header"}]}},"\/wp\/v2\/kadence_header\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_header_description":{"type":"string","title":"","description":"","default":""},"_kad_header_typography":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_header_border":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadius":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_borderTransparent":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTransparentTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTransparentMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadiusTransparent":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_borderSticky":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderStickyTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderStickyMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadiusSticky":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_background":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_backgroundTransparent":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_backgroundSticky":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_anchor":{"type":"string","title":"","description":"","default":""},"_kad_header_className":{"type":"string","title":"","description":"","default":""},"_kad_header_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_linkColor":{"type":"string","title":"","description":"","default":""},"_kad_header_linkHoverColor":{"type":"string","title":"","description":"","default":""},"_kad_header_height":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_header_heightUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_width":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_header_widthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_isSticky":{"type":"string","title":"","description":"","default":""},"_kad_header_isStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_isStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparent":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_autoTransparentSpacing":{"type":"boolean","title":"","description":"","default":false},"_kad_header_stickySection":{"type":"string","title":"","description":"","default":""},"_kad_header_stickySectionTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_stickySectionMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMain":{"type":"boolean","title":"","description":"","default":false},"_kad_header_shrinkMainHeight":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMainHeightTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMainHeightMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_revealScrollUp":{"type":"boolean","title":"","description":"","default":false},"_kad_header_inheritPostTransparent":{"type":"boolean","title":"","description":"","default":true},"_kad_header_disableTransparentOverrides":{"type":"array","title":"","description":"","default":[],"items":{"type":"string"}},"_kad_header_shadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":0,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_header_headerTag":{"type":"string","title":"","description":"","default":""},"_kad_header_mobileBreakpoint":{"type":"number","title":"","description":"","default":0},"_kad_header_pro_backdropFilterType":{"type":"string","title":"","description":"","default":""},"_kad_header_pro_backdropFilterSize":{"type":"number","title":"","description":"","default":1},"_kad_header_pro_backdropFilterString":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_header\/auto-draft":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_header\/auto-draft"}]}},"\/wp\/v2\/kadence_header\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_header\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_header\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_header_description":{"type":"string","title":"","description":"","default":""},"_kad_header_typography":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_header_border":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadius":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_borderTransparent":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTransparentTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderTransparentMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadiusTransparent":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusTransparentUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_borderSticky":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderStickyTablet":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderStickyMobile":{"type":"array","title":"","description":"","default":[{"top":["","solid",""],"right":["","solid",""],"bottom":["","solid",""],"left":["","solid",""],"unit":"px"}],"items":{"type":"object","properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"_kad_header_borderRadiusSticky":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyTablet":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyMobile":{"type":"array","title":"","description":"","default":[0,0,0,0],"items":{"type":"integer"}},"_kad_header_borderRadiusStickyUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_background":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_backgroundTransparent":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_backgroundSticky":{"type":"object","title":"","description":"","default":{"color":"","image":"","imageID":"","position":"center center","size":"cover","repeat":"no-repeat","attachment":"scroll","type":"normal","gradient":""},"properties":{"color":{"type":"string"},"image":{"type":"string"},"imageID":{"type":"string"},"position":{"type":"string"},"size":{"type":"string"},"repeat":{"type":"string"},"attachment":{"type":"string"},"type":{"type":"string"},"gradient":{"type":"string"}},"additionalProperties":false},"_kad_header_anchor":{"type":"string","title":"","description":"","default":""},"_kad_header_className":{"type":"string","title":"","description":"","default":""},"_kad_header_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_header_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_linkColor":{"type":"string","title":"","description":"","default":""},"_kad_header_linkHoverColor":{"type":"string","title":"","description":"","default":""},"_kad_header_height":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_header_heightUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_width":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_header_widthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_header_isSticky":{"type":"string","title":"","description":"","default":""},"_kad_header_isStickyTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_isStickyMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparent":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparentTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_isTransparentMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_autoTransparentSpacing":{"type":"boolean","title":"","description":"","default":false},"_kad_header_stickySection":{"type":"string","title":"","description":"","default":""},"_kad_header_stickySectionTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_stickySectionMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMain":{"type":"boolean","title":"","description":"","default":false},"_kad_header_shrinkMainHeight":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMainHeightTablet":{"type":"string","title":"","description":"","default":""},"_kad_header_shrinkMainHeightMobile":{"type":"string","title":"","description":"","default":""},"_kad_header_revealScrollUp":{"type":"boolean","title":"","description":"","default":false},"_kad_header_inheritPostTransparent":{"type":"boolean","title":"","description":"","default":true},"_kad_header_disableTransparentOverrides":{"type":"array","title":"","description":"","default":[],"items":{"type":"string"}},"_kad_header_shadow":{"type":"array","title":"","description":"","default":[{"enable":false,"color":"#000000","opacity":0.2,"spread":0,"blur":2,"hOffset":0,"vOffset":1,"inset":false}],"items":{"type":"object","properties":{"enable":{"type":"boolean"},"color":{"type":"string"},"opacity":{"type":"number"},"spread":{"type":"number"},"blur":{"type":"number"},"hOffset":{"type":"number"},"vOffset":{"type":"number"},"inset":{"type":"boolean"}},"additionalProperties":false}},"_kad_header_headerTag":{"type":"string","title":"","description":"","default":""},"_kad_header_mobileBreakpoint":{"type":"number","title":"","description":"","default":0},"_kad_header_pro_backdropFilterType":{"type":"string","title":"","description":"","default":""},"_kad_header_pro_backdropFilterSize":{"type":"number","title":"","description":"","default":1},"_kad_header_pro_backdropFilterString":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_header\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_custom_svg":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_custom_svg"}]}},"\/wp\/v2\/kadence_custom_svg\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_custom_svg\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_custom_svg\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_custom_svg\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_custom_svg\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_query":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_query_facets":{"type":"array","title":"","description":"","default":[],"items":{"type":"object","properties":{"hash":{"type":"integer"},"attributes":{"type":"string"}},"additionalProperties":false}},"_kad_query_related":{"type":"boolean","title":"","description":"","default":false},"_kad_query_description":{"type":"string","title":"","description":"","default":""},"_kad_query_anchor":{"type":"string","title":"","description":"","default":""},"_kad_query_query":{"type":"object","title":"","description":"","default":{"perPage":"10","pages":0,"offset":0,"postType":["post"],"taxonomy":[],"order":"desc","orderBy":"date","orderMetaKey":"","orderMetaKeyType":"","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":"","parents":[],"limit":0,"comparisonLogic":"AND","infiniteScroll":false},"properties":{"perPage":{"type":"string"},"pages":{"type":"integer"},"offset":{"type":"integer"},"postType":{"type":"array"},"taxonomy":{"type":"array"},"order":{"type":"string"},"orderBy":{"type":"string"},"orderMetaKey":{"type":"string"},"orderMetaKeyType":{"type":"string"},"author":{"type":"string"},"search":{"type":"string"},"exclude":{"type":"array"},"sticky":{"type":"string"},"inherit":{"type":"boolean"},"taxQuery":{"type":"string"},"parents":{"type":"array"},"limit":{"type":"integer"},"comparisonLogic":{"type":"string"},"infiniteScroll":{"type":"boolean"}},"additionalProperties":false},"_kad_query_animation":{"type":"string","title":"","description":"","default":""},"_kad_query_masonryLayout":{"type":"boolean","title":"","description":"","default":false},"_kad_query_specificPosts":{"type":"array","title":"","description":"","default":[],"items":{"type":"integers"}},"_kad_query_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_fieldAlign":{"type":"string","title":"","description":"","default":""},"_kad_query_fieldMaxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_fieldMaxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_labelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_query_radioLabelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_query_inputFont":{"type":"object","title":"","description":"","default":{"color":"","colorActive":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"colorActive":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_query_style":{"type":"object","title":"","description":"","default":{"size":"standard","padding":["","","",""],"tabletPadding":["","","",""],"mobilePadding":["","","",""],"paddingUnit":"px","background":"","backgroundActive":"","borderActive":"","placeholderColor":"","gradient":"","gradientActive":"","backgroundType":"normal","backgroundActiveType":"normal","boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowActive":[false,"#000000",0.4,2,2,3,0,false],"labelStyle":"normal","basicStyles":true,"isDark":false},"properties":{"size":{"type":"string"},"padding":{"type":"array"},"tabletPadding":{"type":"array"},"mobilePadding":{"type":"array"},"paddingUnit":{"type":"string"},"background":{"type":"string"},"backgroundActive":{"type":"string"},"borderActive":{"type":"string"},"placeholderColor":{"type":"string"},"gradient":{"type":"string"},"gradientActive":{"type":"string"},"backgroundType":{"type":"string"},"backgroundActiveType":{"type":"string"},"boxShadow":{"type":"array"},"boxShadowActive":{"type":"array"},"labelStyle":{"type":"string"},"basicStyles":{"type":"boolean"},"isDark":{"type":"boolean"}},"additionalProperties":false},"_kad_query_fieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_tabletFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_mobileFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_fieldBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_fieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_tabletFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_mobileFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_query"}]}},"\/wp\/v2\/kadence_query\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_query_facets":{"type":"array","title":"","description":"","default":[],"items":{"type":"object","properties":{"hash":{"type":"integer"},"attributes":{"type":"string"}},"additionalProperties":false}},"_kad_query_related":{"type":"boolean","title":"","description":"","default":false},"_kad_query_description":{"type":"string","title":"","description":"","default":""},"_kad_query_anchor":{"type":"string","title":"","description":"","default":""},"_kad_query_query":{"type":"object","title":"","description":"","default":{"perPage":"10","pages":0,"offset":0,"postType":["post"],"taxonomy":[],"order":"desc","orderBy":"date","orderMetaKey":"","orderMetaKeyType":"","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":"","parents":[],"limit":0,"comparisonLogic":"AND","infiniteScroll":false},"properties":{"perPage":{"type":"string"},"pages":{"type":"integer"},"offset":{"type":"integer"},"postType":{"type":"array"},"taxonomy":{"type":"array"},"order":{"type":"string"},"orderBy":{"type":"string"},"orderMetaKey":{"type":"string"},"orderMetaKeyType":{"type":"string"},"author":{"type":"string"},"search":{"type":"string"},"exclude":{"type":"array"},"sticky":{"type":"string"},"inherit":{"type":"boolean"},"taxQuery":{"type":"string"},"parents":{"type":"array"},"limit":{"type":"integer"},"comparisonLogic":{"type":"string"},"infiniteScroll":{"type":"boolean"}},"additionalProperties":false},"_kad_query_animation":{"type":"string","title":"","description":"","default":""},"_kad_query_masonryLayout":{"type":"boolean","title":"","description":"","default":false},"_kad_query_specificPosts":{"type":"array","title":"","description":"","default":[],"items":{"type":"integers"}},"_kad_query_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_fieldAlign":{"type":"string","title":"","description":"","default":""},"_kad_query_fieldMaxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_fieldMaxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_labelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_query_radioLabelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_query_inputFont":{"type":"object","title":"","description":"","default":{"color":"","colorActive":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"colorActive":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_query_style":{"type":"object","title":"","description":"","default":{"size":"standard","padding":["","","",""],"tabletPadding":["","","",""],"mobilePadding":["","","",""],"paddingUnit":"px","background":"","backgroundActive":"","borderActive":"","placeholderColor":"","gradient":"","gradientActive":"","backgroundType":"normal","backgroundActiveType":"normal","boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowActive":[false,"#000000",0.4,2,2,3,0,false],"labelStyle":"normal","basicStyles":true,"isDark":false},"properties":{"size":{"type":"string"},"padding":{"type":"array"},"tabletPadding":{"type":"array"},"mobilePadding":{"type":"array"},"paddingUnit":{"type":"string"},"background":{"type":"string"},"backgroundActive":{"type":"string"},"borderActive":{"type":"string"},"placeholderColor":{"type":"string"},"gradient":{"type":"string"},"gradientActive":{"type":"string"},"backgroundType":{"type":"string"},"backgroundActiveType":{"type":"string"},"boxShadow":{"type":"array"},"boxShadowActive":{"type":"array"},"labelStyle":{"type":"string"},"basicStyles":{"type":"boolean"},"isDark":{"type":"boolean"}},"additionalProperties":false},"_kad_query_fieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_tabletFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_mobileFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_fieldBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_fieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_tabletFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_mobileFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_query\/auto-draft":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_query\/auto-draft"}]}},"\/wp\/v2\/kadence_query\/query":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"pg":{"description":"The results page requested.","type":"integer","default":1,"required":false},"fe":{"description":"If the request is coming from the frontend block.","type":"boolean","default":false,"required":false},"ql_id":{"description":"The query loop post id.","type":"integer","default":0,"required":false}}},{"methods":["POST"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"pg":{"description":"The results page requested.","type":"integer","default":1,"required":false},"fe":{"description":"If the request is coming from the frontend block.","type":"boolean","default":false,"required":false},"ql_id":{"description":"The query loop post id.","type":"integer","default":0,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_query\/query"}]}},"\/wp\/v2\/kadence_query\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_query\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_query\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_query_facets":{"type":"array","title":"","description":"","default":[],"items":{"type":"object","properties":{"hash":{"type":"integer"},"attributes":{"type":"string"}},"additionalProperties":false}},"_kad_query_related":{"type":"boolean","title":"","description":"","default":false},"_kad_query_description":{"type":"string","title":"","description":"","default":""},"_kad_query_anchor":{"type":"string","title":"","description":"","default":""},"_kad_query_query":{"type":"object","title":"","description":"","default":{"perPage":"10","pages":0,"offset":0,"postType":["post"],"taxonomy":[],"order":"desc","orderBy":"date","orderMetaKey":"","orderMetaKeyType":"","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":"","parents":[],"limit":0,"comparisonLogic":"AND","infiniteScroll":false},"properties":{"perPage":{"type":"string"},"pages":{"type":"integer"},"offset":{"type":"integer"},"postType":{"type":"array"},"taxonomy":{"type":"array"},"order":{"type":"string"},"orderBy":{"type":"string"},"orderMetaKey":{"type":"string"},"orderMetaKeyType":{"type":"string"},"author":{"type":"string"},"search":{"type":"string"},"exclude":{"type":"array"},"sticky":{"type":"string"},"inherit":{"type":"boolean"},"taxQuery":{"type":"string"},"parents":{"type":"array"},"limit":{"type":"integer"},"comparisonLogic":{"type":"string"},"infiniteScroll":{"type":"boolean"}},"additionalProperties":false},"_kad_query_animation":{"type":"string","title":"","description":"","default":""},"_kad_query_masonryLayout":{"type":"boolean","title":"","description":"","default":false},"_kad_query_specificPosts":{"type":"array","title":"","description":"","default":[],"items":{"type":"integers"}},"_kad_query_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_fieldAlign":{"type":"string","title":"","description":"","default":""},"_kad_query_fieldMaxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_fieldMaxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_labelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_query_radioLabelFont":{"type":"object","title":"","description":"","default":{"color":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"px","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true},"properties":{"color":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"}},"additionalProperties":false},"_kad_query_inputFont":{"type":"object","title":"","description":"","default":{"color":"","colorActive":"","size":["","",""],"sizeType":"px","lineHeight":["","",""],"lineType":"","letterSpacing":["","",""],"letterType":"","textTransform":"","family":"","google":false,"style":"","weight":"","variant":"","subset":"","loadGoogle":true,"padding":["","","",""],"margin":["","","",""]},"properties":{"color":{"type":"string"},"colorActive":{"type":"string"},"size":{"type":"array"},"sizeType":{"type":"string"},"lineHeight":{"type":"array"},"lineType":{"type":"string"},"letterSpacing":{"type":"array"},"letterType":{"type":"string"},"textTransform":{"type":"string"},"family":{"type":"string"},"google":{"type":"boolean"},"style":{"type":"string"},"weight":{"type":"string"},"variant":{"type":"string"},"subset":{"type":"string"},"loadGoogle":{"type":"boolean"},"padding":{"type":"array"},"margin":{"type":"array"}},"additionalProperties":false},"_kad_query_style":{"type":"object","title":"","description":"","default":{"size":"standard","padding":["","","",""],"tabletPadding":["","","",""],"mobilePadding":["","","",""],"paddingUnit":"px","background":"","backgroundActive":"","borderActive":"","placeholderColor":"","gradient":"","gradientActive":"","backgroundType":"normal","backgroundActiveType":"normal","boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowActive":[false,"#000000",0.4,2,2,3,0,false],"labelStyle":"normal","basicStyles":true,"isDark":false},"properties":{"size":{"type":"string"},"padding":{"type":"array"},"tabletPadding":{"type":"array"},"mobilePadding":{"type":"array"},"paddingUnit":{"type":"string"},"background":{"type":"string"},"backgroundActive":{"type":"string"},"borderActive":{"type":"string"},"placeholderColor":{"type":"string"},"gradient":{"type":"string"},"gradientActive":{"type":"string"},"backgroundType":{"type":"string"},"backgroundActiveType":{"type":"string"},"boxShadow":{"type":"array"},"boxShadowActive":{"type":"array"},"labelStyle":{"type":"string"},"basicStyles":{"type":"boolean"},"isDark":{"type":"boolean"}},"additionalProperties":false},"_kad_query_fieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_tabletFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_mobileFieldBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":"string"}},"_kad_query_fieldBorderRadiusUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_fieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_tabletFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_mobileFieldBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_query\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_query_card":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_query_card_borderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_tabletBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_mobileBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_borderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_tabletBorderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_mobileBorderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_borderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_tabletBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_mobileBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_query_card_borderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_tabletBorderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_mobileBorderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_borderHoverRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_query_card_description":{"type":"string","title":"","description":"","default":""},"_kad_query_card_preview_post_type":{"type":"string","title":"","description":"","default":"post"},"_kad_query_card_template_post_type":{"type":"string","title":"","description":"","default":""},"_kad_query_card_template_post_id":{"type":"integer","title":"","description":"","default":0},"_kad_query_card_anchor":{"type":"string","title":"","description":"","default":""},"_kad_query_card_postType":{"type":"string","title":"","description":"","default":""},"_kad_query_card_namespace":{"type":"string","title":"","description":"","default":""},"_kad_query_card_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_card_columns":{"type":"array","title":"","description":"","default":["2","",""],"items":{"type":"string"}},"_kad_query_card_rowGap":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_card_rowGapUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_columnGap":{"type":"array","title":"","description":"","default":["20","",""],"items":{"type":"string"}},"_kad_query_card_columnGapUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_boxShadow":{"type":"object","title":"","description":"","default":{"boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowHover":[false,"#000000",0.4,2,2,3,0,false]},"properties":{"boxShadow":{"type":"array"},"boxShadowHover":{"type":"array"}},"additionalProperties":false},"_kad_query_card_backgroundType":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_gradient":{"type":"string","title":"","description":"","default":""},"_kad_query_card_background":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_backgroundHoverType":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_gradientHover":{"type":"string","title":"","description":"","default":""},"_kad_query_card_backgroundHover":{"type":"string","title":"","description":"","default":"normal"}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_query_card"}]}},"\/wp\/v2\/kadence_query_card\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_query_card_borderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_tabletBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_mobileBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_borderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_tabletBorderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_mobileBorderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_borderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_tabletBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_mobileBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_query_card_borderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_tabletBorderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_mobileBorderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_borderHoverRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_query_card_description":{"type":"string","title":"","description":"","default":""},"_kad_query_card_preview_post_type":{"type":"string","title":"","description":"","default":"post"},"_kad_query_card_template_post_type":{"type":"string","title":"","description":"","default":""},"_kad_query_card_template_post_id":{"type":"integer","title":"","description":"","default":0},"_kad_query_card_anchor":{"type":"string","title":"","description":"","default":""},"_kad_query_card_postType":{"type":"string","title":"","description":"","default":""},"_kad_query_card_namespace":{"type":"string","title":"","description":"","default":""},"_kad_query_card_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_card_columns":{"type":"array","title":"","description":"","default":["2","",""],"items":{"type":"string"}},"_kad_query_card_rowGap":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_card_rowGapUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_columnGap":{"type":"array","title":"","description":"","default":["20","",""],"items":{"type":"string"}},"_kad_query_card_columnGapUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_boxShadow":{"type":"object","title":"","description":"","default":{"boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowHover":[false,"#000000",0.4,2,2,3,0,false]},"properties":{"boxShadow":{"type":"array"},"boxShadowHover":{"type":"array"}},"additionalProperties":false},"_kad_query_card_backgroundType":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_gradient":{"type":"string","title":"","description":"","default":""},"_kad_query_card_background":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_backgroundHoverType":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_gradientHover":{"type":"string","title":"","description":"","default":""},"_kad_query_card_backgroundHover":{"type":"string","title":"","description":"","default":"normal"}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_query_card\/auto-draft":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_query_card\/auto-draft"}]}},"\/wp\/v2\/kadence_query_card\/query":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"pg":{"description":"The results page requested.","type":"integer","default":1,"required":false},"fe":{"description":"If the request is coming from the frontend block.","type":"boolean","default":false,"required":false},"ql_id":{"description":"The query loop post id.","type":"integer","default":0,"required":false}}},{"methods":["POST"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"author_exclude":{"description":"Ensure result set excludes posts assigned to specific authors.","type":"array","items":{"type":"integer"},"default":[],"required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"pg":{"description":"The results page requested.","type":"integer","default":1,"required":false},"fe":{"description":"If the request is coming from the frontend block.","type":"boolean","default":false,"required":false},"ql_id":{"description":"The query loop post id.","type":"integer","default":0,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_query_card\/query"}]}},"\/wp\/v2\/kadence_query_card\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_query_card\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_query_card\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"author":{"description":"The ID for the author of the post.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false},"footnotes":{"type":"string","title":"","description":"","default":""},"_kad_query_card_borderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_tabletBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_mobileBorderStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_borderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_tabletBorderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_mobileBorderHoverStyle":{"type":"object","title":"","description":"","default":{"top":["","",""],"right":["","",""],"bottom":["","",""],"left":["","",""],"unit":""},"properties":{"top":{"type":"array"},"right":{"type":"array"},"bottom":{"type":"array"},"left":{"type":"array"},"unit":{"type":"string"}},"additionalProperties":false},"_kad_query_card_borderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_tabletBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_mobileBorderRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_borderRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_query_card_borderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_tabletBorderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_mobileBorderHoverRadius":{"type":"array","title":"","description":"","default":["","","",""],"properties":["","","",""]},"_kad_query_card_borderHoverRadiusUnit":{"type":"string","title":"","description":"","default":"px","properties":"px"},"_kad_query_card_description":{"type":"string","title":"","description":"","default":""},"_kad_query_card_preview_post_type":{"type":"string","title":"","description":"","default":"post"},"_kad_query_card_template_post_type":{"type":"string","title":"","description":"","default":""},"_kad_query_card_template_post_id":{"type":"integer","title":"","description":"","default":0},"_kad_query_card_anchor":{"type":"string","title":"","description":"","default":""},"_kad_query_card_postType":{"type":"string","title":"","description":"","default":""},"_kad_query_card_namespace":{"type":"string","title":"","description":"","default":""},"_kad_query_card_padding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_tabletPadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_mobilePadding":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_paddingUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_margin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_tabletMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_mobileMargin":{"type":"array","title":"","description":"","default":["","","",""],"items":{"type":["string","integer"]}},"_kad_query_card_marginUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_maxWidthUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_maxWidth":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_card_columns":{"type":"array","title":"","description":"","default":["2","",""],"items":{"type":"string"}},"_kad_query_card_rowGap":{"type":"array","title":"","description":"","default":["","",""],"items":{"type":"string"}},"_kad_query_card_rowGapUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_columnGap":{"type":"array","title":"","description":"","default":["20","",""],"items":{"type":"string"}},"_kad_query_card_columnGapUnit":{"type":"string","title":"","description":"","default":"px"},"_kad_query_card_boxShadow":{"type":"object","title":"","description":"","default":{"boxShadow":[false,"#000000",0.2,1,1,2,0,false],"boxShadowHover":[false,"#000000",0.4,2,2,3,0,false]},"properties":{"boxShadow":{"type":"array"},"boxShadowHover":{"type":"array"}},"additionalProperties":false},"_kad_query_card_backgroundType":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_gradient":{"type":"string","title":"","description":"","default":""},"_kad_query_card_background":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_backgroundHoverType":{"type":"string","title":"","description":"","default":"normal"},"_kad_query_card_gradientHover":{"type":"string","title":"","description":"","default":""},"_kad_query_card_backgroundHover":{"type":"string","title":"","description":"","default":"normal"}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_query_card\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/product":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","popularity","rating","post__in","price","sales","menu_order","random","popularity","rating"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false},"tax_relation":{"description":"Limit result set based on relationship between multiple taxonomies.","type":"string","enum":["AND","OR"],"required":false},"product_brand":{"description":"Limit result set to items with specific terms assigned in the product_brand taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"product_brand_exclude":{"description":"Limit result set to items except those with specific terms assigned in the product_brand taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false}},"additionalProperties":false}],"required":false},"product_cat":{"description":"Limit result set to items with specific terms assigned in the product_cat taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"product_cat_exclude":{"description":"Limit result set to items except those with specific terms assigned in the product_cat taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"include_children":{"description":"Whether to include child terms in the terms limiting the result set.","type":"boolean","default":false}},"additionalProperties":false}],"required":false},"product_tag":{"description":"Limit result set to items with specific terms assigned in the product_tag taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]},"operator":{"description":"Whether items must be assigned all or any of the specified terms.","type":"string","enum":["AND","OR"],"default":"OR"}},"additionalProperties":false}],"required":false},"product_tag_exclude":{"description":"Limit result set to items except those with specific terms assigned in the product_tag taxonomy.","type":["object","array"],"oneOf":[{"title":"Term ID List","description":"Match terms with the listed IDs.","type":"array","items":{"type":"integer"}},{"title":"Term ID Taxonomy Query","description":"Perform an advanced term query.","type":"object","properties":{"terms":{"description":"Term IDs.","type":"array","items":{"type":"integer"},"default":[]}},"additionalProperties":false}],"required":false},"brand":{"description":"Limit result set to products assigned a specific brand ID.","type":"string","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"product_brand":{"description":"The terms assigned to the post in the product_brand taxonomy.","type":"array","items":{"type":"integer"},"required":false},"product_cat":{"description":"The terms assigned to the post in the product_cat taxonomy.","type":"array","items":{"type":"integer"},"required":false},"product_tag":{"description":"The terms assigned to the post in the product_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/product"}]}},"\/wp\/v2\/product\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"excerpt_length":{"description":"Override the default excerpt length.","type":"integer","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"product_brand":{"description":"The terms assigned to the post in the product_brand taxonomy.","type":"array","items":{"type":"integer"},"required":false},"product_cat":{"description":"The terms assigned to the post in the product_cat taxonomy.","type":"array","items":{"type":"integer"},"required":false},"product_tag":{"description":"The terms assigned to the post in the product_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/product\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"excerpt":{"description":"The excerpt for the post.","type":"object","properties":{"raw":{"description":"Excerpt for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML excerpt for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true},"protected":{"description":"Whether the excerpt is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"featured_media":{"description":"The ID of the featured media for the post.","type":"integer","required":false},"comment_status":{"description":"Whether or not comments are open on the post.","type":"string","enum":["open","closed"],"required":false},"ping_status":{"description":"Whether or not the post can be pinged.","type":"string","enum":["open","closed"],"required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_kad_blocks_custom_css":{"type":"string","title":"","description":"","default":""},"_kad_blocks_head_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_body_custom_js":{"type":"string","title":"","description":"","default":""},"_kad_blocks_footer_custom_js":{"type":"string","title":"","description":"","default":""},"_kadence_starter_templates_imported_post":{"type":"boolean","title":"","description":"","default":false},"_kad_post_transparent":{"type":"string","title":"","description":"","default":""},"_kad_post_title":{"type":"string","title":"","description":"","default":""},"_kad_post_layout":{"type":"string","title":"","description":"","default":""},"_kad_post_sidebar_id":{"type":"string","title":"","description":"","default":""},"_kad_post_content_style":{"type":"string","title":"","description":"","default":""},"_kad_post_vertical_padding":{"type":"string","title":"","description":"","default":""},"_kad_post_feature":{"type":"string","title":"","description":"","default":""},"_kad_post_feature_position":{"type":"string","title":"","description":"","default":""},"_kad_post_header":{"type":"boolean","title":"","description":"","default":false},"_kad_post_footer":{"type":"boolean","title":"","description":"","default":false}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false},"product_brand":{"description":"The terms assigned to the post in the product_brand taxonomy.","type":"array","items":{"type":"integer"},"required":false},"product_cat":{"description":"The terms assigned to the post in the product_cat taxonomy.","type":"array","items":{"type":"integer"},"required":false},"product_tag":{"description":"The terms assigned to the post in the product_tag taxonomy.","type":"array","items":{"type":"integer"},"required":false}}}]},"\/wp\/v2\/product\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_lottie":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_lottie"}]}},"\/wp\/v2\/kadence_lottie\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_lottie\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_lottie\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_lottie\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_lottie\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kadence_vector":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kadence_vector"}]}},"\/wp\/v2\/kadence_vector\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/kadence_vector\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by object attribute.","type":"string","default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"required":false}}}]},"\/wp\/v2\/kadence_vector\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["DELETE"],"args":{"parent":{"description":"The ID for the parent of the revision.","type":"integer","required":false},"id":{"description":"Unique identifier for the revision.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as revisions do not support trashing.","required":false}}}]},"\/wp\/v2\/kadence_vector\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/kadence_vector\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/kb_icon":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/kb_icon"}]}},"\/wp\/v2\/kb_icon\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"title":{"description":"The title for the post.","type":"object","properties":{"raw":{"description":"Title for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML title for the post, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/rm_content_editor":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to posts published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_after":{"description":"Limit response to posts modified after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"before":{"description":"Limit response to posts published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"modified_before":{"description":"Limit response to posts modified before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"search_semantics":{"description":"How to interpret the search input.","type":"string","enum":["exact"],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["post_title","post_content","post_excerpt"],"type":"string"},"required":false},"slug":{"description":"Limit result set to posts with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"status":{"default":"publish","description":"Limit result set to posts assigned one or more statuses.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft","any"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/rm_content_editor"}]}},"\/wp\/v2\/rm_content_editor\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the post.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false}}}]},"\/wp\/v2\/rm_content_editor\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"date":{"description":"The date the post was published, in the site's timezone.","type":["string","null"],"format":"date-time","required":false},"date_gmt":{"description":"The date the post was published, as GMT.","type":["string","null"],"format":"date-time","required":false},"slug":{"description":"An alphanumeric identifier for the post unique to its type.","type":"string","required":false},"status":{"description":"A named status for the post.","type":"string","enum":["publish","future","draft","pending","private","wc-pending","wc-processing","wc-on-hold","wc-completed","wc-cancelled","wc-refunded","wc-failed","wc-checkout-draft"],"required":false},"password":{"description":"A password to protect access to the content and excerpt.","type":"string","required":false},"content":{"description":"The content for the post.","type":"object","properties":{"raw":{"description":"Content for the post, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the post, transformed for display.","type":"string","context":["view","edit"],"readonly":true},"block_version":{"description":"Version of the content block format used by the post.","type":"integer","context":["edit"],"readonly":true},"protected":{"description":"Whether the content is protected with a password.","type":"boolean","context":["view","edit","embed"],"readonly":true}},"required":false},"template":{"description":"The theme file to use to display the post.","type":"string","required":false}}}]},"\/wp\/v2\/rm_content_editor\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"description":"The ID for the parent of the autosave.","type":"integer","required":false},"id":{"description":"The ID for the autosave.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/types"}]}},"\/wp\/v2\/types\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"type":{"description":"An alphanumeric identifier for the post type.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/statuses":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/statuses"}]}},"\/wp\/v2\/statuses\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"status":{"description":"An alphanumeric identifier for the status.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/taxonomies":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"type":{"description":"Limit results to taxonomies associated with a specific post type.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/taxonomies"}]}},"\/wp\/v2\/taxonomies\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"taxonomy":{"description":"An alphanumeric identifier for the taxonomy.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/categories":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to terms assigned to a specific parent.","type":"integer","required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"parent":{"description":"The parent term ID.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/categories"}]}},"\/wp\/v2\/categories\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"parent":{"description":"The parent term ID.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/tags":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/tags"}]}},"\/wp\/v2\/tags\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/menus":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false},"locations":{"description":"The locations assigned to the menu.","type":"array","items":{"type":"string"},"required":false},"auto_add":{"description":"Whether to automatically add top level pages to this menu.","type":"boolean","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/menus"}]}},"\/wp\/v2\/menus\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false},"locations":{"description":"The locations assigned to the menu.","type":"array","items":{"type":"string"},"required":false},"auto_add":{"description":"Whether to automatically add top level pages to this menu.","type":"boolean","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/wp_pattern_category":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/wp_pattern_category"}]}},"\/wp\/v2\/wp_pattern_category\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/product_brand":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to terms assigned to a specific parent.","type":"integer","required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"parent":{"description":"The parent term ID.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/product_brand"}]}},"\/wp\/v2\/product_brand\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"parent":{"description":"The parent term ID.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/product_cat":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"parent":{"description":"Limit result set to terms assigned to a specific parent.","type":"integer","required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"parent":{"description":"The parent term ID.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/product_cat"}]}},"\/wp\/v2\/product_cat\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"parent":{"description":"The parent term ID.","type":"integer","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/product_tag":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"asc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by term attribute.","type":"string","default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"required":false},"hide_empty":{"description":"Whether to hide terms not assigned to any posts.","type":"boolean","default":false,"required":false},"post":{"description":"Limit result set to terms assigned to a specific post.","type":"integer","default":null,"required":false},"slug":{"description":"Limit result set to terms with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":true},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/product_tag"}]}},"\/wp\/v2\/product_tag\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"description":{"description":"HTML description of the term.","type":"string","required":false},"name":{"description":"HTML title for the term.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the term unique to its type.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":[],"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the term.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as terms do not support trashing.","required":false}}}]},"\/wp\/v2\/users":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"default":"asc","description":"Order sort attribute ascending or descending.","enum":["asc","desc"],"type":"string","required":false},"orderby":{"default":"name","description":"Sort collection by user attribute.","enum":["id","include","name","registered_date","slug","include_slugs","email","url"],"type":"string","required":false},"slug":{"description":"Limit result set to users with one or more specific slugs.","type":"array","items":{"type":"string"},"required":false},"roles":{"description":"Limit result set to users matching at least one specific role provided. Accepts csv list or single role.","type":"array","items":{"type":"string"},"required":false},"capabilities":{"description":"Limit result set to users matching at least one specific capability provided. Accepts csv list or single capability.","type":"array","items":{"type":"string"},"required":false},"who":{"description":"Limit result set to users who are considered authors.","type":"string","enum":["authors"],"required":false},"has_published_posts":{"description":"Limit result set to users who have published posts.","type":["boolean","array"],"items":{"type":"string","enum":{"post":"post","page":"page","attachment":"attachment","nav_menu_item":"nav_menu_item","wp_block":"wp_block","wp_template":"wp_template","wp_template_part":"wp_template_part","wp_global_styles":"wp_global_styles","wp_navigation":"wp_navigation","wp_font_family":"wp_font_family","wp_font_face":"wp_font_face","kadence_form":"kadence_form","kadence_navigation":"kadence_navigation","kadence_header":"kadence_header","kadence_custom_svg":"kadence_custom_svg","kadence_query":"kadence_query","kadence_query_card":"kadence_query_card","product":"product","kadence_lottie":"kadence_lottie","kadence_vector":"kadence_vector","kb_icon":"kb_icon","rm_content_editor":"rm_content_editor"}},"required":false},"search_columns":{"default":[],"description":"Array of column names to be searched.","type":"array","items":{"enum":["email","name","id","username","slug"],"type":"string"},"required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"username":{"description":"Login name for the user.","type":"string","required":true},"name":{"description":"Display name for the user.","type":"string","required":false},"first_name":{"description":"First name for the user.","type":"string","required":false},"last_name":{"description":"Last name for the user.","type":"string","required":false},"email":{"description":"The email address for the user.","type":"string","format":"email","required":true},"url":{"description":"URL of the user.","type":"string","format":"uri","required":false},"description":{"description":"Description of the user.","type":"string","required":false},"locale":{"description":"Locale for the user.","type":"string","enum":["","en_US"],"required":false},"nickname":{"description":"The nickname for the user.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the user.","type":"string","required":false},"roles":{"description":"Roles assigned to the user.","type":"array","items":{"type":"string"},"required":false},"password":{"description":"Password for the user (never included).","type":"string","required":true},"meta":{"description":"Meta fields.","type":"object","properties":{"persisted_preferences":{"type":"object","title":"","description":"","default":[],"context":["edit"],"properties":{"_modified":{"description":"The date and time the preferences were updated.","type":"string","format":"date-time","readonly":false}},"additionalProperties":true}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/users"}]}},"\/wp\/v2\/users\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the user.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the user.","type":"integer","required":false},"username":{"description":"Login name for the user.","type":"string","required":false},"name":{"description":"Display name for the user.","type":"string","required":false},"first_name":{"description":"First name for the user.","type":"string","required":false},"last_name":{"description":"Last name for the user.","type":"string","required":false},"email":{"description":"The email address for the user.","type":"string","format":"email","required":false},"url":{"description":"URL of the user.","type":"string","format":"uri","required":false},"description":{"description":"Description of the user.","type":"string","required":false},"locale":{"description":"Locale for the user.","type":"string","enum":["","en_US"],"required":false},"nickname":{"description":"The nickname for the user.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the user.","type":"string","required":false},"roles":{"description":"Roles assigned to the user.","type":"array","items":{"type":"string"},"required":false},"password":{"description":"Password for the user (never included).","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"persisted_preferences":{"type":"object","title":"","description":"","default":[],"context":["edit"],"properties":{"_modified":{"description":"The date and time the preferences were updated.","type":"string","format":"date-time","readonly":false}},"additionalProperties":true}},"required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the user.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Required to be true, as users do not support trashing.","required":false},"reassign":{"type":"integer","description":"Reassign the deleted user's posts and links to this user ID.","required":true}}}]},"\/wp\/v2\/users\/me":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"username":{"description":"Login name for the user.","type":"string","required":false},"name":{"description":"Display name for the user.","type":"string","required":false},"first_name":{"description":"First name for the user.","type":"string","required":false},"last_name":{"description":"Last name for the user.","type":"string","required":false},"email":{"description":"The email address for the user.","type":"string","format":"email","required":false},"url":{"description":"URL of the user.","type":"string","format":"uri","required":false},"description":{"description":"Description of the user.","type":"string","required":false},"locale":{"description":"Locale for the user.","type":"string","enum":["","en_US"],"required":false},"nickname":{"description":"The nickname for the user.","type":"string","required":false},"slug":{"description":"An alphanumeric identifier for the user.","type":"string","required":false},"roles":{"description":"Roles assigned to the user.","type":"array","items":{"type":"string"},"required":false},"password":{"description":"Password for the user (never included).","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"persisted_preferences":{"type":"object","title":"","description":"","default":[],"context":["edit"],"properties":{"_modified":{"description":"The date and time the preferences were updated.","type":"string","format":"date-time","readonly":false}},"additionalProperties":true}},"required":false}}},{"methods":["DELETE"],"args":{"force":{"type":"boolean","default":false,"description":"Required to be true, as users do not support trashing.","required":false},"reassign":{"type":"integer","description":"Reassign the deleted user's posts and links to this user ID.","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/users\/me"}]}},"\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords":{"namespace":"wp\/v2","methods":["GET","POST","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST"],"args":{"app_id":{"description":"A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.","type":"string","oneOf":[{"type":"string","format":"uuid"},{"type":"string","enum":[""]}],"required":false},"name":{"description":"The name of the application password.","type":"string","minLength":1,"pattern":".*\\S.*","required":true}}},{"methods":["DELETE"],"args":[]}]},"\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords\/introspect":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords\/(?P[\\w\\-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"app_id":{"description":"A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.","type":"string","oneOf":[{"type":"string","format":"uuid"},{"type":"string","enum":[""]}],"required":false},"name":{"description":"The name of the application password.","type":"string","minLength":1,"pattern":".*\\S.*","required":false}}},{"methods":["DELETE"],"args":[]}]},"\/wp\/v2\/comments":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"after":{"description":"Limit response to comments published after a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"author":{"description":"Limit result set to comments assigned to specific user IDs. Requires authorization.","type":"array","items":{"type":"integer"},"required":false},"author_exclude":{"description":"Ensure result set excludes comments assigned to specific user IDs. Requires authorization.","type":"array","items":{"type":"integer"},"required":false},"author_email":{"default":null,"description":"Limit result set to that from a specific author email. Requires authorization.","format":"email","type":"string","required":false},"before":{"description":"Limit response to comments published before a given ISO8601 compliant date.","type":"string","format":"date-time","required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by comment attribute.","type":"string","default":"date_gmt","enum":["date","date_gmt","id","include","post","parent","type"],"required":false},"parent":{"default":[],"description":"Limit result set to comments of specific parent IDs.","type":"array","items":{"type":"integer"},"required":false},"parent_exclude":{"default":[],"description":"Ensure result set excludes specific parent IDs.","type":"array","items":{"type":"integer"},"required":false},"post":{"default":[],"description":"Limit result set to comments assigned to specific post IDs.","type":"array","items":{"type":"integer"},"required":false},"status":{"default":"approve","description":"Limit result set to comments assigned a specific status. Requires authorization.","type":"string","required":false},"type":{"default":"comment","description":"Limit result set to comments assigned a specific type. Requires authorization.","type":"string","required":false},"password":{"description":"The password for the post if it is password protected.","type":"string","required":false}}},{"methods":["POST"],"args":{"author":{"description":"The ID of the user object, if author was a user.","type":"integer","required":false},"author_email":{"description":"Email address for the comment author.","type":"string","format":"email","required":false},"author_ip":{"description":"IP address for the comment author.","type":"string","format":"ip","required":false},"author_name":{"description":"Display name for the comment author.","type":"string","required":false},"author_url":{"description":"URL for the comment author.","type":"string","format":"uri","required":false},"author_user_agent":{"description":"User agent for the comment author.","type":"string","required":false},"content":{"description":"The content for the comment.","type":"object","properties":{"raw":{"description":"Content for the comment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the comment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"date":{"description":"The date the comment was published, in the site's timezone.","type":"string","format":"date-time","required":false},"date_gmt":{"description":"The date the comment was published, as GMT.","type":"string","format":"date-time","required":false},"parent":{"default":0,"description":"The ID for the parent of the comment.","type":"integer","required":false},"post":{"default":0,"description":"The ID of the associated post object.","type":"integer","required":false},"status":{"description":"State of the comment.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_wp_note_status":{"type":"string","title":"","description":"Note resolution status","default":"","enum":["resolved","reopen"]}},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/comments"}]}},"\/wp\/v2\/comments\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"Unique identifier for the comment.","type":"integer","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"password":{"description":"The password for the parent post of the comment (if the post is password protected).","type":"string","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"description":"Unique identifier for the comment.","type":"integer","required":false},"author":{"description":"The ID of the user object, if author was a user.","type":"integer","required":false},"author_email":{"description":"Email address for the comment author.","type":"string","format":"email","required":false},"author_ip":{"description":"IP address for the comment author.","type":"string","format":"ip","required":false},"author_name":{"description":"Display name for the comment author.","type":"string","required":false},"author_url":{"description":"URL for the comment author.","type":"string","format":"uri","required":false},"author_user_agent":{"description":"User agent for the comment author.","type":"string","required":false},"content":{"description":"The content for the comment.","type":"object","properties":{"raw":{"description":"Content for the comment, as it exists in the database.","type":"string","context":["edit"]},"rendered":{"description":"HTML content for the comment, transformed for display.","type":"string","context":["view","edit","embed"],"readonly":true}},"required":false},"date":{"description":"The date the comment was published, in the site's timezone.","type":"string","format":"date-time","required":false},"date_gmt":{"description":"The date the comment was published, as GMT.","type":"string","format":"date-time","required":false},"parent":{"description":"The ID for the parent of the comment.","type":"integer","required":false},"post":{"description":"The ID of the associated post object.","type":"integer","required":false},"status":{"description":"State of the comment.","type":"string","required":false},"meta":{"description":"Meta fields.","type":"object","properties":{"_wp_note_status":{"type":"string","title":"","description":"Note resolution status","default":"","enum":["resolved","reopen"]}},"required":false}}},{"methods":["DELETE"],"args":{"id":{"description":"Unique identifier for the comment.","type":"integer","required":false},"force":{"type":"boolean","default":false,"description":"Whether to bypass Trash and force deletion.","required":false},"password":{"description":"The password for the parent post of the comment (if the post is password protected).","type":"string","required":false}}}]},"\/wp\/v2\/search":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"type":{"default":"post","description":"Limit results to items of an object type.","type":"string","enum":["post","term","post-format"],"required":false},"subtype":{"default":"any","description":"Limit results to items of one or more object subtypes.","type":"array","items":{"enum":["post","page","product","category","post_tag","product_brand","product_cat","product_tag","any"],"type":"string"},"required":false},"exclude":{"description":"Ensure result set excludes specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false},"include":{"description":"Limit result set to specific IDs.","type":"array","items":{"type":"integer"},"default":[],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/search"}]}},"\/wp\/v2\/block-renderer\/(?P[a-z0-9-]+\/[a-z0-9-]+)":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET","POST"],"args":{"name":{"description":"Unique registered name for the block.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["edit"],"default":"view","required":false},"attributes":{"description":"Attributes for the block.","type":"object","default":[],"required":false},"post_id":{"description":"ID of the post context.","type":"integer","required":false}}}]},"\/wp\/v2\/block-types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"namespace":{"description":"Block namespace.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/block-types"}]}},"\/wp\/v2\/block-types\/(?P[a-zA-Z0-9_-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"namespace":{"description":"Block namespace.","type":"string","required":false}}}]},"\/wp\/v2\/block-types\/(?P[a-zA-Z0-9_-]+)\/(?P[a-zA-Z0-9_-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"description":"Block name.","type":"string","required":false},"namespace":{"description":"Block namespace.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/settings":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"kadence_site_assist_tasks":{"title":"","description":"Site Assist Tasks","type":"object","properties":{"language":{"type":"boolean","description":"The current status of the language tasks."},"logo":{"type":"boolean","description":"The current status of the logo tasks."},"timezone":{"type":"boolean","description":"The current status of the timezone tasks."},"colors":{"type":"boolean","description":"The current status of the color tasks."},"header":{"type":"boolean","description":"The current status of the header tasks."},"footer":{"type":"boolean","description":"The current status of the footer tasks."},"typography":{"type":"boolean","description":"The current status of the typography tasks."},"buttons":{"type":"boolean","description":"The current status of the button tasks."},"posts":{"type":"boolean","description":"The current status of the post tasks."},"archive":{"type":"boolean","description":"The current status of the archive tasks."},"email-test":{"type":"boolean","description":"The current status of the email test tasks."}},"additionalProperties":false,"required":false},"kadence_blocks_config_blocks":{"title":"","description":"Config Kadence Block Defaults","type":"string","required":false},"kadence_blocks_settings_blocks":{"title":"","description":"Config Kadence Block visibility settings","type":"string","required":false},"kadence_blocks_settings":{"title":"","description":"Config Kadence Block Settings","type":"string","required":false},"kadence_blocks_prophecy":{"title":"","description":"Config Kadence Block Prophecy AI","type":"string","required":false},"kadence_blocks_colors":{"title":"","description":"Config Kadence Blocks Color Palette","type":"string","required":false},"kadence_blocks_global":{"title":"","description":"Config Kadence Blocks Global Settings","type":"string","required":false},"kadence_blocks_recaptcha_site_key":{"title":"","description":"Google reCaptcha Site Key","type":"string","required":false},"kadence_blocks_recaptcha_secret_key":{"title":"","description":"Google reCaptcha Secret Key","type":"string","required":false},"kadence_blocks_recaptcha_language":{"title":"","description":"Google reCaptcha Language","type":"string","required":false},"kadence_blocks_turnstile_site_key":{"title":"","description":"Cloudflare Turnstile Site Key","type":"string","required":false},"kadence_blocks_turnstile_secret_key":{"title":"","description":"Cloudflare Turnstile Secret Key","type":"string","required":false},"kadence_blocks_hcaptcha_site_key":{"title":"","description":"hCaptcha Turnstile Site Key","type":"string","required":false},"kadence_blocks_hcaptcha_secret_key":{"title":"","description":"hCaptcha Secret Key","type":"string","required":false},"kadence_blocks_mailerlite_api":{"title":"","description":"MailerLite API Key","type":"string","required":false},"kadence_blocks_google_maps_api":{"title":"","description":"Google Maps API Key","type":"string","required":false},"kadence_blocks_cloud":{"title":"","description":"Config Kadence Blocks Cloud","type":"string","required":false},"kadence_blocks_header_notice_dismissed":{"title":"","description":"Is Kadence header notice dismissed","type":"boolean","required":false},"kadence_blocks_wire_subscribe":{"title":"","description":"Subscribe to Wireframe library","type":"boolean","required":false},"kadence_blocks_convertkit_api":{"title":"","description":"ConvertKit API Key","type":"string","required":false},"kadence_blocks_activecampaign_api_key":{"title":"","description":"ActiveCampaign API Key","type":"string","required":false},"kadence_blocks_activecampaign_api_base":{"title":"","description":"ActiveCampaign API Base","type":"string","required":false},"kadence_blocks_header_popover_tutorial_complete":{"title":"","description":"Mark the Header popover tutorial Complete","type":"boolean","required":false},"kadence_blocks_send_in_blue_api":{"title":"","description":"Send in Blue V3 API Key","type":"string","required":false},"kadence_blocks_mail_chimp_api":{"title":"","description":"Mail Chimp API Key","type":"string","required":false},"kadence_blocks_getresponse_api_key":{"title":"","description":"GetResponse API Key","type":"string","required":false},"kadence_blocks_getresponse_api_endpoint":{"title":"","description":"GetResponse API endpoint","type":"string","required":false},"kadence_theme_config":{"title":"","description":"Config Kadence Modules","type":"string","required":false},"kadence_pro_theme_config":{"title":"","description":"Config Kadence Pro Modules","type":"string","required":false},"kadence_starter_templates_config":{"title":"","description":"Config Kadence Starter Templates","type":"string","required":false},"title":{"title":"Title","description":"Site title.","type":"string","required":false},"description":{"title":"Tagline","description":"Site tagline.","type":"string","required":false},"url":{"title":"","description":"Site URL.","type":"string","format":"uri","required":false},"email":{"title":"","description":"This address is used for admin purposes, like new user notification.","type":"string","format":"email","required":false},"timezone":{"title":"","description":"A city in the same timezone as you.","type":"string","required":false},"date_format":{"title":"","description":"A date format for all date strings.","type":"string","required":false},"time_format":{"title":"","description":"A time format for all time strings.","type":"string","required":false},"start_of_week":{"title":"","description":"A day number of the week that the week should start on.","type":"integer","required":false},"language":{"title":"","description":"WordPress locale code.","type":"string","required":false},"use_smilies":{"title":"","description":"Convert emoticons like :-) and :-P to graphics on display.","type":"boolean","required":false},"default_category":{"title":"","description":"Default post category.","type":"integer","required":false},"default_post_format":{"title":"","description":"Default post format.","type":"string","required":false},"posts_per_page":{"title":"Maximum posts per page","description":"Blog pages show at most.","type":"integer","required":false},"show_on_front":{"title":"Show on front","description":"What to show on the front page","type":"string","required":false},"page_on_front":{"title":"Page on front","description":"The ID of the page that should be displayed on the front page","type":"integer","required":false},"page_for_posts":{"title":"","description":"The ID of the page that should display the latest posts","type":"integer","required":false},"default_ping_status":{"title":"","description":"Allow link notifications from other blogs (pingbacks and trackbacks) on new articles.","type":"string","enum":["open","closed"],"required":false},"default_comment_status":{"title":"Allow comments on new posts","description":"Allow people to submit comments on new posts.","type":"string","enum":["open","closed"],"required":false},"site_logo":{"title":"Logo","description":"Site logo.","type":"integer","required":false},"site_icon":{"title":"Icon","description":"Site icon.","type":"integer","required":false},"pickup_location_settings":{"title":"","description":"WooCommerce Local Pickup Method Settings","type":"object","properties":{"enabled":{"description":"If enabled, this method will appear on the block based checkout.","type":"string","enum":["yes","no"]},"title":{"description":"This controls the title which the user sees during checkout.","type":"string"},"tax_status":{"description":"If a cost is defined, this controls if taxes are applied to that cost.","type":"string","enum":["taxable","none"]},"cost":{"description":"Optional cost to charge for local pickup.","type":"string"}},"additionalProperties":false,"required":false},"pickup_locations":{"title":"","description":"WooCommerce Local Pickup Locations","type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"address":{"type":"object","properties":{"address_1":{"type":"string"},"city":{"type":"string"},"state":{"type":"string"},"postcode":{"type":"string"},"country":{"type":"string"}},"additionalProperties":false},"details":{"type":"string"},"enabled":{"type":"boolean"}},"additionalProperties":false},"required":false},"woocommerce_default_catalog_orderby":{"title":"Default product sorting","description":"How should products be sorted in the catalog by default?","type":"string","enum":["menu_order","popularity","rating","date","price","price-desc"],"required":false},"woocommerce_checkout_phone_field":{"title":"Phone number","description":"Controls the display of the phone field in checkout.","type":"string","enum":["optional","required","hidden"],"required":false},"woocommerce_checkout_company_field":{"title":"Company","description":"Controls the display of the company field in checkout.","type":"string","enum":["optional","required","hidden"],"required":false},"woocommerce_checkout_address_2_field":{"title":"Address Line 2","description":"Controls the display of the apartment (address_2) field in checkout.","type":"string","enum":["optional","required","hidden"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/settings"}]}},"\/wp\/v2\/themes":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"status":{"description":"Limit result set to themes assigned one or more statuses.","type":"array","items":{"enum":["active","inactive"],"type":"string"},"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/themes"}]}},"\/wp\/v2\/themes\/(?P[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"stylesheet":{"description":"The theme's stylesheet. This uniquely identifies the theme.","type":"string","required":false}}}]},"\/wp\/v2\/plugins":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"search":{"description":"Limit results to those matching a string.","type":"string","required":false},"status":{"description":"Limits results to plugins with the given status.","type":"array","items":{"type":"string","enum":["inactive","active"]},"required":false}}},{"methods":["POST"],"args":{"slug":{"type":"string","description":"WordPress.org plugin directory slug.","pattern":"[\\w\\-]+","required":true},"status":{"description":"The plugin activation status.","type":"string","enum":["inactive","active"],"default":"inactive","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/plugins"}]}},"\/wp\/v2\/plugins\/(?P[^.\\\/]+(?:\\\/[^.\\\/]+)?)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"plugin":{"type":"string","pattern":"[^.\\\/]+(?:\\\/[^.\\\/]+)?","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"plugin":{"type":"string","pattern":"[^.\\\/]+(?:\\\/[^.\\\/]+)?","required":false},"status":{"description":"The plugin activation status.","type":"string","enum":["inactive","active"],"required":false}}},{"methods":["DELETE"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"plugin":{"type":"string","pattern":"[^.\\\/]+(?:\\\/[^.\\\/]+)?","required":false}}}]},"\/wp\/v2\/sidebars":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/sidebars"}]}},"\/wp\/v2\/sidebars\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The id of a registered sidebar","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"args":{"widgets":{"description":"Nested widgets.","type":"array","items":{"type":["object","string"]},"required":false}}}]},"\/wp\/v2\/widget-types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/widget-types"}]}},"\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"id":{"description":"The widget type id.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)\/encode":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"The widget type id.","type":"string","required":true},"instance":{"description":"Current instance settings of the widget.","type":"object","required":false},"form_data":{"description":"Serialized widget form data to encode into instance settings.","type":"string","required":false}}}]},"\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)\/render":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"description":"The widget type id.","type":"string","required":true},"instance":{"description":"Current instance settings of the widget.","type":"object","required":false}}}]},"\/wp\/v2\/widgets":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"sidebar":{"description":"The sidebar to return widgets for.","type":"string","required":false}}},{"methods":["POST"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the widget.","type":"string","required":false},"id_base":{"description":"The type of the widget. Corresponds to ID in widget-types endpoint.","type":"string","required":false},"sidebar":{"default":"wp_inactive_widgets","description":"The sidebar the widget belongs to.","type":"string","required":true},"instance":{"description":"Instance settings of the widget, if supported.","type":"object","properties":{"encoded":{"description":"Base64 encoded representation of the instance settings.","type":"string","context":["edit"]},"hash":{"description":"Cryptographic hash of the instance settings.","type":"string","context":["edit"]},"raw":{"description":"Unencoded instance settings, if supported.","type":"object","context":["edit"]}},"required":false},"form_data":{"description":"URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only.","type":"string","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/widgets"}]}},"\/wp\/v2\/widgets\/(?P[\\w\\-]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"allow_batch":{"v1":true},"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}},{"methods":["POST","PUT","PATCH"],"allow_batch":{"v1":true},"args":{"id":{"description":"Unique identifier for the widget.","type":"string","required":false},"id_base":{"description":"The type of the widget. Corresponds to ID in widget-types endpoint.","type":"string","required":false},"sidebar":{"description":"The sidebar the widget belongs to.","type":"string","required":false},"instance":{"description":"Instance settings of the widget, if supported.","type":"object","properties":{"encoded":{"description":"Base64 encoded representation of the instance settings.","type":"string","context":["edit"]},"hash":{"description":"Cryptographic hash of the instance settings.","type":"string","context":["edit"]},"raw":{"description":"Unencoded instance settings, if supported.","type":"object","context":["edit"]}},"required":false},"form_data":{"description":"URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only.","type":"string","required":false}}},{"methods":["DELETE"],"allow_batch":{"v1":true},"args":{"force":{"description":"Whether to force removal of the widget, or move it to the inactive sidebar.","type":"boolean","required":false}}}]},"\/wp\/v2\/block-directory\/search":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false},"term":{"description":"Limit result set to blocks matching the search term.","type":"string","minLength":1,"required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/block-directory\/search"}]}},"\/wp\/v2\/pattern-directory\/patterns":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":100,"minimum":1,"maximum":100,"required":false},"search":{"description":"Limit results to those matching a string.","type":"string","minLength":1,"required":false},"category":{"description":"Limit results to those matching a category ID.","type":"integer","minimum":1,"required":false},"keyword":{"description":"Limit results to those matching a keyword ID.","type":"integer","minimum":1,"required":false},"slug":{"description":"Limit results to those matching a pattern (slug).","type":"array","required":false},"offset":{"description":"Offset the result set by a specific number of items.","type":"integer","required":false},"order":{"description":"Order sort attribute ascending or descending.","type":"string","default":"desc","enum":["asc","desc"],"required":false},"orderby":{"description":"Sort collection by post attribute.","type":"string","default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","favorite_count"],"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/pattern-directory\/patterns"}]}},"\/wp\/v2\/block-patterns\/patterns":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/block-patterns\/patterns"}]}},"\/wp\/v2\/block-patterns\/categories":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/block-patterns\/categories"}]}},"\/wp-site-health\/v1":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-site-health\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1"}]}},"\/wp-site-health\/v1\/tests\/background-updates":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/tests\/background-updates"}]}},"\/wp-site-health\/v1\/tests\/loopback-requests":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/tests\/loopback-requests"}]}},"\/wp-site-health\/v1\/tests\/https-status":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/tests\/https-status"}]}},"\/wp-site-health\/v1\/tests\/dotorg-communication":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/tests\/dotorg-communication"}]}},"\/wp-site-health\/v1\/tests\/authorization-header":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/tests\/authorization-header"}]}},"\/wp-site-health\/v1\/directory-sizes":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/directory-sizes"}]}},"\/wp-site-health\/v1\/tests\/page-cache":{"namespace":"wp-site-health\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-site-health\/v1\/tests\/page-cache"}]}},"\/wp-block-editor\/v1":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"default":"wp-block-editor\/v1","required":false},"context":{"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-block-editor\/v1"}]}},"\/wp-block-editor\/v1\/url-details":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"description":"The URL to process.","type":"string","format":"uri","required":true}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-block-editor\/v1\/url-details"}]}},"\/wp\/v2\/menu-locations":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/menu-locations"}]}},"\/wp\/v2\/menu-locations\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"location":{"description":"An alphanumeric identifier for the menu location.","type":"string","required":false},"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]},"\/wp-block-editor\/v1\/export":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-block-editor\/v1\/export"}]}},"\/wp-block-editor\/v1\/navigation-fallback":{"namespace":"wp-block-editor\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp-block-editor\/v1\/navigation-fallback"}]}},"\/wp\/v2\/font-collections":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false},"page":{"description":"Current page of the collection.","type":"integer","default":1,"minimum":1,"required":false},"per_page":{"description":"Maximum number of items to be returned in result set.","type":"integer","default":10,"minimum":1,"maximum":100,"required":false}}}],"_links":{"self":[{"href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/font-collections"}]}},"\/wp\/v2\/font-collections\/(?P[\\\/\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"description":"Scope under which the request is made; determines fields present in response.","type":"string","enum":["view","embed","edit"],"default":"view","required":false}}}]}},"site_logo":1462,"site_icon":1467,"site_icon_url":"https:\/\/www.sgeek.sg\/wp-content\/uploads\/2024\/04\/cropped-Site-Icon.webp","_links":{"help":[{"href":"https:\/\/developer.wordpress.org\/rest-api\/"}],"wp:featuredmedia":[{"embeddable":true,"type":"site_logo","href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/media\/1462"},{"embeddable":true,"type":"site_icon","href":"https:\/\/www.sgeek.sg\/wp-json\/wp\/v2\/media\/1467"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}