@ingestkorea/client-sens 1.5.2 → 1.5.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/.github/pull_request_template.md +6 -1
- package/.prettierignore +3 -0
- package/LICENSE +2 -2
- package/README.md +56 -38
- package/dist-cjs/commands/GetAlimtalkResultCommand.js +4 -7
- package/dist-cjs/commands/GetAlimtalkStatusCommand.js +4 -7
- package/dist-cjs/commands/GetAlimtalkTemplateCommand.js +4 -7
- package/dist-cjs/commands/GetSMSResultCommand.js +4 -6
- package/dist-cjs/commands/GetSMSStatusCommand.js +4 -6
- package/dist-cjs/commands/ListAlimtalkChannelsCommand.js +4 -7
- package/dist-cjs/commands/ListAlimtalkTemplatesCommand.js +4 -7
- package/dist-cjs/commands/SendAlimtalkCommand.js +8 -9
- package/dist-cjs/commands/SendMMSCommand.js +40 -30
- package/dist-cjs/commands/SendSMSCommand.js +19 -18
- package/dist-cjs/commands/constants.js +2 -2
- package/dist-cjs/middleware/metadata-ingestkorea.js +2 -2
- package/dist-cjs/middleware/signer-ncp.js +3 -7
- package/dist-cjs/models/GetAlimtalkResult.js +0 -3
- package/dist-cjs/models/GetAlimtalkStatus.js +0 -3
- package/dist-cjs/models/GetAlimtalkTemplate.js +0 -2
- package/dist-cjs/models/GetSMSResult.js +0 -4
- package/dist-cjs/models/GetSMSStatus.js +0 -3
- package/dist-cjs/models/ListAlimtalkChannels.js +0 -3
- package/dist-cjs/models/ListAlimtalkTemplates.js +0 -5
- package/dist-cjs/models/SendAlimtalk.js +0 -5
- package/dist-cjs/models/SendMMS.js +0 -2
- package/dist-cjs/models/SendSMS.js +0 -2
- package/dist-cjs/models/SensCommand.js +0 -2
- package/dist-cjs/protocols/GetAlimtalkResult.js +7 -6
- package/dist-cjs/protocols/GetAlimtalkStatus.js +8 -7
- package/dist-cjs/protocols/GetAlimtalkTemplate.js +6 -6
- package/dist-cjs/protocols/GetSMSResult.js +11 -9
- package/dist-cjs/protocols/GetSMSStatus.js +9 -7
- package/dist-cjs/protocols/ListAlimtalkChannels.js +7 -7
- package/dist-cjs/protocols/ListAlimtalkTemplates.js +16 -15
- package/dist-cjs/protocols/SendAlimtalk.js +9 -8
- package/dist-cjs/protocols/SendMMS.js +5 -5
- package/dist-cjs/protocols/SendSMS.js +5 -5
- package/dist-cjs/protocols/constants.js +10 -7
- package/dist-es/commands/GetAlimtalkResultCommand.js +8 -11
- package/dist-es/commands/GetAlimtalkStatusCommand.js +8 -11
- package/dist-es/commands/GetAlimtalkTemplateCommand.js +8 -11
- package/dist-es/commands/GetSMSResultCommand.js +8 -10
- package/dist-es/commands/GetSMSStatusCommand.js +8 -10
- package/dist-es/commands/ListAlimtalkChannelsCommand.js +8 -11
- package/dist-es/commands/ListAlimtalkTemplatesCommand.js +8 -11
- package/dist-es/commands/SendAlimtalkCommand.js +13 -14
- package/dist-es/commands/SendMMSCommand.js +48 -38
- package/dist-es/commands/SendSMSCommand.js +23 -22
- package/dist-es/commands/constants.js +2 -2
- package/dist-es/commands/index.js +10 -10
- package/dist-es/middleware/index.js +2 -2
- package/dist-es/middleware/metadata-ingestkorea.js +3 -3
- package/dist-es/middleware/signer-ncp.js +7 -11
- package/dist-es/models/GetAlimtalkResult.js +0 -3
- package/dist-es/models/GetAlimtalkStatus.js +0 -3
- package/dist-es/models/GetAlimtalkTemplate.js +0 -2
- package/dist-es/models/GetSMSResult.js +0 -4
- package/dist-es/models/GetSMSStatus.js +0 -3
- package/dist-es/models/ListAlimtalkChannels.js +0 -3
- package/dist-es/models/ListAlimtalkTemplates.js +0 -5
- package/dist-es/models/SendAlimtalk.js +0 -5
- package/dist-es/models/SendMMS.js +0 -2
- package/dist-es/models/SendSMS.js +0 -2
- package/dist-es/models/SensCommand.js +0 -2
- package/dist-es/models/index.js +11 -11
- package/dist-es/protocols/GetAlimtalkResult.js +10 -9
- package/dist-es/protocols/GetAlimtalkStatus.js +11 -10
- package/dist-es/protocols/GetAlimtalkTemplate.js +10 -10
- package/dist-es/protocols/GetSMSResult.js +14 -12
- package/dist-es/protocols/GetSMSStatus.js +12 -10
- package/dist-es/protocols/ListAlimtalkChannels.js +10 -10
- package/dist-es/protocols/ListAlimtalkTemplates.js +19 -18
- package/dist-es/protocols/SendAlimtalk.js +12 -11
- package/dist-es/protocols/SendMMS.js +8 -8
- package/dist-es/protocols/SendSMS.js +9 -9
- package/dist-es/protocols/constants.js +12 -9
- package/dist-es/protocols/index.js +10 -10
- package/dist-types/commands/GetAlimtalkResultCommand.d.ts +3 -3
- package/dist-types/commands/GetAlimtalkStatusCommand.d.ts +3 -3
- package/dist-types/commands/GetAlimtalkTemplateCommand.d.ts +3 -3
- package/dist-types/commands/GetSMSResultCommand.d.ts +3 -3
- package/dist-types/commands/GetSMSStatusCommand.d.ts +3 -3
- package/dist-types/commands/ListAlimtalkChannelsCommand.d.ts +3 -3
- package/dist-types/commands/ListAlimtalkTemplatesCommand.d.ts +3 -3
- package/dist-types/commands/SendAlimtalkCommand.d.ts +3 -3
- package/dist-types/commands/SendMMSCommand.d.ts +3 -3
- package/dist-types/commands/SendSMSCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +10 -10
- package/dist-types/middleware/index.d.ts +2 -2
- package/dist-types/middleware/metadata-ingestkorea.d.ts +2 -2
- package/dist-types/middleware/signer-ncp.d.ts +2 -2
- package/dist-types/models/GetAlimtalkResult.d.ts +1 -1
- package/dist-types/models/GetAlimtalkStatus.d.ts +1 -1
- package/dist-types/models/GetAlimtalkTemplate.d.ts +1 -1
- package/dist-types/models/SendMMS.d.ts +1 -1
- package/dist-types/models/SendSMS.d.ts +3 -3
- package/dist-types/models/SensCommand.d.ts +1 -1
- package/dist-types/models/index.d.ts +11 -11
- package/dist-types/protocols/GetAlimtalkResult.d.ts +4 -4
- package/dist-types/protocols/GetAlimtalkStatus.d.ts +4 -4
- package/dist-types/protocols/GetAlimtalkTemplate.d.ts +4 -4
- package/dist-types/protocols/GetSMSResult.d.ts +4 -4
- package/dist-types/protocols/GetSMSStatus.d.ts +4 -4
- package/dist-types/protocols/ListAlimtalkChannels.d.ts +4 -4
- package/dist-types/protocols/ListAlimtalkTemplates.d.ts +4 -4
- package/dist-types/protocols/SendAlimtalk.d.ts +4 -4
- package/dist-types/protocols/SendMMS.d.ts +4 -4
- package/dist-types/protocols/SendSMS.d.ts +4 -4
- package/dist-types/protocols/constants.d.ts +1 -1
- package/dist-types/protocols/index.d.ts +10 -10
- package/package.json +4 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
1
|
+
export * from "./SensCommand";
|
|
2
|
+
export * from "./SendAlimtalk";
|
|
3
|
+
export * from "./GetAlimtalkStatus";
|
|
4
|
+
export * from "./GetAlimtalkResult";
|
|
5
|
+
export * from "./GetAlimtalkTemplate";
|
|
6
|
+
export * from "./ListAlimtalkTemplates";
|
|
7
|
+
export * from "./ListAlimtalkChannels";
|
|
8
|
+
export * from "./SendSMS";
|
|
9
|
+
export * from "./SendMMS";
|
|
10
|
+
export * from "./GetSMSStatus";
|
|
11
|
+
export * from "./GetSMSResult";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { GetAlimtalkResultOutput, Failover } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { GetAlimtalkResultCommandInput, GetAlimtalkResultCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { GetAlimtalkResultOutput, Failover } from "../models/GetAlimtalkResult";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { GetAlimtalkResultCommandInput, GetAlimtalkResultCommandOutput } from "../commands/GetAlimtalkResultCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_GetAlimtalkResultCommand: (input: GetAlimtalkResultCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_GetAlimtalkResultCommand: (output: HttpResponse) => Promise<GetAlimtalkResultCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_GetAlimtalkResultOutput: (output: any) => Promise<GetAlimtalkResultOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { GetAlimtalkStatusOutput, StatusMessage } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { GetAlimtalkStatusCommandInput, GetAlimtalkStatusCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { GetAlimtalkStatusOutput, StatusMessage } from "../models/GetAlimtalkStatus";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { GetAlimtalkStatusCommandInput, GetAlimtalkStatusCommandOutput } from "../commands/GetAlimtalkStatusCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_GetAlimtalkStatusCommand: (input: GetAlimtalkStatusCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_GetAlimtalkStatusCommand: (output: HttpResponse) => Promise<GetAlimtalkStatusCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_GetAlimtalkStatusOutput: (output: any) => Promise<GetAlimtalkStatusOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { GetAlimtalkTemplateOutput } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { GetAlimtalkTemplateCommandInput, GetAlimtalkTemplateCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { GetAlimtalkTemplateOutput } from "../models/GetAlimtalkTemplate";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { GetAlimtalkTemplateCommandInput, GetAlimtalkTemplateCommandOutput } from "../commands/GetAlimtalkTemplateCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_GetAlimtalkTemplateCommand: (input: GetAlimtalkTemplateCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_GetAlimtalkTemplateCommand: (output: HttpResponse) => Promise<GetAlimtalkTemplateCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_GetAlimtalkTemplateOutput: (output: any) => Promise<GetAlimtalkTemplateOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { GetSMSResultOutput, SMSResultMessage, File } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { GetSMSResultCommandInput, GetSMSResultCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { GetSMSResultOutput, SMSResultMessage, File } from "../models/GetSMSResult";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { GetSMSResultCommandInput, GetSMSResultCommandOutput } from "../commands/GetSMSResultCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_GetSMSResultCommand: (input: GetSMSResultCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_GetSMSResultCommand: (output: HttpResponse) => Promise<GetSMSResultCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_GetSMSResultOutput: (output: any) => Promise<GetSMSResultOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { GetSMSStatusOutput, SMSStatusMessage } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { GetSMSStatusCommandInput, GetSMSStatusCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { GetSMSStatusOutput, SMSStatusMessage } from "../models/GetSMSStatus";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { GetSMSStatusCommandInput, GetSMSStatusCommandOutput } from "../commands/GetSMSStatusCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_GetSMSStatusCommand: (input: GetSMSStatusCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_GetSMSStatusCommand: (output: HttpResponse) => Promise<GetSMSStatusCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_GetSMSStatusOutput: (output: any) => Promise<GetSMSStatusOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { ListAlimtalkChannelsOutput, Channel } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { ListAlimtalkChannelsCommandInput, ListAlimtalkChannelsCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { ListAlimtalkChannelsOutput, Channel } from "../models/ListAlimtalkChannels";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { ListAlimtalkChannelsCommandInput, ListAlimtalkChannelsCommandOutput } from "../commands/ListAlimtalkChannelsCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_ListAlimtalkChannelsCommand: (input: ListAlimtalkChannelsCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_ListAlimtalkChannelsCommand: (output: HttpResponse) => Promise<ListAlimtalkChannelsCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_ListAlimtalkChannelsOutput: (outputs: any[]) => Promise<ListAlimtalkChannelsOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { ListAlimtalkTemplatesOutput, Template, Comment, Button } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { ListAlimtalkTemplatesCommandInput, ListAlimtalkTemplatesCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { ListAlimtalkTemplatesOutput, Template, Comment, Button } from "../models/ListAlimtalkTemplates";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { ListAlimtalkTemplatesCommandInput, ListAlimtalkTemplatesCommandOutput } from "../commands/ListAlimtalkTemplatesCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_ListAlimtalkTemplatesCommand: (input: ListAlimtalkTemplatesCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_ListAlimtalkTemplatesCommand: (output: HttpResponse) => Promise<ListAlimtalkTemplatesCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_ListAlimtalkTemplatesOutput: (output: any) => Promise<ListAlimtalkTemplatesOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { SendAlimtalkOutput, ReceivedMessage } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { SendAlimtalkCommandInput, SendAlimtalkCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { SendAlimtalkOutput, ReceivedMessage } from "../models/SendAlimtalk";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { SendAlimtalkCommandInput, SendAlimtalkCommandOutput } from "../commands/SendAlimtalkCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_SendAlimtalkCommand: (input: SendAlimtalkCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_SendAlimtalkCommand: (output: HttpResponse) => Promise<SendAlimtalkCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_SendMessageOutput: (output: any) => Promise<SendAlimtalkOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { SendMMSOutput } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { SendMMSCommandInput, SendMMSCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { SendMMSOutput } from "../models/SendMMS";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { SendMMSCommandInput, SendMMSCommandOutput } from "../commands/SendMMSCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_SendMMSCommand: (input: SendMMSCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_SendMMSCommand: (output: HttpResponse) => Promise<SendMMSCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_SendMMSOutput: (output: any) => Promise<SendMMSOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { HttpRequest, HttpResponse } from
|
|
2
|
-
import { SendSMSOutput } from
|
|
3
|
-
import { SensClientResolvedConfig } from
|
|
4
|
-
import { SendSMSCommandInput, SendSMSCommandOutput } from
|
|
1
|
+
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { SendSMSOutput } from "../models/SendSMS";
|
|
3
|
+
import { SensClientResolvedConfig } from "../SensClient";
|
|
4
|
+
import { SendSMSCommandInput, SendSMSCommandOutput } from "../commands/SendSMSCommand";
|
|
5
5
|
export declare const serializeIngestkorea_restJson_SendSMSCommand: (input: SendSMSCommandInput, config: SensClientResolvedConfig) => Promise<HttpRequest>;
|
|
6
6
|
export declare const deserializeIngestkorea_restJson_SendSMSCommand: (output: HttpResponse) => Promise<SendSMSCommandOutput>;
|
|
7
7
|
export declare const deserializeIngestkorea_restJson_SendSMSOutput: (output: any) => Promise<SendSMSOutput>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { HttpResponse } from
|
|
1
|
+
import { HttpResponse } from "@ingestkorea/util-http-handler";
|
|
2
2
|
export declare const parseBody: (output: HttpResponse) => Promise<any>;
|
|
3
3
|
export declare const parseErrorBody: (output: HttpResponse) => Promise<void>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
1
|
+
export * from "./SendAlimtalk";
|
|
2
|
+
export * from "./GetAlimtalkStatus";
|
|
3
|
+
export * from "./GetAlimtalkResult";
|
|
4
|
+
export * from "./GetAlimtalkTemplate";
|
|
5
|
+
export * from "./ListAlimtalkTemplates";
|
|
6
|
+
export * from "./ListAlimtalkChannels";
|
|
7
|
+
export * from "./SendSMS";
|
|
8
|
+
export * from "./SendMMS";
|
|
9
|
+
export * from "./GetSMSStatus";
|
|
10
|
+
export * from "./GetSMSResult";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ingestkorea/client-sens",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://github.com/ingestkorea/client-sens#readme",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@types/node": "^18.11.0"
|
|
26
|
+
"@types/node": "^18.11.0",
|
|
27
|
+
"typescript": "^5.5.3"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"@ingestkorea/util-error-handler": "^1.0.3",
|
|
@@ -36,4 +37,4 @@
|
|
|
36
37
|
"push",
|
|
37
38
|
"ncp"
|
|
38
39
|
]
|
|
39
|
-
}
|
|
40
|
+
}
|