@uniformdev/context 19.38.3-alpha.70 → 19.38.3-alpha.78

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/api/api.js CHANGED
@@ -143,7 +143,8 @@ var ApiClient = class _ApiClient {
143
143
  if (this.options.bypassCache) {
144
144
  coreHeaders["x-bypass-cache"] = "true";
145
145
  }
146
- const callApi = () => this.options.fetch(fetchUri.toString(), {
146
+ const { fetch: fetch2 } = this.options;
147
+ const callApi = () => fetch2(fetchUri.toString(), {
147
148
  ...options,
148
149
  headers: {
149
150
  ...options == null ? void 0 : options.headers,
package/dist/api/api.mjs CHANGED
@@ -78,7 +78,8 @@ var ApiClient = class _ApiClient {
78
78
  if (this.options.bypassCache) {
79
79
  coreHeaders["x-bypass-cache"] = "true";
80
80
  }
81
- const callApi = () => this.options.fetch(fetchUri.toString(), {
81
+ const { fetch: fetch2 } = this.options;
82
+ const callApi = () => fetch2(fetchUri.toString(), {
82
83
  ...options,
83
84
  headers: {
84
85
  ...options == null ? void 0 : options.headers,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context",
3
- "version": "19.38.3-alpha.70+55e5a8fe1",
3
+ "version": "19.38.3-alpha.78+5c9892bf1",
4
4
  "description": "Uniform Context core package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "55e5a8fe1d80971a93ea31d3a50cec72e71be70a"
69
+ "gitHead": "5c9892bf101584d351d06b65e1658a1237594cfb"
70
70
  }