@gbozee/ultimate 0.0.2-196 → 0.0.2-197

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/index.cjs CHANGED
@@ -54430,7 +54430,9 @@ function decryptObject(encryptedString, password) {
54430
54430
  }
54431
54431
  async function initPocketBaseClient(proxy_credentials) {
54432
54432
  const pb = new Client(proxy_credentials.host);
54433
- await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password);
54433
+ await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password, {
54434
+ autoRefreshThreshold: 30 * 60
54435
+ });
54434
54436
  const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom");
54435
54437
  if (typeof pb === "object" && pb !== null) {
54436
54438
  pb[customInspectSymbol] = function() {
package/dist/index.js CHANGED
@@ -54367,7 +54367,9 @@ function decryptObject(encryptedString, password) {
54367
54367
  }
54368
54368
  async function initPocketBaseClient(proxy_credentials) {
54369
54369
  const pb = new Client(proxy_credentials.host);
54370
- await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password);
54370
+ await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password, {
54371
+ autoRefreshThreshold: 30 * 60
54372
+ });
54371
54373
  const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom");
54372
54374
  if (typeof pb === "object" && pb !== null) {
54373
54375
  pb[customInspectSymbol] = function() {
@@ -61123,7 +61123,9 @@ function decryptObject(encryptedString, password) {
61123
61123
  }
61124
61124
  async function initPocketBaseClient(proxy_credentials) {
61125
61125
  const pb = new Client(proxy_credentials.host);
61126
- await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password);
61126
+ await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password, {
61127
+ autoRefreshThreshold: 30 * 60
61128
+ });
61127
61129
  const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom");
61128
61130
  if (typeof pb === "object" && pb !== null) {
61129
61131
  pb[customInspectSymbol] = function() {
@@ -61096,7 +61096,9 @@ function decryptObject(encryptedString, password) {
61096
61096
  }
61097
61097
  async function initPocketBaseClient(proxy_credentials) {
61098
61098
  const pb = new Client(proxy_credentials.host);
61099
- await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password);
61099
+ await pb.collection("_superusers").authWithPassword(proxy_credentials.email, proxy_credentials.password, {
61100
+ autoRefreshThreshold: 30 * 60
61101
+ });
61100
61102
  const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom");
61101
61103
  if (typeof pb === "object" && pb !== null) {
61102
61104
  pb[customInspectSymbol] = function() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-196",
4
+ "version": "0.0.2-197",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",