Filip Drozd

Results 6 issues of Filip Drozd

Trying to create a new data feed setting using `/api/v2/platform/data_feed_settings` endpoint results in an error. ## Context Example request: ```bash curl --location 'https://example.com/api/v2/platform/data_feed_settings' \ --header 'Authorization: Bearer XXXXX' \ --header...

This PR adds a new endpoint to the `platform-sdk` for managing the data feed settings. Examples: ```ts const response = await client.dataFeeds.list({ bearer_token: '7381273269536713689562374856' }) const response = await client.dataFeeds.create({...

This PR adds the fluent interface implementation proposed [here](https://github.com/spree/spree-api-v2-js-sdk/pull/344). The `Client class` has been moved from the core package to the corresponding SDK packages because of typescript's problems with inferring...

## Description This PR adds a helper that fetches the Spree store configuration from the api that is then being passed to the nuxt.config.js. This is done to avoid static...

This PR adds a component for a clean button with minimal styling that can be extended as needed. ## Description ## Related Issue ## Motivation and Context #277 ## How...

This PR adds custom wrapper components for input fields that handle custom validation. The goal is to provide simple reusability and a separation of validation logic from the form. ##...