├── .gitignore ├── README.md ├── package.json ├── template.json └── template └── src ├── api ├── .gitkeep ├── country │ ├── content-types │ │ └── country │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── country.js │ ├── routes │ │ └── country.js │ └── services │ │ └── country.js ├── currency │ ├── content-types │ │ └── currency │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── currency.js │ ├── routes │ │ └── currency.js │ └── services │ │ └── currency.js ├── fulfillment-provider │ ├── content-types │ │ └── fulfillment-provider │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── fulfillment-provider.js │ ├── routes │ │ └── fulfillment-provider.js │ └── services │ │ └── fulfillment-provider.js ├── image │ ├── content-types │ │ └── image │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── image.js │ ├── routes │ │ └── image.js │ └── services │ │ └── image.js ├── money-amount │ ├── content-types │ │ └── money-amount │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── money-amount.js │ ├── routes │ │ └── routes.js │ └── services │ │ └── money-amount.js ├── payment-provider │ ├── content-types │ │ └── payment-provider │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── payment-provider.js │ ├── routes │ │ └── routes.js │ └── services │ │ └── payment-provider.js ├── product-collection │ ├── content-types │ │ └── product-collection │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── product-collection.js │ ├── routes │ │ └── routes.js │ └── services │ │ └── product-collection.js ├── product-option-value │ ├── content-types │ │ └── product-option-value │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── product-option-value.js │ ├── routes │ │ └── routes.js │ └── services │ │ └── product-option-value.js ├── product-option │ ├── content-types │ │ └── product-option │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── product-option.js │ ├── routes │ │ └── routes.js │ └── services │ │ └── product-option.js ├── product-tag │ ├── content-types │ │ └── product-tag │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── product-tag.js │ ├── routes │ │ └── routes.js │ └── services │ │ └── product-tag.js ├── product-type │ ├── content-types │ │ └── product-type │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── product-type.js │ ├── routes │ │ └── product-type.js │ └── services │ │ └── product-type.js ├── product-variant │ ├── content-types │ │ └── product-variant │ │ │ ├── index.js │ │ │ ├── lifecycles.js │ │ │ └── schema.json │ ├── controllers │ │ └── product-variant.js │ ├── routes │ │ └── product-variant.js │ └── services │ │ └── product-variant.js ├── product │ ├── content-types │ │ └── product │ │ │ ├── index.js │ │ │ ├── lifecycles.js │ │ │ └── schema.json │ ├── controllers │ │ └── product.js │ ├── routes │ │ └── product.js │ └── services │ │ └── product.js ├── region │ ├── content-types │ │ └── region │ │ │ ├── index.js │ │ │ ├── lifecycles.js │ │ │ └── schema.json │ ├── controllers │ │ └── region.js │ ├── routes │ │ └── region.js │ └── services │ │ └── region.js ├── shipping-option-requirement │ ├── content-types │ │ └── shipping-option-requirement │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── shipping-option-requirement.js │ ├── routes │ │ └── shipping-option-requirement.js │ └── services │ │ └── shipping-option-requirement.js ├── shipping-option │ ├── content-types │ │ └── shipping-option │ │ │ ├── index.js │ │ │ └── schema.json │ ├── controllers │ │ └── shipping-option.js │ ├── routes │ │ └── shipping-option.js │ └── services │ │ └── shipping-option.js └── shipping-profile │ ├── content-types │ └── shipping-profile │ │ ├── index.js │ │ └── schema.json │ ├── controllers │ └── shipping-profile.js │ ├── routes │ └── shipping-profile.js │ └── services │ └── shipping-profile.js ├── bootstrap.js └── sync.js /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/package.json -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/src/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/src/api/country/content-types/country/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/country/content-types/country/index.js -------------------------------------------------------------------------------- /template/src/api/country/content-types/country/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/country/content-types/country/schema.json -------------------------------------------------------------------------------- /template/src/api/country/controllers/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/country/controllers/country.js -------------------------------------------------------------------------------- /template/src/api/country/routes/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/country/routes/country.js -------------------------------------------------------------------------------- /template/src/api/country/services/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/country/services/country.js -------------------------------------------------------------------------------- /template/src/api/currency/content-types/currency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/currency/content-types/currency/index.js -------------------------------------------------------------------------------- /template/src/api/currency/content-types/currency/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/currency/content-types/currency/schema.json -------------------------------------------------------------------------------- /template/src/api/currency/controllers/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/currency/controllers/currency.js -------------------------------------------------------------------------------- /template/src/api/currency/routes/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/currency/routes/currency.js -------------------------------------------------------------------------------- /template/src/api/currency/services/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/currency/services/currency.js -------------------------------------------------------------------------------- /template/src/api/fulfillment-provider/content-types/fulfillment-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/fulfillment-provider/content-types/fulfillment-provider/index.js -------------------------------------------------------------------------------- /template/src/api/fulfillment-provider/content-types/fulfillment-provider/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/fulfillment-provider/content-types/fulfillment-provider/schema.json -------------------------------------------------------------------------------- /template/src/api/fulfillment-provider/controllers/fulfillment-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/fulfillment-provider/controllers/fulfillment-provider.js -------------------------------------------------------------------------------- /template/src/api/fulfillment-provider/routes/fulfillment-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/fulfillment-provider/routes/fulfillment-provider.js -------------------------------------------------------------------------------- /template/src/api/fulfillment-provider/services/fulfillment-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/fulfillment-provider/services/fulfillment-provider.js -------------------------------------------------------------------------------- /template/src/api/image/content-types/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/image/content-types/image/index.js -------------------------------------------------------------------------------- /template/src/api/image/content-types/image/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/image/content-types/image/schema.json -------------------------------------------------------------------------------- /template/src/api/image/controllers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/image/controllers/image.js -------------------------------------------------------------------------------- /template/src/api/image/routes/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/image/routes/image.js -------------------------------------------------------------------------------- /template/src/api/image/services/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/image/services/image.js -------------------------------------------------------------------------------- /template/src/api/money-amount/content-types/money-amount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/money-amount/content-types/money-amount/index.js -------------------------------------------------------------------------------- /template/src/api/money-amount/content-types/money-amount/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/money-amount/content-types/money-amount/schema.json -------------------------------------------------------------------------------- /template/src/api/money-amount/controllers/money-amount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/money-amount/controllers/money-amount.js -------------------------------------------------------------------------------- /template/src/api/money-amount/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/money-amount/routes/routes.js -------------------------------------------------------------------------------- /template/src/api/money-amount/services/money-amount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/money-amount/services/money-amount.js -------------------------------------------------------------------------------- /template/src/api/payment-provider/content-types/payment-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/payment-provider/content-types/payment-provider/index.js -------------------------------------------------------------------------------- /template/src/api/payment-provider/content-types/payment-provider/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/payment-provider/content-types/payment-provider/schema.json -------------------------------------------------------------------------------- /template/src/api/payment-provider/controllers/payment-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/payment-provider/controllers/payment-provider.js -------------------------------------------------------------------------------- /template/src/api/payment-provider/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/payment-provider/routes/routes.js -------------------------------------------------------------------------------- /template/src/api/payment-provider/services/payment-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/payment-provider/services/payment-provider.js -------------------------------------------------------------------------------- /template/src/api/product-collection/content-types/product-collection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-collection/content-types/product-collection/index.js -------------------------------------------------------------------------------- /template/src/api/product-collection/content-types/product-collection/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-collection/content-types/product-collection/schema.json -------------------------------------------------------------------------------- /template/src/api/product-collection/controllers/product-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-collection/controllers/product-collection.js -------------------------------------------------------------------------------- /template/src/api/product-collection/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-collection/routes/routes.js -------------------------------------------------------------------------------- /template/src/api/product-collection/services/product-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-collection/services/product-collection.js -------------------------------------------------------------------------------- /template/src/api/product-option-value/content-types/product-option-value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option-value/content-types/product-option-value/index.js -------------------------------------------------------------------------------- /template/src/api/product-option-value/content-types/product-option-value/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option-value/content-types/product-option-value/schema.json -------------------------------------------------------------------------------- /template/src/api/product-option-value/controllers/product-option-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option-value/controllers/product-option-value.js -------------------------------------------------------------------------------- /template/src/api/product-option-value/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option-value/routes/routes.js -------------------------------------------------------------------------------- /template/src/api/product-option-value/services/product-option-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option-value/services/product-option-value.js -------------------------------------------------------------------------------- /template/src/api/product-option/content-types/product-option/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option/content-types/product-option/index.js -------------------------------------------------------------------------------- /template/src/api/product-option/content-types/product-option/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option/content-types/product-option/schema.json -------------------------------------------------------------------------------- /template/src/api/product-option/controllers/product-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option/controllers/product-option.js -------------------------------------------------------------------------------- /template/src/api/product-option/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option/routes/routes.js -------------------------------------------------------------------------------- /template/src/api/product-option/services/product-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-option/services/product-option.js -------------------------------------------------------------------------------- /template/src/api/product-tag/content-types/product-tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-tag/content-types/product-tag/index.js -------------------------------------------------------------------------------- /template/src/api/product-tag/content-types/product-tag/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-tag/content-types/product-tag/schema.json -------------------------------------------------------------------------------- /template/src/api/product-tag/controllers/product-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-tag/controllers/product-tag.js -------------------------------------------------------------------------------- /template/src/api/product-tag/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-tag/routes/routes.js -------------------------------------------------------------------------------- /template/src/api/product-tag/services/product-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-tag/services/product-tag.js -------------------------------------------------------------------------------- /template/src/api/product-type/content-types/product-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-type/content-types/product-type/index.js -------------------------------------------------------------------------------- /template/src/api/product-type/content-types/product-type/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-type/content-types/product-type/schema.json -------------------------------------------------------------------------------- /template/src/api/product-type/controllers/product-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-type/controllers/product-type.js -------------------------------------------------------------------------------- /template/src/api/product-type/routes/product-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-type/routes/product-type.js -------------------------------------------------------------------------------- /template/src/api/product-type/services/product-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-type/services/product-type.js -------------------------------------------------------------------------------- /template/src/api/product-variant/content-types/product-variant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-variant/content-types/product-variant/index.js -------------------------------------------------------------------------------- /template/src/api/product-variant/content-types/product-variant/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-variant/content-types/product-variant/lifecycles.js -------------------------------------------------------------------------------- /template/src/api/product-variant/content-types/product-variant/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-variant/content-types/product-variant/schema.json -------------------------------------------------------------------------------- /template/src/api/product-variant/controllers/product-variant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-variant/controllers/product-variant.js -------------------------------------------------------------------------------- /template/src/api/product-variant/routes/product-variant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-variant/routes/product-variant.js -------------------------------------------------------------------------------- /template/src/api/product-variant/services/product-variant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product-variant/services/product-variant.js -------------------------------------------------------------------------------- /template/src/api/product/content-types/product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product/content-types/product/index.js -------------------------------------------------------------------------------- /template/src/api/product/content-types/product/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product/content-types/product/lifecycles.js -------------------------------------------------------------------------------- /template/src/api/product/content-types/product/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product/content-types/product/schema.json -------------------------------------------------------------------------------- /template/src/api/product/controllers/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product/controllers/product.js -------------------------------------------------------------------------------- /template/src/api/product/routes/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product/routes/product.js -------------------------------------------------------------------------------- /template/src/api/product/services/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/product/services/product.js -------------------------------------------------------------------------------- /template/src/api/region/content-types/region/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/region/content-types/region/index.js -------------------------------------------------------------------------------- /template/src/api/region/content-types/region/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/region/content-types/region/lifecycles.js -------------------------------------------------------------------------------- /template/src/api/region/content-types/region/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/region/content-types/region/schema.json -------------------------------------------------------------------------------- /template/src/api/region/controllers/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/region/controllers/region.js -------------------------------------------------------------------------------- /template/src/api/region/routes/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/region/routes/region.js -------------------------------------------------------------------------------- /template/src/api/region/services/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/region/services/region.js -------------------------------------------------------------------------------- /template/src/api/shipping-option-requirement/content-types/shipping-option-requirement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option-requirement/content-types/shipping-option-requirement/index.js -------------------------------------------------------------------------------- /template/src/api/shipping-option-requirement/content-types/shipping-option-requirement/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option-requirement/content-types/shipping-option-requirement/schema.json -------------------------------------------------------------------------------- /template/src/api/shipping-option-requirement/controllers/shipping-option-requirement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option-requirement/controllers/shipping-option-requirement.js -------------------------------------------------------------------------------- /template/src/api/shipping-option-requirement/routes/shipping-option-requirement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option-requirement/routes/shipping-option-requirement.js -------------------------------------------------------------------------------- /template/src/api/shipping-option-requirement/services/shipping-option-requirement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option-requirement/services/shipping-option-requirement.js -------------------------------------------------------------------------------- /template/src/api/shipping-option/content-types/shipping-option/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option/content-types/shipping-option/index.js -------------------------------------------------------------------------------- /template/src/api/shipping-option/content-types/shipping-option/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option/content-types/shipping-option/schema.json -------------------------------------------------------------------------------- /template/src/api/shipping-option/controllers/shipping-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option/controllers/shipping-option.js -------------------------------------------------------------------------------- /template/src/api/shipping-option/routes/shipping-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option/routes/shipping-option.js -------------------------------------------------------------------------------- /template/src/api/shipping-option/services/shipping-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-option/services/shipping-option.js -------------------------------------------------------------------------------- /template/src/api/shipping-profile/content-types/shipping-profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-profile/content-types/shipping-profile/index.js -------------------------------------------------------------------------------- /template/src/api/shipping-profile/content-types/shipping-profile/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-profile/content-types/shipping-profile/schema.json -------------------------------------------------------------------------------- /template/src/api/shipping-profile/controllers/shipping-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-profile/controllers/shipping-profile.js -------------------------------------------------------------------------------- /template/src/api/shipping-profile/routes/shipping-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-profile/routes/shipping-profile.js -------------------------------------------------------------------------------- /template/src/api/shipping-profile/services/shipping-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/api/shipping-profile/services/shipping-profile.js -------------------------------------------------------------------------------- /template/src/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/bootstrap.js -------------------------------------------------------------------------------- /template/src/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharmaPawan11/strapi-medusa-template/HEAD/template/src/sync.js --------------------------------------------------------------------------------