@rsdk/actx 5.4.0-next.4 → 5.4.0-next.6

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.4.0-next.6](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.5...v5.4.0-next.6) (2024-11-28)
7
+
8
+ **Note:** Version bump only for package @rsdk/actx
9
+
10
+ ## [5.4.0-next.5](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.4...v5.4.0-next.5) (2024-11-28)
11
+
12
+ **Note:** Version bump only for package @rsdk/actx
13
+
6
14
  ## [5.4.0-next.4](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.3...v5.4.0-next.4) (2024-11-27)
7
15
 
8
16
  **Note:** Version bump only for package @rsdk/actx
@@ -1,8 +1,8 @@
1
1
  export interface AsyncContextProvider<V> {
2
+ get isSettled(): boolean;
2
3
  get(): V | undefined;
3
4
  getOrThrow(): V;
4
5
  set(v: V): void;
5
- get isSettled(): boolean;
6
6
  }
7
7
  export declare const createAsyncContextProvider: <V = never>(config: {
8
8
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"async-context.provider.js","sourceRoot":"","sources":["../src/async-context.provider.ts"],"names":[],"mappings":";;;AAAA,mDAA+C;AAYxC,MAAM,0BAA0B,GAAG,CAAY,MASrD,EAA2B,EAAE;IAC5B,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC;IAE1B,IAAI,SAAS,GAAG,KAAK,CAAC;IAEtB,OAAO;QACL,IAAI,SAAS;YACX,OAAO,SAAS,CAAC;QACnB,CAAC;QACD,GAAG;YACD,OAAO,4BAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QACjC,CAAC;QAED,UAAU;YACR,IAAI,CAAC,4BAAY,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC7B,MAAM,IAAI,KAAK,CAAC,sBAAsB,GAAG,KAAK,CAAC,CAAC;YAClD,CAAC;YACD,OAAO,4BAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QACjC,CAAC;QAED,GAAG,CAAC,CAAI;YACN,SAAS,GAAG,IAAI,CAAC;YACjB,4BAAY,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC;QAChD,CAAC;KACF,CAAC;AACJ,CAAC,CAAC;AAlCW,QAAA,0BAA0B,8BAkCrC"}
1
+ {"version":3,"file":"async-context.provider.js","sourceRoot":"","sources":["../src/async-context.provider.ts"],"names":[],"mappings":";;;AAAA,mDAA+C;AAWxC,MAAM,0BAA0B,GAAG,CAAY,MASrD,EAA2B,EAAE;IAC5B,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC;IAE1B,IAAI,SAAS,GAAG,KAAK,CAAC;IAEtB,OAAO;QACL,IAAI,SAAS;YACX,OAAO,SAAS,CAAC;QACnB,CAAC;QACD,GAAG;YACD,OAAO,4BAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QACjC,CAAC;QAED,UAAU;YACR,IAAI,CAAC,4BAAY,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC7B,MAAM,IAAI,KAAK,CAAC,sBAAsB,GAAG,KAAK,CAAC,CAAC;YAClD,CAAC;YACD,OAAO,4BAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QACjC,CAAC;QAED,GAAG,CAAC,CAAI;YACN,SAAS,GAAG,IAAI,CAAC;YACjB,4BAAY,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC;QAChD,CAAC;KACF,CAAC;AACJ,CAAC,CAAC;AAlCW,QAAA,0BAA0B,8BAkCrC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/actx",
3
- "version": "5.4.0-next.4",
3
+ "version": "5.4.0-next.6",
4
4
  "description": "Library for AsyncLocalStorage",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -17,5 +17,5 @@
17
17
  "@nestjs/common": "^10.0.0",
18
18
  "@nestjs/core": "^10.0.0"
19
19
  },
20
- "gitHead": "6f7d6802d4dc34620f3c0e8c8ec73887df36a647"
20
+ "gitHead": "acc1405be758b5ba4d2e8eda8d34b3c4f60a813f"
21
21
  }
@@ -1,13 +1,12 @@
1
1
  import { AsyncContext } from './async-context';
2
2
 
3
3
  export interface AsyncContextProvider<V> {
4
+ get isSettled(): boolean;
4
5
  get(): V | undefined;
5
6
 
6
7
  getOrThrow(): V;
7
8
 
8
9
  set(v: V): void;
9
-
10
- get isSettled(): boolean;
11
10
  }
12
11
 
13
12
  export const createAsyncContextProvider = <V = never>(config: {