@owox/connectors 0.12.0-next-20251110155035 → 0.12.0-next-20251112121743

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
@@ -10126,12 +10126,12 @@ const MicrosoftAds = (function() {
10126
10126
  */
10127
10127
  async pollUntilStatus({ url, options, isDone, interval = 5e3 }) {
10128
10128
  const startTime = Date.now();
10129
- const timeout = 15 * 60 * 1e3;
10129
+ const timeout = 30 * 60 * 1e3;
10130
10130
  let statusResult;
10131
10131
  try {
10132
10132
  do {
10133
10133
  if (Date.now() - startTime > timeout) {
10134
- throw new Error("Polling timed out after 15 minutes");
10134
+ throw new Error("Polling timed out after 30 minutes");
10135
10135
  }
10136
10136
  await AsyncUtils3.delay(interval);
10137
10137
  const response = await HttpUtils3.fetch(url, options);
package/dist/index.js CHANGED
@@ -10131,12 +10131,12 @@ OPTIONS(description="${this.description}")`;
10131
10131
  */
10132
10132
  async pollUntilStatus({ url, options, isDone, interval = 5e3 }) {
10133
10133
  const startTime = Date.now();
10134
- const timeout = 15 * 60 * 1e3;
10134
+ const timeout = 30 * 60 * 1e3;
10135
10135
  let statusResult;
10136
10136
  try {
10137
10137
  do {
10138
10138
  if (Date.now() - startTime > timeout) {
10139
- throw new Error("Polling timed out after 15 minutes");
10139
+ throw new Error("Polling timed out after 30 minutes");
10140
10140
  }
10141
10141
  await AsyncUtils2.delay(interval);
10142
10142
  const response = await HttpUtils2.fetch(url, options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owox/connectors",
3
- "version": "0.12.0-next-20251110155035",
3
+ "version": "0.12.0-next-20251112121743",
4
4
  "description": "Connectors and storages for different data sources",
5
5
  "license": "MIT",
6
6
  "publishConfig": {