@salesforce/lds-network-fetch 1.401.0 → 1.403.0

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.
@@ -779,7 +779,11 @@ function generateRequestId() {
779
779
  }
780
780
  return s4() + s4();
781
781
  }
782
- return [Math.round(Date.now() * 1000000), guid(), Math.round(Math.random() * 100000000)]
782
+ return [
783
+ Math.round(window.performance.now() * 1000000),
784
+ guid(),
785
+ Math.round(Math.random() * 100000000),
786
+ ]
783
787
  .join('')
784
788
  .substring(0, 18);
785
789
  }
@@ -872,4 +876,4 @@ function instrument(newInstrumentation) {
872
876
  }
873
877
 
874
878
  export { generateRequestId, instrument, internalRequestTracker, setupFetchNetworkAdapter, setupLexNetworkAdapter };
875
- // version: 1.401.0-b1adb82748
879
+ // version: 1.403.0-bc09fbc54b
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-fetch",
3
- "version": "1.401.0",
3
+ "version": "1.403.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter using fetch",
6
6
  "main": "dist/ldsNetworkFetch.js",
@@ -38,6 +38,6 @@
38
38
  "@luvio/network-adapter-fetch": "0.158.7"
39
39
  },
40
40
  "devDependencies": {
41
- "@salesforce/lds-network-aura": "^1.401.0"
41
+ "@salesforce/lds-network-aura": "^1.403.0"
42
42
  }
43
43
  }