@secrecy/lib 1.83.3 → 1.83.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.
@@ -33,7 +33,8 @@ export async function downloadDataFromLink(opts) {
33
33
  let dataUrl = opts.dataUrl ?? 'https://data.secrecy.tech/';
34
34
  dataUrl = dataUrl.endsWith('/') ? dataUrl : `${dataUrl}/`;
35
35
  const rawDataLinkRes = await fetch(`${dataUrl}${opts.dataLinkSlug}/json`, {
36
- credentials: 'include',
36
+ // ! disable cookies for now
37
+ // credentials: 'include',
37
38
  }).catch((err) => {
38
39
  console.error(err);
39
40
  throw new Error(`Unable to fetch "${`${dataUrl}${opts.dataLinkSlug}/json"`}`, { cause: err });
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@secrecy/lib",
3
3
  "author": "Anonymize <anonymize@gmail.com>",
4
4
  "description": "Anonymize Secrecy Library",
5
- "version": "1.83.3",
5
+ "version": "1.83.4",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/anonymize-org/lib.git"