Skip to content

Commit 75d91bc

Browse files
authored
Merge pull request #230 from samchon/feat/next
Upgrade dependencies
2 parents a8499ab + f1d40be commit 75d91bc

10 files changed

Lines changed: 323 additions & 82 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@samchon/payments",
4-
"version": "9.0.0",
4+
"version": "10.0.0",
55
"description": "Collection of Payment system of Samchon",
66
"scripts": {
77
"package:latest": "node deploy latest",

packages/fake-iamport-server/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fake-iamport-server",
3-
"version": "9.0.0",
3+
"version": "10.0.0",
44
"description": "Fake iamport server for testing",
55
"main": "lib/index.js",
66
"module": "lib/index.mjs",
@@ -38,7 +38,7 @@
3838
},
3939
"homepage": "https://github.com/samchon/fake-iamport-server",
4040
"devDependencies": {
41-
"@nestia/sdk": "^4.0.0",
41+
"@nestia/sdk": "^5.0.0",
4242
"@rollup/plugin-terser": "^0.4.4",
4343
"@rollup/plugin-typescript": "^11.1.6",
4444
"@types/atob": "^2.1.2",
@@ -51,7 +51,7 @@
5151
"chalk": "^4.1.2",
5252
"cli": "^1.0.1",
5353
"copyfiles": "^2.4.1",
54-
"nestia": "^5.1.2",
54+
"nestia": "^7.0.0",
5555
"pm2": "^4.5.6",
5656
"rimraf": "^3.0.2",
5757
"rollup": "^4.18.1",
@@ -61,9 +61,9 @@
6161
"typescript": "5.5.4"
6262
},
6363
"dependencies": {
64-
"@nestia/core": "^4.0.0",
65-
"@nestia/e2e": "^0.7.0",
66-
"@nestia/fetcher": "^4.0.0",
64+
"@nestia/core": "^5.0.0",
65+
"@nestia/e2e": "^0.8.2",
66+
"@nestia/fetcher": "^5.0.0",
6767
"@nestjs/common": "^10.3.10",
6868
"@nestjs/core": "^10.3.10",
6969
"@nestjs/platform-fastify": "^10.3.10",
@@ -73,7 +73,7 @@
7373
"source-map-support": "^0.5.19",
7474
"tstl": "^3.0.0",
7575
"typescript-transform-paths": "^3.4.6",
76-
"typia": "^7.0.0",
76+
"typia": "^8.0.0",
7777
"uuid": "^10.0.0"
7878
},
7979
"keywords": [

packages/fake-iamport-server/packages/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iamport-server-api",
3-
"version": "9.0.0",
3+
"version": "10.0.0",
44
"description": "API for Iamport Server",
55
"main": "lib/index.js",
66
"module": "lib/index.mjs",
@@ -22,8 +22,8 @@
2222
"README.md"
2323
],
2424
"dependencies": {
25-
"@nestia/fetcher": "^4.0.0",
25+
"@nestia/fetcher": "^5.0.0",
2626
"tstl": "^3.0.0",
27-
"typia": "^7.0.0"
27+
"typia": "^8.0.0"
2828
}
2929
}

packages/fake-iamport-server/packages/api/swagger.json

Lines changed: 122 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"info": {
1414
"title": "Iamport API",
1515
"description": "Built by [fake-iamport-server](https://github.com/samchon/payments/tree/master/packages/fake-iamport-server) with [nestia](https://github.com/samchon/nestia)",
16-
"version": "9.0.0",
16+
"version": "10.0.0",
1717
"license": {
1818
"name": "MIT"
1919
}
@@ -51,7 +51,13 @@
5151
{
5252
"bearer": []
5353
}
54-
]
54+
],
55+
"x-samchon-accessor": [
56+
"subscribe",
57+
"customers",
58+
"at"
59+
],
60+
"x-samchon-controller": "FakeIamportSubscribeCustomersController"
5561
},
5662
"post": {
5763
"summary": "간편 결제 카드 등록하기",
@@ -95,7 +101,13 @@
95101
{
96102
"bearer": []
97103
}
98-
]
104+
],
105+
"x-samchon-accessor": [
106+
"subscribe",
107+
"customers",
108+
"create"
109+
],
110+
"x-samchon-controller": "FakeIamportSubscribeCustomersController"
99111
},
100112
"delete": {
101113
"summary": "간편 결제 카드 삭제하기",
@@ -128,7 +140,13 @@
128140
{
129141
"bearer": []
130142
}
131-
]
143+
],
144+
"x-samchon-accessor": [
145+
"subscribe",
146+
"customers",
147+
"erase"
148+
],
149+
"x-samchon-controller": "FakeIamportSubscribeCustomersController"
132150
}
133151
},
134152
"/subscribe/payments/onetime": {
@@ -164,7 +182,13 @@
164182
{
165183
"bearer": []
166184
}
167-
]
185+
],
186+
"x-samchon-accessor": [
187+
"subscribe",
188+
"payments",
189+
"onetime"
190+
],
191+
"x-samchon-controller": "FakeIampotSubscribePaymentsController"
168192
}
169193
},
170194
"/subscribe/payments/again": {
@@ -200,7 +224,13 @@
200224
{
201225
"bearer": []
202226
}
203-
]
227+
],
228+
"x-samchon-accessor": [
229+
"subscribe",
230+
"payments",
231+
"again"
232+
],
233+
"x-samchon-controller": "FakeIampotSubscribePaymentsController"
204234
}
205235
},
206236
"/certifications/{imp_uid}": {
@@ -235,7 +265,12 @@
235265
{
236266
"bearer": []
237267
}
238-
]
268+
],
269+
"x-samchon-accessor": [
270+
"certifications",
271+
"at"
272+
],
273+
"x-samchon-controller": "FakeIamportCertificationsController"
239274
},
240275
"delete": {
241276
"summary": "본인인증 정보 삭제하기",
@@ -268,7 +303,12 @@
268303
{
269304
"bearer": []
270305
}
271-
]
306+
],
307+
"x-samchon-accessor": [
308+
"certifications",
309+
"erase"
310+
],
311+
"x-samchon-controller": "FakeIamportCertificationsController"
272312
}
273313
},
274314
"/certifications/otp/request": {
@@ -304,7 +344,13 @@
304344
{
305345
"bearer": []
306346
}
307-
]
347+
],
348+
"x-samchon-accessor": [
349+
"certifications",
350+
"otp",
351+
"request"
352+
],
353+
"x-samchon-controller": "FakeIamportCertificationsController"
308354
}
309355
},
310356
"/certifications/otp/confirm/{imp_uid}": {
@@ -350,7 +396,13 @@
350396
{
351397
"bearer": []
352398
}
353-
]
399+
],
400+
"x-samchon-accessor": [
401+
"certifications",
402+
"otp",
403+
"confirm"
404+
],
405+
"x-samchon-controller": "FakeIamportCertificationsController"
354406
}
355407
},
356408
"/internal/webhook": {
@@ -377,7 +429,12 @@
377429
"application/json": {}
378430
}
379431
}
380-
}
432+
},
433+
"x-samchon-accessor": [
434+
"internal",
435+
"webhook"
436+
],
437+
"x-samchon-controller": "FakeIamportInternalController"
381438
}
382439
},
383440
"/internal/deposit/{imp_uid}": {
@@ -408,7 +465,12 @@
408465
{
409466
"bearer": []
410467
}
411-
]
468+
],
469+
"x-samchon-accessor": [
470+
"internal",
471+
"deposit"
472+
],
473+
"x-samchon-controller": "FakeIamportInternalController"
412474
}
413475
},
414476
"/payments/{imp_uid}": {
@@ -453,7 +515,12 @@
453515
{
454516
"bearer": []
455517
}
456-
]
518+
],
519+
"x-samchon-accessor": [
520+
"payments",
521+
"at"
522+
],
523+
"x-samchon-controller": "FakeIamportPaymentsController"
457524
}
458525
},
459526
"/payments/cancel": {
@@ -489,7 +556,12 @@
489556
{
490557
"bearer": []
491558
}
492-
]
559+
],
560+
"x-samchon-accessor": [
561+
"payments",
562+
"cancel"
563+
],
564+
"x-samchon-controller": "FakeIamportPaymentsController"
493565
}
494566
},
495567
"/receipts/{imp_uid}": {
@@ -524,7 +596,12 @@
524596
{
525597
"bearer": []
526598
}
527-
]
599+
],
600+
"x-samchon-accessor": [
601+
"receipts",
602+
"at"
603+
],
604+
"x-samchon-controller": "FakeIamportReceiptsController"
528605
},
529606
"post": {
530607
"summary": "현금 영수증 발행하기",
@@ -568,7 +645,12 @@
568645
{
569646
"bearer": []
570647
}
571-
]
648+
],
649+
"x-samchon-accessor": [
650+
"receipts",
651+
"create"
652+
],
653+
"x-samchon-controller": "FakeIamportReceiptsController"
572654
},
573655
"delete": {
574656
"summary": "현금 영수증 취소하기",
@@ -601,7 +683,12 @@
601683
{
602684
"bearer": []
603685
}
604-
]
686+
],
687+
"x-samchon-accessor": [
688+
"receipts",
689+
"erase"
690+
],
691+
"x-samchon-controller": "FakeIamportReceiptsController"
605692
}
606693
},
607694
"/users/getToken": {
@@ -632,7 +719,12 @@
632719
}
633720
}
634721
}
635-
}
722+
},
723+
"x-samchon-accessor": [
724+
"users",
725+
"getToken"
726+
],
727+
"x-samchon-controller": "FakeIamportUsersController"
636728
}
637729
},
638730
"/vbanks": {
@@ -668,7 +760,12 @@
668760
{
669761
"bearer": []
670762
}
671-
]
763+
],
764+
"x-samchon-accessor": [
765+
"vbanks",
766+
"create"
767+
],
768+
"x-samchon-controller": "FakeIamportVbanksController"
672769
},
673770
"put": {
674771
"summary": "가상 계좌 편집하기",
@@ -702,7 +799,12 @@
702799
{
703800
"bearer": []
704801
}
705-
]
802+
],
803+
"x-samchon-accessor": [
804+
"vbanks",
805+
"update"
806+
],
807+
"x-samchon-controller": "FakeIamportVbanksController"
706808
}
707809
}
708810
},

0 commit comments

Comments
 (0)