@angular/common 20.0.0-next.8 → 20.0.0-next.9

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v20.0.0-next.8
2
+ * @license Angular v20.0.0-next.9
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -782,6 +782,10 @@ class HttpRequest {
782
782
  * Whether this request should be sent with outgoing credentials (cookies).
783
783
  */
784
784
  withCredentials = false;
785
+ /**
786
+ * When using the fetch implementation and set to `true`, the browser will not abort the associated request if the page that initiated it is unloaded before the request is complete.
787
+ */
788
+ keepalive = false;
785
789
  /**
786
790
  * The expected response type of the server.
787
791
  *
@@ -834,6 +838,7 @@ class HttpRequest {
834
838
  // Normalize reportProgress and withCredentials.
835
839
  this.reportProgress = !!options.reportProgress;
836
840
  this.withCredentials = !!options.withCredentials;
841
+ this.keepalive = !!options.keepalive;
837
842
  // Override default response type of 'json' if one is provided.
838
843
  if (!!options.responseType) {
839
844
  this.responseType = options.responseType;
@@ -961,6 +966,7 @@ class HttpRequest {
961
966
  const method = update.method || this.method;
962
967
  const url = update.url || this.url;
963
968
  const responseType = update.responseType || this.responseType;
969
+ const keepalive = update.keepalive ?? this.keepalive;
964
970
  // Carefully handle the transferCache to differentiate between
965
971
  // `false` and `undefined` in the update args.
966
972
  const transferCache = update.transferCache ?? this.transferCache;
@@ -998,6 +1004,7 @@ class HttpRequest {
998
1004
  responseType,
999
1005
  withCredentials,
1000
1006
  transferCache,
1007
+ keepalive,
1001
1008
  });
1002
1009
  }
1003
1010
  }
@@ -1284,6 +1291,7 @@ function addBody(options, body) {
1284
1291
  responseType: options.responseType,
1285
1292
  withCredentials: options.withCredentials,
1286
1293
  transferCache: options.transferCache,
1294
+ keepalive: options.keepalive,
1287
1295
  };
1288
1296
  }
1289
1297
  /**
@@ -1410,6 +1418,7 @@ class HttpClient {
1410
1418
  responseType: options.responseType || 'json',
1411
1419
  withCredentials: options.withCredentials,
1412
1420
  transferCache: options.transferCache,
1421
+ keepalive: options.keepalive,
1413
1422
  });
1414
1423
  }
1415
1424
  // Start with an Observable.of() the initial request, and run the handler (which
@@ -1564,10 +1573,10 @@ class HttpClient {
1564
1573
  put(url, body, options = {}) {
1565
1574
  return this.request('PUT', url, addBody(options, body));
1566
1575
  }
1567
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClient, deps: [{ token: HttpHandler }], target: i0.ɵɵFactoryTarget.Injectable });
1568
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClient });
1576
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClient, deps: [{ token: HttpHandler }], target: i0.ɵɵFactoryTarget.Injectable });
1577
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClient });
1569
1578
  }
1570
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClient, decorators: [{
1579
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClient, decorators: [{
1571
1580
  type: Injectable
1572
1581
  }], ctorParameters: () => [{ type: HttpHandler }] });
1573
1582
 
@@ -1771,6 +1780,7 @@ class FetchBackend {
1771
1780
  method: req.method,
1772
1781
  headers,
1773
1782
  credentials,
1783
+ keepalive: req.keepalive,
1774
1784
  };
1775
1785
  }
1776
1786
  concatChunks(chunks, totalLength) {
@@ -1782,10 +1792,10 @@ class FetchBackend {
1782
1792
  }
1783
1793
  return chunksAll;
1784
1794
  }
1785
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: FetchBackend, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1786
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: FetchBackend });
1795
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: FetchBackend, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1796
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: FetchBackend });
1787
1797
  }
1788
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: FetchBackend, decorators: [{
1798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: FetchBackend, decorators: [{
1789
1799
  type: Injectable
1790
1800
  }] });
1791
1801
  /**
@@ -1922,10 +1932,10 @@ class HttpInterceptorHandler extends HttpHandler {
1922
1932
  return this.chain(initialRequest, (downstreamRequest) => this.backend.handle(downstreamRequest));
1923
1933
  }
1924
1934
  }
1925
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpInterceptorHandler, deps: [{ token: HttpBackend }, { token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
1926
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpInterceptorHandler });
1935
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpInterceptorHandler, deps: [{ token: HttpBackend }, { token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
1936
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpInterceptorHandler });
1927
1937
  }
1928
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpInterceptorHandler, decorators: [{
1938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpInterceptorHandler, decorators: [{
1929
1939
  type: Injectable
1930
1940
  }], ctorParameters: () => [{ type: HttpBackend }, { type: i0.EnvironmentInjector }] });
1931
1941
 
@@ -2127,10 +2137,10 @@ class JsonpClientBackend {
2127
2137
  foreignDocument ??= this.document.implementation.createHTMLDocument();
2128
2138
  foreignDocument.adoptNode(script);
2129
2139
  }
2130
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: JsonpClientBackend, deps: [{ token: JsonpCallbackContext }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
2131
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: JsonpClientBackend });
2140
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: JsonpClientBackend, deps: [{ token: JsonpCallbackContext }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
2141
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: JsonpClientBackend });
2132
2142
  }
2133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: JsonpClientBackend, decorators: [{
2143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: JsonpClientBackend, decorators: [{
2134
2144
  type: Injectable
2135
2145
  }], ctorParameters: () => [{ type: JsonpCallbackContext }, { type: undefined, decorators: [{
2136
2146
  type: Inject,
@@ -2169,10 +2179,10 @@ class JsonpInterceptor {
2169
2179
  intercept(initialRequest, next) {
2170
2180
  return runInInjectionContext(this.injector, () => jsonpInterceptorFn(initialRequest, (downstreamRequest) => next.handle(downstreamRequest)));
2171
2181
  }
2172
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: JsonpInterceptor, deps: [{ token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
2173
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: JsonpInterceptor });
2182
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: JsonpInterceptor, deps: [{ token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
2183
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: JsonpInterceptor });
2174
2184
  }
2175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: JsonpInterceptor, decorators: [{
2185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: JsonpInterceptor, decorators: [{
2176
2186
  type: Injectable
2177
2187
  }], ctorParameters: () => [{ type: i0.EnvironmentInjector }] });
2178
2188
 
@@ -2215,6 +2225,9 @@ class HttpXhrBackend {
2215
2225
  throw new _RuntimeError(-2800 /* RuntimeErrorCode.MISSING_JSONP_MODULE */, (typeof ngDevMode === 'undefined' || ngDevMode) &&
2216
2226
  `Cannot make a JSONP request without JSONP support. To fix the problem, either add the \`withJsonpSupport()\` call (if \`provideHttpClient()\` is used) or import the \`HttpClientJsonpModule\` in the root NgModule.`);
2217
2227
  }
2228
+ if (req.keepalive && ngDevMode) {
2229
+ console.warn(_formatRuntimeError(2813 /* RuntimeErrorCode.KEEPALIVE_NOT_SUPPORTED_WITH_XHR */, `Angular detected that a \`HttpClient\` request with the \`keepalive\` option was sent using XHR, which does not support it. To use the \`keepalive\` option, enable Fetch API support by passing \`withFetch()\` as an argument to \`provideHttpClient()\`.`));
2230
+ }
2218
2231
  // Check whether this factory has a special function to load an XHR implementation
2219
2232
  // for various non-browser environments. We currently limit it to only `ServerXhr`
2220
2233
  // class, which needs to load an XHR implementation.
@@ -2454,10 +2467,10 @@ class HttpXhrBackend {
2454
2467
  });
2455
2468
  }));
2456
2469
  }
2457
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXhrBackend, deps: [{ token: XhrFactory }], target: i0.ɵɵFactoryTarget.Injectable });
2458
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXhrBackend });
2470
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXhrBackend, deps: [{ token: XhrFactory }], target: i0.ɵɵFactoryTarget.Injectable });
2471
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXhrBackend });
2459
2472
  }
2460
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXhrBackend, decorators: [{
2473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXhrBackend, decorators: [{
2461
2474
  type: Injectable
2462
2475
  }], ctorParameters: () => [{ type: XhrFactory }] });
2463
2476
 
@@ -2509,10 +2522,10 @@ class HttpXsrfCookieExtractor {
2509
2522
  }
2510
2523
  return this.lastToken;
2511
2524
  }
2512
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXsrfCookieExtractor, deps: [{ token: DOCUMENT }, { token: PLATFORM_ID }, { token: XSRF_COOKIE_NAME }], target: i0.ɵɵFactoryTarget.Injectable });
2513
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXsrfCookieExtractor });
2525
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXsrfCookieExtractor, deps: [{ token: DOCUMENT }, { token: PLATFORM_ID }, { token: XSRF_COOKIE_NAME }], target: i0.ɵɵFactoryTarget.Injectable });
2526
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXsrfCookieExtractor });
2514
2527
  }
2515
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXsrfCookieExtractor, decorators: [{
2528
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXsrfCookieExtractor, decorators: [{
2516
2529
  type: Injectable
2517
2530
  }], ctorParameters: () => [{ type: undefined, decorators: [{
2518
2531
  type: Inject,
@@ -2556,10 +2569,10 @@ class HttpXsrfInterceptor {
2556
2569
  intercept(initialRequest, next) {
2557
2570
  return runInInjectionContext(this.injector, () => xsrfInterceptorFn(initialRequest, (downstreamRequest) => next.handle(downstreamRequest)));
2558
2571
  }
2559
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXsrfInterceptor, deps: [{ token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
2560
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXsrfInterceptor });
2572
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXsrfInterceptor, deps: [{ token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
2573
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXsrfInterceptor });
2561
2574
  }
2562
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpXsrfInterceptor, decorators: [{
2575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpXsrfInterceptor, decorators: [{
2563
2576
  type: Injectable
2564
2577
  }], ctorParameters: () => [{ type: i0.EnvironmentInjector }] });
2565
2578
 
@@ -2825,9 +2838,9 @@ class HttpClientXsrfModule {
2825
2838
  providers: withXsrfConfiguration(options).ɵproviders,
2826
2839
  };
2827
2840
  }
2828
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientXsrfModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2829
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientXsrfModule });
2830
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientXsrfModule, providers: [
2841
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientXsrfModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2842
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientXsrfModule });
2843
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientXsrfModule, providers: [
2831
2844
  HttpXsrfInterceptor,
2832
2845
  { provide: HTTP_INTERCEPTORS, useExisting: HttpXsrfInterceptor, multi: true },
2833
2846
  { provide: HttpXsrfTokenExtractor, useClass: HttpXsrfCookieExtractor },
@@ -2838,7 +2851,7 @@ class HttpClientXsrfModule {
2838
2851
  { provide: XSRF_ENABLED, useValue: true },
2839
2852
  ] });
2840
2853
  }
2841
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientXsrfModule, decorators: [{
2854
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientXsrfModule, decorators: [{
2842
2855
  type: NgModule,
2843
2856
  args: [{
2844
2857
  providers: [
@@ -2864,11 +2877,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8",
2864
2877
  * @deprecated use `provideHttpClient(withInterceptorsFromDi())` as providers instead
2865
2878
  */
2866
2879
  class HttpClientModule {
2867
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2868
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientModule });
2869
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientModule, providers: [provideHttpClient(withInterceptorsFromDi())] });
2880
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2881
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientModule });
2882
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientModule, providers: [provideHttpClient(withInterceptorsFromDi())] });
2870
2883
  }
2871
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientModule, decorators: [{
2884
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientModule, decorators: [{
2872
2885
  type: NgModule,
2873
2886
  args: [{
2874
2887
  /**
@@ -2888,11 +2901,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8",
2888
2901
  * @deprecated `withJsonpSupport()` as providers instead
2889
2902
  */
2890
2903
  class HttpClientJsonpModule {
2891
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientJsonpModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2892
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientJsonpModule });
2893
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientJsonpModule, providers: [withJsonpSupport().ɵproviders] });
2904
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientJsonpModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2905
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientJsonpModule });
2906
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientJsonpModule, providers: [withJsonpSupport().ɵproviders] });
2894
2907
  }
2895
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8", ngImport: i0, type: HttpClientJsonpModule, decorators: [{
2908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.9", ngImport: i0, type: HttpClientJsonpModule, decorators: [{
2896
2909
  type: NgModule,
2897
2910
  args: [{
2898
2911
  providers: [withJsonpSupport().ɵproviders],
@@ -2900,4 +2913,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.8",
2900
2913
  }] });
2901
2914
 
2902
2915
  export { FetchBackend, HTTP_INTERCEPTORS, HTTP_ROOT_INTERCEPTOR_FNS, HttpBackend, HttpClient, HttpClientJsonpModule, HttpClientModule, HttpClientXsrfModule, HttpContext, HttpContextToken, HttpErrorResponse, HttpEventType, HttpFeatureKind, HttpHandler, HttpHeaderResponse, HttpHeaders, HttpInterceptorHandler, HttpParams, HttpRequest, HttpResponse, HttpResponseBase, HttpStatusCode, HttpUrlEncodingCodec, HttpXhrBackend, HttpXsrfTokenExtractor, JsonpClientBackend, JsonpInterceptor, REQUESTS_CONTRIBUTE_TO_STABILITY, provideHttpClient, withFetch, withInterceptors, withInterceptorsFromDi, withJsonpSupport, withNoXsrfProtection, withRequestsMadeViaParent, withXsrfConfiguration };
2903
- //# sourceMappingURL=module-C4LakRc7.mjs.map
2916
+ //# sourceMappingURL=module-D1VfOyZ7.mjs.map