Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / dist / graphql-modules / oms / stream / endpoints / transformOrder.d.ts
Size: Mime:
declare const toPaymentDetails: (payment: any) => {
    carddetails: any;
    name: any;
};
declare const toProductDetail: (product: any) => {
    identifier: any;
    skuid: any;
    name: any;
    image: any;
    quantity: number;
    price: string | number;
    skuinfo: {};
    shippingmethod: any;
    shippingaddress: import("chain-able-deps/dist/typings/_typings").AnyObj;
};
declare const toPackage: (pkg: any) => {
    orderTotalAmount: string | number;
    orderTotalItems: any;
    orderId: any;
    orderCreatedTime: string | number;
    status: string;
    products: any;
    shipping: any;
    math: {
        subTotal: string | number;
        giftSale: string | number;
        tax: string | number;
        shippingCharge: string | number;
        shippingTax: string | number;
        discount: string | number;
        total: string | number;
        grandTotal: string | number;
        couponTotal: string | number;
    };
    properties: {
        buyinfo: {};
        cartinfo: {};
        iteminfo: {};
        state: {};
        math: {};
        orderinfo: {};
        userinfo: {};
    };
};
declare const transformDetailOrders: (response: any) => {
    state: {
        statuscode: number;
        offset: number;
        count: number;
        status: number;
    };
    packages: any;
    payments: import("chain-able-deps/dist/typings/_typings").AnyObj;
    paymentcardinfo: any;
};
export { toPaymentDetails, toProductDetail, toPackage, transformDetailOrders };