@firebase/firestore 3.4.15 → 3.5.0-20220914164443

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.
@@ -8,7 +8,7 @@ import * as grpc from '@grpc/grpc-js';
8
8
  import * as protoLoader from '@grpc/proto-loader';
9
9
 
10
10
  const name = "@firebase/firestore";
11
- const version$1 = "3.4.15";
11
+ const version$1 = "3.5.0-20220914164443";
12
12
 
13
13
  /**
14
14
  * @license
@@ -61,7 +61,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
61
61
  User.FIRST_PARTY = new User('first-party-uid');
62
62
  User.MOCK_USER = new User('mock-user');
63
63
 
64
- const version = "9.9.4";
64
+ const version = "9.9.5-20220914164443";
65
65
 
66
66
  /**
67
67
  * @license
@@ -2601,9 +2601,9 @@ function checkForAndReportiOSError(error) {
2601
2601
 
2602
2602
  const LOG_TAG$h = 'IndexBackiller';
2603
2603
  /** How long we wait to try running index backfill after SDK initialization. */
2604
- const INITIAL_BACKFILL_DELAY_MS = 15;
2604
+ const INITIAL_BACKFILL_DELAY_MS = 15 * 1000;
2605
2605
  /** Minimum amount of time between backfill checks, after the first one. */
2606
- const REGULAR_BACKFILL_DELAY_MS = 1;
2606
+ const REGULAR_BACKFILL_DELAY_MS = 60 * 1000;
2607
2607
  /** The maximum number of documents to process each time backfill() is called. */
2608
2608
  const MAX_DOCUMENTS_TO_PROCESS = 50;
2609
2609
  /** This class is responsible for the scheduling of Index Backfiller. */