@zola_do/nestjs-shared 0.1.9
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.ts +13 -0
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -0
- package/package.json +42 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from '@zola_do/core';
|
|
2
|
+
export * from '@zola_do/collection-query';
|
|
3
|
+
export * from '@zola_do/typeorm';
|
|
4
|
+
export * from '@zola_do/interceptors';
|
|
5
|
+
export * from '@zola_do/authorization';
|
|
6
|
+
export * from '@zola_do/crud';
|
|
7
|
+
export * from '@zola_do/audit';
|
|
8
|
+
export * from '@zola_do/email';
|
|
9
|
+
export * from '@zola_do/minio';
|
|
10
|
+
export * from '@zola_do/seaweed';
|
|
11
|
+
export * from '@zola_do/docx';
|
|
12
|
+
export * from '@zola_do/document-manipulator';
|
|
13
|
+
export * from '@zola_do/workflow-engine';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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("@zola_do/core"), exports);
|
|
18
|
+
__exportStar(require("@zola_do/collection-query"), exports);
|
|
19
|
+
__exportStar(require("@zola_do/typeorm"), exports);
|
|
20
|
+
__exportStar(require("@zola_do/interceptors"), exports);
|
|
21
|
+
__exportStar(require("@zola_do/authorization"), exports);
|
|
22
|
+
__exportStar(require("@zola_do/crud"), exports);
|
|
23
|
+
__exportStar(require("@zola_do/audit"), exports);
|
|
24
|
+
__exportStar(require("@zola_do/email"), exports);
|
|
25
|
+
__exportStar(require("@zola_do/minio"), exports);
|
|
26
|
+
__exportStar(require("@zola_do/seaweed"), exports);
|
|
27
|
+
__exportStar(require("@zola_do/docx"), exports);
|
|
28
|
+
__exportStar(require("@zola_do/document-manipulator"), exports);
|
|
29
|
+
__exportStar(require("@zola_do/workflow-engine"), exports);
|
|
30
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,4DAA0C;AAC1C,mDAAiC;AACjC,wDAAsC;AACtC,yDAAuC;AACvC,gDAA8B;AAC9B,iDAA+B;AAC/B,iDAA+B;AAC/B,iDAA+B;AAC/B,mDAAiC;AACjC,gDAA8B;AAC9B,gEAA8C;AAC9C,2DAAyC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zola_do/nestjs-shared",
|
|
3
|
+
"version": "0.1.9",
|
|
4
|
+
"description": "Shared package for NestJS applications - re-exports all @zola_do packages",
|
|
5
|
+
"author": "zolaDO",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": ["dist", "README.md"],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rimraf dist && tsc",
|
|
21
|
+
"prepublishOnly": "npm run build"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@zola_do/core": "file:../core",
|
|
25
|
+
"@zola_do/collection-query": "file:../collection-query",
|
|
26
|
+
"@zola_do/typeorm": "file:../typeorm",
|
|
27
|
+
"@zola_do/interceptors": "file:../interceptors",
|
|
28
|
+
"@zola_do/authorization": "file:../authorization",
|
|
29
|
+
"@zola_do/crud": "file:../crud",
|
|
30
|
+
"@zola_do/audit": "file:../audit",
|
|
31
|
+
"@zola_do/email": "file:../email",
|
|
32
|
+
"@zola_do/minio": "file:../minio",
|
|
33
|
+
"@zola_do/seaweed": "file:../seaweed",
|
|
34
|
+
"@zola_do/docx": "file:../docx",
|
|
35
|
+
"@zola_do/document-manipulator": "file:../document-manipulator",
|
|
36
|
+
"@zola_do/workflow-engine": "file:../workflow-engine"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"rimraf": "^6.1.0",
|
|
40
|
+
"typescript": "^5.9.3"
|
|
41
|
+
}
|
|
42
|
+
}
|