tering-serieuze-types 1.22.0 → 1.22.1

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
@@ -50,6 +50,7 @@ __export(src_exports, {
50
50
  ToggleBoolDto: () => ToggleBoolDto,
51
51
  ToggleableUserProperties: () => ToggleableUserProperties,
52
52
  TokenType: () => TokenType,
53
+ Type: () => import_common.Type,
53
54
  User: () => User,
54
55
  VerificationResponseDto: () => VerificationResponseDto,
55
56
  WebsocketAction: () => WebsocketAction,
@@ -377,6 +378,7 @@ var DeletePodDto = class extends (0, import_swagger8.PickType)(Pod, ["name"]) {
377
378
  };
378
379
 
379
380
  // src/index.ts
381
+ var import_common = require("@nestjs/common");
380
382
  var P2000Payload = class {
381
383
  };
382
384
  // Annotate the CommonJS export names for ESM import in node:
@@ -403,6 +405,7 @@ var P2000Payload = class {
403
405
  ToggleBoolDto,
404
406
  ToggleableUserProperties,
405
407
  TokenType,
408
+ Type,
406
409
  User,
407
410
  VerificationResponseDto,
408
411
  WebsocketAction,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "1.22.0",
3
+ "version": "1.22.1",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {
package/src/index.ts CHANGED
@@ -7,6 +7,9 @@ export * from './k8s';
7
7
  export * from './session';
8
8
  export * from './user';
9
9
 
10
+ // Prevent 'Inferred type cannot be named' error
11
+ export { Type } from '@nestjs/common';
12
+
10
13
  export interface Dto {}
11
14
 
12
15
  export class P2000Payload {