@selldone/sdk-storefront
Version:
A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.
59 lines (58 loc) • 2.52 kB
TypeScript
import { Currency } from "../enums/payment/Currency";
export declare class GAPI {
selldone_gapi_url: string;
constructor();
GET_TERMS(): string;
GET_PRIVACY(): string;
GET_ARTICLE(type: string, article_id: number): string;
GET_HOME_DATA(): string;
GET_BLOG_DIGEST(blog_id: string | number): string;
GET_HELP_DIGEST(blog_id: string | number): string;
GET_COMMENTS(article_id: string | number): string;
GET_PAGE_DATA(page_name: string): string;
GET_BLOGS(): string;
GET_HELP_MENU(help_id: string | number): string;
GET_HELPS(): string;
GET_FAQ_TAGS(): string;
GET_FAQS(): string;
GET_ROADMAP(): string;
GET_AVAILABLE_GATEWAYS(currency: keyof typeof Currency): string;
GET_APIS_OWNER_FOLDERS(): string;
GET_APIS_OWNER_FOLDER_ITEM(folder: string): string;
GET_APIS_OWNER_ITEM_DETAIL(folder: string, item: string): string;
GET_OFFICIAL_PAGE(language: string, page: string): string;
GET_BUSINESS_IDEAS_PAGES_LIST(): string;
GET_COUNTRIES(): string;
GET_GATEWAYS(): string;
GET_TAXES(country_code: string): string;
GET_INLINE_HELPS(language: string): string;
POST_EXPERT_SEND_REQUEST(): string;
GET_EXPERT_REQUEST_INFO_BY_KEY(request_key: string): string;
GET_EXPERT_JOB_PUBLIC_INFO(job_id: string | number): string;
GET_EXPERT_JOB_PUBLIC_COMMENTS(job_id: string | number): string;
GET_EXPERT_JOBS(): string;
GET_EXPERT_PROFILE(expert_id: string | number): string;
GET_APP_STORE_APPS(): string;
GET_APP_INFO(app_code: string): string;
GET_APP_COMMENTS(app_code: string): string;
GET_CHECK_GUILD_NAME_AVAILABLE(): string;
GET_PUBLIC_GUILD(guild_name: string): string;
GET_FORM(code: string): string;
POST_FORM_DATA(code: string): string;
POST_ONBOARDING_CREATE_SHOP(): string;
GET_PRICING(currency: keyof typeof Currency): string;
GET_LANDING_PAGE_PUBLISHED_ELEMENTS(): string;
GET_BOOKS(): string;
GET_BOOK_PDF_URL(name: string): string;
POST_SUBSCRIBE_FOR(code: string): string;
GET_PARTNER_DEAL_BY_CURRENCY(ref_code: string, currency: keyof typeof Currency): string;
GET_TESTIMONIALS(): string;
GET_STORIES(): string;
GET_STORY(story_id: string | number): string;
GET_INTEGRATION_PAYMENT(payment_code: string): string;
GET_TARGET_COUNTRY(country_code: string): string;
GET_PAGE_BUILDER_TEMPLATES(): string;
POST_DEMO_AI_ADD_PRODUCT(): string;
GET_DEMO_SHOP(): string;
GET_TOKEN_PURCHASE_RATE(): string;
}