@tonightpass/nest 0.0.219 → 0.0.221

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 CHANGED
@@ -2,31 +2,31 @@ import * as tonightpass from 'tonightpass';
2
2
 
3
3
  declare module "@nestjs/common" {
4
4
  export const Get: <Path extends tonightpass.PathsFor<"GET">>(
5
- path: Path,
5
+ path: Path
6
6
  ) => MethodDecorator;
7
7
 
8
8
  export const Post: <
9
9
  Path extends Extract<tonightpass.Endpoints, { method: "POST" }>["path"],
10
10
  >(
11
- path: Path,
11
+ path: Path
12
12
  ) => MethodDecorator;
13
13
 
14
14
  export const Put: <
15
15
  Path extends Extract<tonightpass.Endpoints, { method: "PUT" }>["path"],
16
16
  >(
17
- path: Path,
17
+ path: Path
18
18
  ) => MethodDecorator;
19
19
 
20
20
  export const Patch: <
21
21
  Path extends Extract<tonightpass.Endpoints, { method: "PATCH" }>["path"],
22
22
  >(
23
- path: Path,
23
+ path: Path
24
24
  ) => MethodDecorator;
25
25
 
26
26
  export const Delete: <
27
27
  Path extends Extract<tonightpass.Endpoints, { method: "DELETE" }>["path"],
28
28
  >(
29
- path: Path,
29
+ path: Path
30
30
  ) => MethodDecorator;
31
31
  }
32
32
 
package/dist/index.d.ts CHANGED
@@ -2,31 +2,31 @@ import * as tonightpass from 'tonightpass';
2
2
 
3
3
  declare module "@nestjs/common" {
4
4
  export const Get: <Path extends tonightpass.PathsFor<"GET">>(
5
- path: Path,
5
+ path: Path
6
6
  ) => MethodDecorator;
7
7
 
8
8
  export const Post: <
9
9
  Path extends Extract<tonightpass.Endpoints, { method: "POST" }>["path"],
10
10
  >(
11
- path: Path,
11
+ path: Path
12
12
  ) => MethodDecorator;
13
13
 
14
14
  export const Put: <
15
15
  Path extends Extract<tonightpass.Endpoints, { method: "PUT" }>["path"],
16
16
  >(
17
- path: Path,
17
+ path: Path
18
18
  ) => MethodDecorator;
19
19
 
20
20
  export const Patch: <
21
21
  Path extends Extract<tonightpass.Endpoints, { method: "PATCH" }>["path"],
22
22
  >(
23
- path: Path,
23
+ path: Path
24
24
  ) => MethodDecorator;
25
25
 
26
26
  export const Delete: <
27
27
  Path extends Extract<tonightpass.Endpoints, { method: "DELETE" }>["path"],
28
28
  >(
29
- path: Path,
29
+ path: Path
30
30
  ) => MethodDecorator;
31
31
  }
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonightpass/nest",
3
- "version": "0.0.219",
3
+ "version": "0.0.221",
4
4
  "description": "@tonightpass nest sdk.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@
29
29
  "dependencies": {
30
30
  "pathcat": "^1.2.2",
31
31
  "redaxios": "^0.5.1",
32
- "tonightpass": "^0.0.234"
32
+ "tonightpass": "^0.0.236"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "@nestjs/common": ">=8.x.x"