tering-serieuze-types 3.10.0 → 4.0.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/dist/index.js CHANGED
@@ -389,6 +389,7 @@ __decorateClass([
389
389
  ], ToggleBoolDto.prototype, "field", 2);
390
390
  var WsUpdateStoreDto = class {
391
391
  mutation;
392
+ // oxlint-disable-next-line typescript/no-explicit-any -- base class; subclasses narrow via override
392
393
  payload;
393
394
  };
394
395
  var WsUpdateStoreSetAccount = class extends WsUpdateStoreDto {
@@ -399,6 +400,7 @@ var WsUpdateStoreSetAccount = class extends WsUpdateStoreDto {
399
400
  var WebsocketAction = class {
400
401
  serviceName;
401
402
  methodName;
403
+ // oxlint-disable-next-line typescript/no-explicit-any -- intentionally polymorphic; per-action shape
402
404
  data;
403
405
  };
404
406
  __decorateClass([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "3.10.0",
3
+ "version": "4.0.0",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {
package/src/button.ts CHANGED
@@ -9,7 +9,8 @@ export class WebsocketAction {
9
9
  methodName: string;
10
10
 
11
11
  @ApiProperty({ type: Object })
12
- data: unknown;
12
+ // oxlint-disable-next-line typescript/no-explicit-any -- intentionally polymorphic; per-action shape
13
+ data: any;
13
14
  }
14
15
 
15
16
  export class Button {
package/src/index.ts CHANGED
@@ -12,8 +12,6 @@ export * from "./user";
12
12
  // Prevent 'Inferred type cannot be named' error
13
13
  export type { Type } from "@nestjs/common";
14
14
 
15
- export type Dto = Record<string, never>;
16
-
17
15
  export class P2000Payload {
18
16
  message: string;
19
17
  }
package/src/user.ts CHANGED
@@ -96,7 +96,8 @@ export class ToggleBoolDto {
96
96
  export class WsUpdateStoreDto {
97
97
  mutation: string;
98
98
 
99
- payload: unknown;
99
+ // oxlint-disable-next-line typescript/no-explicit-any -- base class; subclasses narrow via override
100
+ payload: any;
100
101
  }
101
102
 
102
103
  export class WsUpdateStoreSetAccount extends WsUpdateStoreDto {