nest-wrapper-kiwoom 1.0.6 → 1.0.8
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 +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/kiwoom.module.js +4 -2
- package/dist/kiwoom.module.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./kiwoom.module"), exports);
|
|
18
18
|
__exportStar(require("./kiwoom.service"), exports);
|
|
19
|
+
__exportStar(require("./services/oauth2.service"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,mDAAiC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,mDAAiC;AACjC,4DAA0C"}
|
package/dist/kiwoom.module.js
CHANGED
|
@@ -18,14 +18,16 @@ var KiwoomModule = (function () {
|
|
|
18
18
|
KiwoomModule.register = function (options) {
|
|
19
19
|
return {
|
|
20
20
|
module: KiwoomModule_1,
|
|
21
|
-
|
|
21
|
+
imports: [axios_1.HttpModule],
|
|
22
|
+
providers: [{ provide: kiwoom_constants_1.KIWOOM_MODULE_OPTIONS, useValue: options }, services_1.Oauth2],
|
|
22
23
|
exports: [services_1.Oauth2],
|
|
23
24
|
};
|
|
24
25
|
};
|
|
25
26
|
KiwoomModule.registerAsync = function (options) {
|
|
26
27
|
return {
|
|
27
28
|
module: KiwoomModule_1,
|
|
28
|
-
|
|
29
|
+
imports: [axios_1.HttpModule],
|
|
30
|
+
providers: [{ provide: kiwoom_constants_1.KIWOOM_MODULE_OPTIONS, useFactory: options.useFactory, inject: options.inject }, services_1.Oauth2],
|
|
29
31
|
exports: [services_1.Oauth2],
|
|
30
32
|
};
|
|
31
33
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kiwoom.module.js","sourceRoot":"","sources":["../src/kiwoom.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,yCAAuD;AAEvD,uDAA2D;AAC3D,uCAA2C;AAC3C,uCAAoC;AAKpC;IAAA;
|
|
1
|
+
{"version":3,"file":"kiwoom.module.js","sourceRoot":"","sources":["../src/kiwoom.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,yCAAuD;AAEvD,uDAA2D;AAC3D,uCAA2C;AAC3C,uCAAoC;AAKpC;IAAA;IAkBA,CAAC;qBAlBY,YAAY;IACjB,qBAAQ,GAAf,UAAgB,OAAsB;QACrC,OAAO;YACN,MAAM,EAAE,cAAY;YACpB,OAAO,EAAE,CAAC,kBAAU,CAAC;YACrB,SAAS,EAAE,CAAC,EAAE,OAAO,EAAE,wCAAqB,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,iBAAM,CAAC;YAC1E,OAAO,EAAE,CAAC,iBAAM,CAAC;SACjB,CAAC;IACH,CAAC;IAEM,0BAAa,GAApB,UAAqB,OAA2B;QAC/C,OAAO;YACN,MAAM,EAAE,cAAY;YACpB,OAAO,EAAE,CAAC,kBAAU,CAAC;YACrB,SAAS,EAAE,CAAC,EAAE,OAAO,EAAE,wCAAqB,EAAE,UAAU,EAAE,OAAO,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,MAAM,EAAE,EAAE,iBAAM,CAAC;YAC/G,OAAO,EAAE,CAAC,iBAAM,CAAC;SACjB,CAAC;IACH,CAAC;;IAjBW,YAAY;QAHxB,IAAA,eAAM,EAAC;YACP,OAAO,EAAE,CAAC,kBAAU,CAAC;SACrB,CAAC;OACW,YAAY,CAkBxB;IAAD,mBAAC;CAAA,AAlBD,IAkBC;AAlBY,oCAAY"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nest-wrapper-kiwoom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"eslint": "^9.39.1",
|
|
25
25
|
"eslint-config-prettier": "^10.1.8",
|
|
26
26
|
"eslint-plugin-prettier": "^5.5.4",
|
|
27
|
-
"prettier": "^3.6.2"
|
|
27
|
+
"prettier": "^3.6.2",
|
|
28
|
+
"rimraf": "^6.1.0"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"@nestjs/axios": "^4.0.1",
|
|
@@ -32,7 +33,7 @@
|
|
|
32
33
|
"axios": "^1.13.2"
|
|
33
34
|
},
|
|
34
35
|
"scripts": {
|
|
35
|
-
"build": "
|
|
36
|
+
"build": "rimraf ./dist && tsc -p tsconfig.lib.json",
|
|
36
37
|
"lint": "eslint .",
|
|
37
38
|
"format": "prettier --write 'src/**/*.ts'",
|
|
38
39
|
"release": "pnpm publish --access public"
|