@lyrolab/nest-shared 1.0.1 → 1.0.3
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/.releaserc.json +1 -2
- package/CHANGELOG.md +7 -0
- package/dist/ai/index.d.ts +1 -1
- package/dist/ai/index.js +1 -1
- package/dist/ai/index.js.map +1 -1
- package/dist/ai/shared-ai.module.d.ts +2 -0
- package/dist/ai/{ai.module.js → shared-ai.module.js} +6 -6
- package/dist/ai/shared-ai.module.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -1
- package/commitlint.config.ts +0 -4
- package/dist/ai/ai.module.d.ts +0 -2
- package/dist/ai/ai.module.js.map +0 -1
package/.releaserc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.0.3](https://github.com/lyrolab/nest-shared/compare/v1.0.2...v1.0.3) (2025-04-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* rename ai module ([cadae82](https://github.com/lyrolab/nest-shared/commit/cadae824be5a5e6b4fb34eda5a513ef4625e3974))
|
|
7
|
+
|
|
1
8
|
## [1.0.1](https://github.com/lyrolab/nest-shared/compare/v1.0.0...v1.0.1) (2025-04-10)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
package/dist/ai/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./ai.module";
|
|
1
|
+
export * from "./shared-ai.module";
|
|
2
2
|
export * from "./services/ai.service";
|
package/dist/ai/index.js
CHANGED
|
@@ -14,6 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./ai.module"), exports);
|
|
17
|
+
__exportStar(require("./shared-ai.module"), exports);
|
|
18
18
|
__exportStar(require("./services/ai.service"), exports);
|
|
19
19
|
//# sourceMappingURL=index.js.map
|
package/dist/ai/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/ai/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/ai/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,wDAAqC"}
|
|
@@ -6,16 +6,16 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.
|
|
9
|
+
exports.SharedAiModule = void 0;
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
11
|
const ai_service_1 = require("./services/ai.service");
|
|
12
|
-
let
|
|
12
|
+
let SharedAiModule = class SharedAiModule {
|
|
13
13
|
};
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
14
|
+
exports.SharedAiModule = SharedAiModule;
|
|
15
|
+
exports.SharedAiModule = SharedAiModule = __decorate([
|
|
16
16
|
(0, common_1.Module)({
|
|
17
17
|
providers: [ai_service_1.AiService],
|
|
18
18
|
exports: [ai_service_1.AiService],
|
|
19
19
|
})
|
|
20
|
-
],
|
|
21
|
-
//# sourceMappingURL=ai.module.js.map
|
|
20
|
+
], SharedAiModule);
|
|
21
|
+
//# sourceMappingURL=shared-ai.module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-ai.module.js","sourceRoot":"","sources":["../../src/ai/shared-ai.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAuC;AACvC,sDAAiD;AAM1C,IAAM,cAAc,GAApB,MAAM,cAAc;CAAG,CAAA;AAAjB,wCAAc;yBAAd,cAAc;IAJ1B,IAAA,eAAM,EAAC;QACN,SAAS,EAAE,CAAC,sBAAS,CAAC;QACtB,OAAO,EAAE,CAAC,sBAAS,CAAC;KACrB,CAAC;GACW,cAAc,CAAG"}
|