2.3.0 • Published 1 month ago

vendure-plugin-import-products v2.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Vendure Import Products Plugin

  • This plugin imports the products from the specified url every specified day.

  • The products are expected to be in the following format

  {
    "Items": [
        {
            "name": string,
            "id": string,
            "price": string,
            "unit": string,
            "group": string,
            "sku": string,
            "Collection": string,
            "parentfacet": string,
            "childfacet": string
        },
    ]
  }

Getting Started

  1. Run
  npm i @nestjs/axios @nestjs/schedule axios ts-node
  1. And then add this to your vendure-config.ts.
import {ProductImportPlugin} from "vendure-plugin-import-products";

ProductImportPlugin.init({
    url: `https://tfcmayasoftdata.up.railway.app/allproducts`,
    everyThisDay: 3
})

This means the products will be imported from the specified url every third day.

  1. Make sure to run database migrations after updating your vendure-config.ts
2.3.0

1 month ago

2.2.0

1 month ago

2.1.0

1 month ago

2.0.0

1 month ago

1.9.0

2 months ago

1.8.0

2 months ago

1.2.0

2 months ago

1.7.0

2 months ago

1.6.0

2 months ago

1.5.0

2 months ago

1.4.0

2 months ago

1.3.0

2 months ago

1.1.0

2 months ago

1.0.0

2 months ago