@flipswitch-io/sdk 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -230,7 +230,7 @@ var FlipswitchProvider = class {
230
230
  headers.push(["X-Flipswitch-Features", this.getTelemetryFeaturesHeader()]);
231
231
  }
232
232
  this.ofrepProvider = new import_ofrep_web_provider.OFREPWebProvider({
233
- baseUrl: this.baseUrl + "/ofrep/v1",
233
+ baseUrl: this.baseUrl,
234
234
  fetchImplementation: this.fetchImpl,
235
235
  headers
236
236
  });
package/dist/index.mjs CHANGED
@@ -205,7 +205,7 @@ var FlipswitchProvider = class {
205
205
  headers.push(["X-Flipswitch-Features", this.getTelemetryFeaturesHeader()]);
206
206
  }
207
207
  this.ofrepProvider = new OFREPWebProvider({
208
- baseUrl: this.baseUrl + "/ofrep/v1",
208
+ baseUrl: this.baseUrl,
209
209
  fetchImplementation: this.fetchImpl,
210
210
  headers
211
211
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flipswitch-io/sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Flipswitch SDK with real-time SSE support for OpenFeature",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",