@po-ui/ng-sync 6.8.0 → 6.9.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.
- package/esm2020/lib/services/po-event-sourcing/po-event-sourcing.service.mjs +10 -10
- package/fesm2015/po-ui-ng-sync.mjs +9 -9
- package/fesm2015/po-ui-ng-sync.mjs.map +1 -1
- package/fesm2020/po-ui-ng-sync.mjs +9 -9
- package/fesm2020/po-ui-ng-sync.mjs.map +1 -1
- package/package.json +4 -4
- package/po-ui-ng-sync-6.9.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v3/index.js +1 -1
- package/schematics/ng-update/v4/index.js +1 -1
- package/schematics/ng-update/v5/index.js +1 -1
- package/schematics/ng-update/v6/index.js +1 -1
- package/po-ui-ng-sync-6.8.0.tgz +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Injectable, NgModule } from '@angular/core';
|
|
3
|
-
import
|
|
3
|
+
import { StatusCodes } from 'http-status-codes';
|
|
4
4
|
import { Subject, Observable, of, merge, fromEvent, forkJoin, timer } from 'rxjs';
|
|
5
5
|
import { map, expand, reduce, mapTo, mergeMap } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@po-ui/ng-storage';
|
|
@@ -1020,14 +1020,14 @@ class PoEventSourcingService {
|
|
|
1020
1020
|
}
|
|
1021
1021
|
PoEventSourcingService.event_sourcing_name = 'EventSourcing';
|
|
1022
1022
|
PoEventSourcingService.VALID_HTTP_STATUS_CODES = [
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1023
|
+
StatusCodes.OK,
|
|
1024
|
+
StatusCodes.CREATED,
|
|
1025
|
+
StatusCodes.ACCEPTED,
|
|
1026
|
+
StatusCodes.NON_AUTHORITATIVE_INFORMATION,
|
|
1027
|
+
StatusCodes.NO_CONTENT,
|
|
1028
|
+
StatusCodes.RESET_CONTENT,
|
|
1029
|
+
StatusCodes.PARTIAL_CONTENT,
|
|
1030
|
+
StatusCodes.MULTI_STATUS // 207
|
|
1031
1031
|
];
|
|
1032
1032
|
PoEventSourcingService.ɵfac = function PoEventSourcingService_Factory(t) { return new (t || PoEventSourcingService)(i0.ɵɵinject(PoSchemaDefinitionService), i0.ɵɵinject(PoSchemaService), i0.ɵɵinject(i1.PoStorageService), i0.ɵɵinject(PoHttpClientService)); };
|
|
1033
1033
|
PoEventSourcingService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PoEventSourcingService, factory: PoEventSourcingService.ɵfac });
|