@xata.io/client
Advanced tools
Comparing version 0.0.0-alpha.964f29b to 0.0.0-alpha.9ce6ba4
@@ -20,2 +20,3 @@ "use strict"; | ||
exports.XataError = exports.BaseClient = exports.RestRespositoryFactory = exports.RestRepository = exports.Repository = exports.Query = exports.includesAll = exports.includesPattern = exports.includesSubstring = exports.includes = exports.contains = exports.isNot = exports.is = exports.pattern = exports.endsWith = exports.startsWith = exports.notExists = exports.exists = exports.le = exports.lte = exports.lt = exports.gte = exports.ge = exports.gt = void 0; | ||
const errors_1 = require("./util/errors"); | ||
const gt = (value) => ({ $gt: value }); | ||
@@ -169,21 +170,12 @@ exports.gt = gt; | ||
this.client = client; | ||
const { fetch } = client.options; | ||
if (fetch) { | ||
const doWeHaveFetch = typeof fetch !== 'undefined'; | ||
const isInjectedFetchProblematic = !this.client.options.fetch; | ||
if (doWeHaveFetch) { | ||
this.fetch = fetch; | ||
} | ||
else if (typeof window === 'object') { | ||
this.fetch = window.fetch; | ||
else if (isInjectedFetchProblematic) { | ||
throw new Error(errors_1.errors.falsyFetchImplementation); | ||
} | ||
else if (typeof require === 'function') { | ||
try { | ||
this.fetch = require('node-fetch'); | ||
} | ||
catch (err) { | ||
try { | ||
this.fetch = require('cross-fetch'); | ||
} | ||
catch (err) { | ||
throw new Error('No fetch implementation found. Please provide one in the constructor'); | ||
} | ||
} | ||
else { | ||
this.fetch = this.client.options.fetch; | ||
} | ||
@@ -190,0 +182,0 @@ Object.defineProperty(this, 'client', { enumerable: false }); |
{ | ||
"name": "@xata.io/client", | ||
"version": "0.0.0-alpha.964f29b", | ||
"version": "0.0.0-alpha.9ce6ba4", | ||
"description": "Xata.io SDK for TypeScript and JavaScript", | ||
@@ -23,3 +23,3 @@ "main": "./dist/index.js", | ||
"homepage": "https://github.com/xataio/client-ts/blob/main/client/README.md", | ||
"gitHead": "964f29b3568a1a4e35119c1152b5ba33c494a1fc" | ||
"gitHead": "9ce6ba4047872efe2291d0b27ee9d611fb885749" | ||
} |
@@ -0,1 +1,3 @@ | ||
import { errors } from './util/errors'; | ||
export interface XataRecord { | ||
@@ -283,18 +285,11 @@ id: string; | ||
const { fetch } = client.options; | ||
const doWeHaveFetch = typeof fetch !== 'undefined'; | ||
const isInjectedFetchProblematic = !this.client.options.fetch; | ||
if (fetch) { | ||
if (doWeHaveFetch) { | ||
this.fetch = fetch; | ||
} else if (typeof window === 'object') { | ||
this.fetch = window.fetch; | ||
} else if (typeof require === 'function') { | ||
try { | ||
this.fetch = require('node-fetch'); | ||
} catch (err) { | ||
try { | ||
this.fetch = require('cross-fetch'); | ||
} catch (err) { | ||
throw new Error('No fetch implementation found. Please provide one in the constructor'); | ||
} | ||
} | ||
} else if (isInjectedFetchProblematic) { | ||
throw new Error(errors.falsyFetchImplementation); | ||
} else { | ||
this.fetch = this.client.options.fetch; | ||
} | ||
@@ -301,0 +296,0 @@ |
74616
13
1602