drimion 0.1.12 → 0.1.13

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/cli/index.js CHANGED
@@ -219,7 +219,7 @@ function resolvePackageManager() {
219
219
  if (true) {
220
220
  return {
221
221
  __PKG_NAME__: "drimion",
222
- __PKG_VERSION__: "0.1.12",
222
+ __PKG_VERSION__: "0.1.13",
223
223
  __PKG_REPOSITORY__: "git+https://github.com/bramadl/drimion.git"
224
224
  };
225
225
  }
@@ -245,10 +245,10 @@ export abstract class GettersAndSetters<Props> {
245
245
  * const raw = stringVo.get('value'); // 'hello'
246
246
  * ```
247
247
  */
248
- public get<Key extends keyof Props>(key: Key): Readonly<Props[Key]>;
248
+ public get<Key extends keyof Props>(key: Key): Props[Key];
249
249
  public get(
250
250
  key: "value",
251
- ): Readonly<"value" extends keyof Props ? Props["value"] : Props>;
251
+ ): "value" extends keyof Props ? Props["value"] : Props;
252
252
  /** biome-ignore lint/suspicious/noExplicitAny: TS cannot correlate overload branches with runtime narrowing. */
253
253
  public get(key: any): any {
254
254
  if (this.config.disableGetters) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drimion",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Headless DDD primitives CLI for TypeScript — own your domain",
5
5
  "keywords": [
6
6
  "ddd",