yegara 1.0.25 → 1.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yegara",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "exports": {
@@ -11,7 +11,7 @@ export type TEntityCrudOptions = {
11
11
 
12
12
  export function TEntityCrudController<T>(
13
13
  options?: TEntityCrudOptions,
14
- ) {
14
+ ): any {
15
15
  @Controller()
16
16
  @UseInterceptors(/* your interceptors if any */)
17
17
  @ApiBearerAuth()
@@ -11,7 +11,7 @@ export type TExtraCrudOptions = {
11
11
 
12
12
  export function TExtraCrudController<T>(
13
13
  options?: TExtraCrudOptions,
14
- ) {
14
+ ): any {
15
15
  @Controller()
16
16
  @UseInterceptors(/* your interceptors if any */)
17
17
  @ApiBearerAuth()
@@ -3,7 +3,7 @@ import { TRelationCrudService } from "../services/relation-crud.service";
3
3
  import { AssignSecondForFirstDTO, AssignFirstForSecondDTO } from "../../dtos/relation-crud.dto";
4
4
  import { ApiBearerAuth } from "@nestjs/swagger";
5
5
 
6
- export function TRelationCrudController<T, U, V>() {
6
+ export function TRelationCrudController<T, U, V>(): any {
7
7
  @Controller()
8
8
  @UseInterceptors(/* your interceptors if any */)
9
9
  @ApiBearerAuth()
package/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './src';
package/index.js DELETED
@@ -1,18 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./src"), exports);
18
- //# sourceMappingURL=index.js.map
package/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAqB"}