wix:image://v1//#originWidth=&originHeight=[&watermark=] import { media } from "@wix/sdk"; const { url } = media.getImageUrl(wixImageId); import { createClient, media } from "@wix/sdk"; // ... const { cart } = await wixClient.currentCart.getCurrentCart(); const { url } = media.getImageUrl(cart.lineItems[0].image); { "status": "A", "$or": [ { "qty": { "$lt": 30 } }, { "item": { "$startsWith": "p" } } ] } { "tags": ["red", "blank"] } { "tags": "red" } { "item": { "$exists": false } } { "sort": [ { "fieldName": "sortField1" }, { "fieldName": "sortField2", "order": "DESC" } ] } { "paging": { "limit": 20, "offset": 40 } } { "pagingMetadata": { "count": 10, "offset": 0, "cursors": { "next": "eyJmaWx0ZXIiOnsiJGFuZCI6W3sibGFuZ3VhZ2UiOnsiJGluIjpbImVuIiwiaGUiXX19LHsic3RhdHVzIjoicHVibGlzaGVkIn1dfSwidmFsdWUiOnsiaXNQaW5uZWQiOmZhbHNlLCJmaXJzdFB1Ymxpc2hlZERhdGUiOiIyMDIyLTA2LTAyVDA2OjQ2OjAyLjgwMloifSwib3JkZXIiOnsiaXNQaW5uZWQiOi0xLCJmaXJzdFB1Ymxpc2hlZERhdGUiOi0xLCJpZCI6LTF9fQ==" } } } { "query": { "cursorPaging": { "cursor": "eyJmaWx0ZXIiOnsiJGFuZCI6W3sibGFuZ3VhZ2UiOnsiJGluIjpbImVuIiwiaGUiXX19LHsic3RhdHVzIjoicHVibGlzaGVkIn1dfSwidmFsdWUiOnsiaXNQaW5uZWQiOmZhbHNlLCJmaXJzdFB1Ymxpc2hlZERhdGUiOiIyMDIyLTA2LTAyVDA2OjQ2OjAyLjgwM1oifSwib3JkZXIiOnsiaXNQaW5uZWQiOi0xLCJmaXJzdFB1Ymxpc2hlZERhdGUiOi0xLCJpZCI6LTF9fQ" } } } { "fields": ["name.firstName", "address"] } { "fieldsets": ["BASIC"] } function listSessionsAsync( options: ListSessionsAsyncOptions, ): Promise; import { analyticsSession } from "@wix/analytics-session"; async function listSessionsAsync(options) { const response = await analyticsSession.listSessionsAsync(options); } function markSessionAsRecorded(sessionId: string): Promise; import { analyticsSession } from "@wix/analytics-session"; async function markSessionAsRecorded(sessionId) { const response = await analyticsSession.markSessionAsRecorded(sessionId); }
export function foo() { // ~~~ // error! Function must have an explicit // return type annotation with --isolatedDeclarations. return x; } import { add } from "./add"; const x = add(); export function foo() { return x; } // add.d.ts export declare function add(): add.d.ts // add.d.ts export declare function add(): util.ts // util.ts export let one = "1"; export let two = "2"; // add.ts import { one, two } from "./util"; export function add() { return one + two; } add.ts Example Books - high-quality used books for children let users = { user1: "testpassword" }; let response = new Twilio.Response(); let headers = { 'Access-Control-Allow-Origin': '*', }; exports.handler = function(context, event, callback) { response.setHeaders(headers); if (!event.identity || !event.password) { response.setStatusCode(401); response.setBody("No credentials"); callback(null, response); return; } if (users[event.identity] != event.password) { response.setStatusCode(401); response.setBody("Wrong credentials"); callback(null, response); return; } let AccessToken = Twilio.jwt.AccessToken; let token = new AccessToken( context.ACCOUNT_SID, context.TWILIO_API_KEY_SID, context.TWILIO_API_KEY_SECRET, { identity: event.identity, ttl: 3600 }); let grant = new AccessToken.ChatGrant({ serviceSid: "ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" }); if(context.PUSH_CREDENTIAL_SID) { // Optional: without it, no push notifications will be sent grant.pushCredentialSid = context.PUSH_CREDENTIAL_SID; } token.addGrant(grant); response.setStatusCode(200); response.setBody(token.toJwt()); callback(null, response); }; KSD Lighter Myanmar Distribution Company © 2023 by KoSai KSD Founder and CEO is licensed under Creative Commons Attribution 4.0 International https://creativecommons.org/licenses/by-sa/4.0/ https://creativecommons.org/licenses/by/4.0/ https://mirrors.creativecommons.org/presskit/icons/cc.svg https://mirrors.creativecommons.org/presskit/icons/by.svg
top of page

Store Policy

Customer Care

I’m a customer care section. I’m a great place to write a long text about your company and your services, and, most importantly, how to contact your store with queries. Writing a detailed customer care policy is a great way to build trust and reassure your customers that they can buy with confidence.

 

I'm the second paragraph in your customer care section. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add details about your policy and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

Privacy & Safety

I’m a privacy & safety policy section. I’m a great place to inform your customers about how you use, store, and protect their personal information. Add details such as how you use third-party banking to verify payment, the way you collect data or when will you contact users after their purchase was completed successfully.

 

Your user’s privacy is of the highest importance to your business, so take the time to write an accurate and detailed policy. Use straightforward language to gain their trust and make sure they keep coming back to your site!

Wholesale Inquiries

I’m a wholesale inquiries section. I’m a great place to inform other retailers about how they can sell your stunning products. Use plain language and give as much information as possible in order to promote your business and take it to the next level!

 

I'm the second paragraph in your wholesale inquiries section. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add details about your policy and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you.

Payment Methods

Payment Methods

- Credit / Debit Cards
- PAYPAL

- Offline Payments

bottom of page
// ./some-module.d.ts export interface SomeType { // ... } // ./index.js import { SomeType } from "./some-module"; // ❌ runtime error! /** * @param {SomeType} myValue */ function doSomething(myValue) { // ... } curl 'https://www.wixapis.com/stores/v2/inventoryItems/product/{productId}' -X PATCH --data-binary '{"inventoryItem": {"trackQuantity": false}}' -H 'Content-Type: application/json' -H 'Authorization: XXX' curl 'https://www.wixapis.com/stores/v2/inventoryItems/product/{productId}' -X PATCH --data-binary '{"inventoryItem": {"trackQuantity": false,"variants": [{"variantId": "00000000-0000-0000-0000-000000000000","inStock": false}]}}' -H 'Content-Type: application/json' -H 'Authorization: XXX' curl 'https://www.wixapis.com/stores/v2/inventoryItems/product/{productId}' -X PATCH --data-binary '{"inventoryItem": {"trackQuantity": true,"variants": [{"variantId": "00000000-0000-0000-0000-000000000000","quantity": 4}]}}' -H 'Content-Type: application/json' -H 'Authorization: XXX' function createSecret(secret: Secret): Promise; import { secrets } from "wix-secrets-backend.v2"; import { elevate } from "wix-auth"; export function createNewSecret() { const secret = { name: "s3_secret_key", value: "Fm8OfflH6bJOwWjenqAtLurLbkiMNvmhQHZV+118", description: "AWS secret access key", }; const elevatedCreateSecret = elevate(secrets.createSecret); return elevatedCreateSecret(secret) .then((id) => { return id; }) .catch((error) => { console.error(error); }); } /* * Returns a Promise that resolves to: * * "5ec36ffb-2cec-489a-9c0e-d8f53fef5fd1" */ { "data": { "eventType": "OrderPaid", "instanceId": "", "data": "", // The identity field is sent as a stringified JSON "identity": { "identityType": "", // ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP "anonymousVisitorId": "", // in case of ANONYMOUS_VISITOR "memberId": "", // in case of MEMBER "wixUserId": "", // in case of WIX_USER "appId": "" // in case of APP } } } 201 - CREATED - The request was successful. We created a new resource and the response body contains the representation. { "account_sid": "AC7264caba60bbee706c45568c419d7684", "api_version": "2010-04-01", "body": "Here received your order detials please checkcheckout ", "date_created": "Thu, 20 Nov 2025 06:27:44 +0000", "date_sent": null, "date_updated": "Thu, 20 Nov 2025 06:27:44 +0000", "direction": "outbound-api", "error_code": null, "error_message": null, "from": null, "messaging_service_sid": "MG771d2b025930a7ab618670430f70ee14", "num_media": "0", "num_segments": "0", "price": null, "price_unit": null, "sid": "SMc96ce3c69d10c8465bec0e95a76fc867", "status": "accepted", "subresource_uris": { "media": "/2010-04-01/Accounts/AC7264caba60bbee706c45568c419d7684/Messages/SMc96ce3c69d10c8465bec0e95a76fc867/Media.json" }, "to": "+18777804236", "uri": "/2010-04-01/Accounts/AC7264caba60bbee706c45568c419d7684/Messages/SMc96ce3c69d10c8465bec0e95a76fc867.json" }