@flopflip/http-adapter 13.5.2 → 13.6.0

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.
@@ -127,7 +127,7 @@ class HttpAdapter {
127
127
  Object.defineProperty(this, _fetchFlags, {
128
128
  writable: true,
129
129
  value: async adapterArgs => {
130
- const flags = await adapterArgs.execute();
130
+ const flags = await adapterArgs.execute(adapterArgs);
131
131
  return flags;
132
132
  }
133
133
  });
@@ -277,7 +277,7 @@ class HttpAdapter {
277
277
  const adapter = new HttpAdapter();
278
278
  adapterUtilities.exposeGlobally(adapter);
279
279
 
280
- const version = "13.5.2";
280
+ const version = "13.6.0";
281
281
 
282
282
  exports["default"] = adapter;
283
283
  exports.version = version;
@@ -127,7 +127,7 @@ class HttpAdapter {
127
127
  Object.defineProperty(this, _fetchFlags, {
128
128
  writable: true,
129
129
  value: async adapterArgs => {
130
- const flags = await adapterArgs.execute();
130
+ const flags = await adapterArgs.execute(adapterArgs);
131
131
  return flags;
132
132
  }
133
133
  });
@@ -277,7 +277,7 @@ class HttpAdapter {
277
277
  const adapter = new HttpAdapter();
278
278
  adapterUtilities.exposeGlobally(adapter);
279
279
 
280
- const version = "13.5.2";
280
+ const version = "13.6.0";
281
281
 
282
282
  exports["default"] = adapter;
283
283
  exports.version = version;
@@ -99,7 +99,7 @@ class HttpAdapter {
99
99
  Object.defineProperty(this, _fetchFlags, {
100
100
  writable: true,
101
101
  value: async adapterArgs => {
102
- const flags = await adapterArgs.execute();
102
+ const flags = await adapterArgs.execute(adapterArgs);
103
103
  return flags;
104
104
  }
105
105
  });
@@ -249,6 +249,6 @@ class HttpAdapter {
249
249
  const adapter = new HttpAdapter();
250
250
  exposeGlobally(adapter);
251
251
 
252
- const version = "13.5.2";
252
+ const version = "13.6.0";
253
253
 
254
254
  export { adapter as default, version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flopflip/http-adapter",
3
- "version": "13.5.2",
3
+ "version": "13.6.0",
4
4
  "description": "An HTTP adapter for flipflop",
5
5
  "main": "dist/flopflip-http-adapter.cjs.js",
6
6
  "module": "dist/flopflip-http-adapter.esm.js",
@@ -30,10 +30,10 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "@babel/runtime": "7.24.4",
33
- "@flopflip/adapter-utilities": "13.5.2",
34
- "@flopflip/localstorage-cache": "13.5.2",
35
- "@flopflip/sessionstorage-cache": "13.5.2",
36
- "@flopflip/types": "13.5.2",
33
+ "@flopflip/adapter-utilities": "13.6.0",
34
+ "@flopflip/localstorage-cache": "13.6.0",
35
+ "@flopflip/sessionstorage-cache": "13.6.0",
36
+ "@flopflip/types": "13.6.0",
37
37
  "lodash": "4.17.21",
38
38
  "mitt": "3.0.1",
39
39
  "tiny-warning": "1.0.3"