@learncard/network-brain-client 2.1.0 → 2.1.1

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.
@@ -4327,7 +4327,10 @@ var callbackLink = /* @__PURE__ */ __name((callback) => {
4327
4327
  var getClient = /* @__PURE__ */ __name(async (url, didAuthFunction) => {
4328
4328
  let challenges = [];
4329
4329
  const challengeRequester = createTRPCProxyClient({
4330
- transformer: import_helpers.RegExpTransformer,
4330
+ transformer: {
4331
+ input: import_helpers.RegExpTransformer,
4332
+ output: { serialize: (o) => o, deserialize: (o) => o }
4333
+ },
4331
4334
  links: [
4332
4335
  httpBatchLink({
4333
4336
  url,
@@ -4341,7 +4344,10 @@ var getClient = /* @__PURE__ */ __name(async (url, didAuthFunction) => {
4341
4344
  }, "getChallenges");
4342
4345
  challenges = await getChallenges();
4343
4346
  const trpc = createTRPCProxyClient({
4344
- transformer: import_helpers.RegExpTransformer,
4347
+ transformer: {
4348
+ input: import_helpers.RegExpTransformer,
4349
+ output: { serialize: (o) => o, deserialize: (o) => o }
4350
+ },
4345
4351
  links: [
4346
4352
  callbackLink(async () => {
4347
4353
  challenges = await getChallenges();