tscommons-esm-async 0.0.8 → 0.0.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.
- package/dist/index.d.mts +12 -12
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { ECommonsInvocation } from './enums/ecommons-invocation.mjs';
|
|
2
|
-
import { ECommonsSynchronisedTimeoutAction } from './enums/ecommons-synchronised-timeout-action.mjs';
|
|
3
|
-
import { ECommonsRunState, fromECommonsRunState, toECommonsRunState, isECommonsRunState } from './enums/ecommons-run-state.mjs';
|
|
4
1
|
import { commonsPromiseTimeout } from './helpers/commons-promise.mjs';
|
|
5
|
-
import { CommonsDebouncer } from './helpers/commons-debouncer.mjs';
|
|
6
2
|
import { CommonsSemaphore } from './helpers/commons-semaphore.mjs';
|
|
7
|
-
import { CommonsFinalValue } from './helpers/commons-final-value.mjs';
|
|
8
3
|
import { commonsAsyncTimeout, commonsAsyncAbortTimeout, commonsAsyncTimeoutObservable, commonsAsyncInterval, commonsAsyncAbortInterval, commonsAsyncIntervalObservable } from './helpers/commons-async.mjs';
|
|
4
|
+
import { CommonsDebouncer } from './helpers/commons-debouncer.mjs';
|
|
9
5
|
import { CommonsGrouper } from './helpers/commons-grouper.mjs';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import { TCommonsSchedule, isTCommonsSchedule } from './types/tcommons-schedule.mjs';
|
|
13
|
-
import { CommonsSynchronised } from './classes/commons-synchronised.mjs';
|
|
6
|
+
import { CommonsFinalValue } from './helpers/commons-final-value.mjs';
|
|
7
|
+
import { CommonsMemoryObservable } from './classes/commons-memory-observable.mjs';
|
|
14
8
|
import { CommonsStateThread } from './classes/commons-state-thread.mjs';
|
|
15
|
-
import {
|
|
9
|
+
import { CommonsSynchronised } from './classes/commons-synchronised.mjs';
|
|
16
10
|
import { CommonsSchedule } from './classes/commons-schedule.mjs';
|
|
17
|
-
import {
|
|
11
|
+
import { CommonsClaimPool } from './classes/commons-claim-pool.mjs';
|
|
12
|
+
import { ECommonsInvocation } from './enums/ecommons-invocation.mjs';
|
|
13
|
+
import { ECommonsSynchronisedTimeoutAction } from './enums/ecommons-synchronised-timeout-action.mjs';
|
|
14
|
+
import { ECommonsRunState, fromECommonsRunState, toECommonsRunState, isECommonsRunState } from './enums/ecommons-run-state.mjs';
|
|
15
|
+
import { TCommonsFinalValue } from './types/tcommons-final-value.mjs';
|
|
16
|
+
import { TCommonsScheduleTime, isTCommonsScheduleTime } from './types/tcommons-schedule-time.mjs';
|
|
17
|
+
import { TCommonsSchedule, isTCommonsSchedule } from './types/tcommons-schedule.mjs';
|
|
18
18
|
import { ICommonsStateful } from './interfaces/icommons-stateful.mjs';
|
|
19
|
-
export {
|
|
19
|
+
export { commonsPromiseTimeout, CommonsSemaphore, commonsAsyncTimeout, commonsAsyncAbortTimeout, commonsAsyncTimeoutObservable, commonsAsyncInterval, commonsAsyncAbortInterval, commonsAsyncIntervalObservable, CommonsDebouncer, CommonsGrouper, CommonsFinalValue, CommonsMemoryObservable, CommonsStateThread, CommonsSynchronised, CommonsSchedule, CommonsClaimPool, ECommonsInvocation, ECommonsSynchronisedTimeoutAction, ECommonsRunState, fromECommonsRunState, toECommonsRunState, isECommonsRunState, TCommonsFinalValue, TCommonsScheduleTime, isTCommonsScheduleTime, TCommonsSchedule, isTCommonsSchedule, ICommonsStateful };
|
package/dist/index.mjs
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { ECommonsInvocation } from './enums/ecommons-invocation.mjs';
|
|
2
|
-
import { ECommonsSynchronisedTimeoutAction } from './enums/ecommons-synchronised-timeout-action.mjs';
|
|
3
|
-
import { ECommonsRunState, fromECommonsRunState, toECommonsRunState, isECommonsRunState } from './enums/ecommons-run-state.mjs';
|
|
4
1
|
import { commonsPromiseTimeout } from './helpers/commons-promise.mjs';
|
|
5
|
-
import { CommonsDebouncer } from './helpers/commons-debouncer.mjs';
|
|
6
2
|
import { CommonsSemaphore } from './helpers/commons-semaphore.mjs';
|
|
7
|
-
import { CommonsFinalValue } from './helpers/commons-final-value.mjs';
|
|
8
3
|
import { commonsAsyncTimeout, commonsAsyncAbortTimeout, commonsAsyncTimeoutObservable, commonsAsyncInterval, commonsAsyncAbortInterval, commonsAsyncIntervalObservable } from './helpers/commons-async.mjs';
|
|
4
|
+
import { CommonsDebouncer } from './helpers/commons-debouncer.mjs';
|
|
9
5
|
import { CommonsGrouper } from './helpers/commons-grouper.mjs';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import { CommonsSynchronised } from './classes/commons-synchronised.mjs';
|
|
6
|
+
import { CommonsFinalValue } from './helpers/commons-final-value.mjs';
|
|
7
|
+
import { CommonsMemoryObservable } from './classes/commons-memory-observable.mjs';
|
|
13
8
|
import { CommonsStateThread } from './classes/commons-state-thread.mjs';
|
|
14
|
-
import {
|
|
9
|
+
import { CommonsSynchronised } from './classes/commons-synchronised.mjs';
|
|
15
10
|
import { CommonsSchedule } from './classes/commons-schedule.mjs';
|
|
16
|
-
import {
|
|
17
|
-
|
|
11
|
+
import { CommonsClaimPool } from './classes/commons-claim-pool.mjs';
|
|
12
|
+
import { ECommonsInvocation } from './enums/ecommons-invocation.mjs';
|
|
13
|
+
import { ECommonsSynchronisedTimeoutAction } from './enums/ecommons-synchronised-timeout-action.mjs';
|
|
14
|
+
import { ECommonsRunState, fromECommonsRunState, toECommonsRunState, isECommonsRunState } from './enums/ecommons-run-state.mjs';
|
|
15
|
+
import { isTCommonsScheduleTime } from './types/tcommons-schedule-time.mjs';
|
|
16
|
+
import { isTCommonsSchedule } from './types/tcommons-schedule.mjs';
|
|
17
|
+
export { commonsPromiseTimeout, CommonsSemaphore, commonsAsyncTimeout, commonsAsyncAbortTimeout, commonsAsyncTimeoutObservable, commonsAsyncInterval, commonsAsyncAbortInterval, commonsAsyncIntervalObservable, CommonsDebouncer, CommonsGrouper, CommonsFinalValue, CommonsMemoryObservable, CommonsStateThread, CommonsSynchronised, CommonsSchedule, CommonsClaimPool, ECommonsInvocation, ECommonsSynchronisedTimeoutAction, ECommonsRunState, fromECommonsRunState, toECommonsRunState, isECommonsRunState, isTCommonsScheduleTime, isTCommonsSchedule };
|
|
18
18
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EACL,mBAAmB,EACnB,wBAAwB,EACxB,6BAA6B,EAC7B,oBAAoB,EACpB,yBAAyB,EACzB,8BAA8B,EAC/B,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,yCAAyC,CAAC;AAClF,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,iCAAiC,EAAE,MAAM,kDAAkD,CAAC;AACrG,OAAO,EACL,gBAAgB,EAChB,oBAAoB,EACpB,kBAAkB,EAClB,kBAAkB,EACnB,MAAM,gCAAgC,CAAC;AAExC,OAAO,EAAwB,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAClG,OAAO,EAAoB,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAErF,OAAO,EACN,qBAAqB,EACrB,gBAAgB,EAChB,mBAAmB,EACnB,wBAAwB,EACxB,6BAA6B,EAC7B,oBAAoB,EACpB,yBAAyB,EACzB,8BAA8B,EAC9B,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,uBAAuB,EACvB,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EACf,gBAAgB,EAChB,kBAAkB,EAClB,iCAAiC,EACjC,gBAAgB,EAChB,oBAAoB,EACpB,kBAAkB,EAClB,kBAAkB,EAGlB,sBAAsB,EAEtB,kBAAkB,EAElB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tscommons-esm-async",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tsc": "./node_modules/typescript/bin/tsc",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"rxjs": "^7.8.1",
|
|
29
|
-
"tscommons-esm-core": "^0.0.
|
|
29
|
+
"tscommons-esm-core": "^0.0.5"
|
|
30
30
|
}
|
|
31
31
|
}
|