@ingestkorea/client-sens 1.10.0 → 1.11.0
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/README.md +98 -57
- package/dist-cjs/SensClient.js +31 -35
- package/dist-cjs/commands/GetAlimtalkResultCommand.js +3 -0
- package/dist-cjs/commands/GetAlimtalkStatusCommand.js +8 -1
- package/dist-cjs/commands/GetAlimtalkTemplateCommand.js +3 -0
- package/dist-cjs/commands/GetSMSResultCommand.js +3 -0
- package/dist-cjs/commands/GetSMSStatusCommand.js +8 -1
- package/dist-cjs/commands/ListAlimtalkChannelsCommand.js +3 -0
- package/dist-cjs/commands/ListAlimtalkStatusCommand.js +17 -3
- package/dist-cjs/commands/ListAlimtalkTemplatesCommand.js +3 -0
- package/dist-cjs/commands/ListSMSStatusCommand.js +16 -3
- package/dist-cjs/commands/SendAlimtalkCommand.js +9 -1
- package/dist-cjs/commands/SendMMSCommand.js +7 -4
- package/dist-cjs/commands/SendSMSCommand.js +23 -9
- package/dist-cjs/commands/constants.js +2 -2
- package/dist-cjs/index.js +1 -1
- package/dist-cjs/middleware/constants.js +2 -1
- package/dist-cjs/middleware/middleware-metadata.js +7 -12
- package/dist-cjs/middleware/middleware-retry.js +37 -20
- package/dist-cjs/middleware/middleware-sign.js +8 -12
- package/dist-cjs/models/{SensErrorInfo.js → SensApiError.js} +1 -11
- package/dist-cjs/models/{SensError.js → SensClientError.js} +4 -0
- package/dist-cjs/models/SensCommand.js +1 -0
- package/dist-cjs/models/index.js +2 -2
- package/dist-cjs/protocols/GetAlimtalkResult.js +14 -17
- package/dist-cjs/protocols/GetAlimtalkStatus.js +21 -17
- package/dist-cjs/protocols/GetAlimtalkTemplate.js +29 -17
- package/dist-cjs/protocols/GetSMSResult.js +16 -17
- package/dist-cjs/protocols/GetSMSStatus.js +10 -16
- package/dist-cjs/protocols/ListAlimtalkChannels.js +10 -16
- package/dist-cjs/protocols/ListAlimtalkStatus.js +10 -16
- package/dist-cjs/protocols/ListAlimtalkTemplates.js +12 -19
- package/dist-cjs/protocols/ListSMSStatus.js +10 -16
- package/dist-cjs/protocols/SendAlimtalk.js +10 -16
- package/dist-cjs/protocols/SendMMS.js +4 -13
- package/dist-cjs/protocols/SendSMS.js +11 -17
- package/dist-cjs/protocols/constants.js +91 -75
- package/dist-es/SensClient.js +25 -22
- package/dist-es/commands/GetAlimtalkResultCommand.js +8 -9
- package/dist-es/commands/GetAlimtalkStatusCommand.js +8 -9
- package/dist-es/commands/GetAlimtalkTemplateCommand.js +8 -9
- package/dist-es/commands/GetSMSResultCommand.js +8 -9
- package/dist-es/commands/GetSMSStatusCommand.js +8 -9
- package/dist-es/commands/ListAlimtalkChannelsCommand.js +8 -9
- package/dist-es/commands/ListAlimtalkStatusCommand.js +19 -21
- package/dist-es/commands/ListAlimtalkTemplatesCommand.js +8 -9
- package/dist-es/commands/ListSMSStatusCommand.js +20 -22
- package/dist-es/commands/SendAlimtalkCommand.js +12 -13
- package/dist-es/commands/SendMMSCommand.js +28 -29
- package/dist-es/commands/SendSMSCommand.js +20 -22
- package/dist-es/commands/constants.js +12 -22
- package/dist-es/commands/index.js +12 -28
- package/dist-es/index.js +3 -19
- package/dist-es/middleware/constants.js +8 -10
- package/dist-es/middleware/index.js +3 -19
- package/dist-es/middleware/middleware-metadata.js +4 -7
- package/dist-es/middleware/middleware-retry.js +39 -19
- package/dist-es/middleware/middleware-sign.js +9 -13
- package/dist-es/models/GetAlimtalkResult.js +1 -2
- package/dist-es/models/GetAlimtalkStatus.js +1 -2
- package/dist-es/models/GetAlimtalkTemplate.js +1 -2
- package/dist-es/models/GetSMSResult.js +1 -2
- package/dist-es/models/GetSMSStatus.js +1 -2
- package/dist-es/models/ListAlimtalkChannels.js +1 -2
- package/dist-es/models/ListAlimtalkStatus.js +1 -2
- package/dist-es/models/ListAlimtalkTemplates.js +1 -2
- package/dist-es/models/ListSMSStatus.js +1 -2
- package/dist-es/models/MetadataBearer.js +1 -2
- package/dist-es/models/SendAlimtalk.js +2 -5
- package/dist-es/models/SendMMS.js +2 -5
- package/dist-es/models/SendSMS.js +1 -2
- package/dist-es/models/SensApiError.js +18 -0
- package/dist-es/models/SensClient.js +1 -2
- package/dist-es/models/{SensError.js → SensClientError.js} +5 -5
- package/dist-es/models/SensCommand.js +2 -5
- package/dist-es/models/SensMiddleware.js +1 -2
- package/dist-es/models/index.js +18 -34
- package/dist-es/protocols/GetAlimtalkResult.js +11 -16
- package/dist-es/protocols/GetAlimtalkStatus.js +17 -24
- package/dist-es/protocols/GetAlimtalkTemplate.js +12 -17
- package/dist-es/protocols/GetSMSResult.js +11 -16
- package/dist-es/protocols/GetSMSStatus.js +15 -22
- package/dist-es/protocols/ListAlimtalkChannels.js +11 -16
- package/dist-es/protocols/ListAlimtalkStatus.js +11 -16
- package/dist-es/protocols/ListAlimtalkTemplates.js +15 -22
- package/dist-es/protocols/ListSMSStatus.js +11 -16
- package/dist-es/protocols/SendAlimtalk.js +12 -18
- package/dist-es/protocols/SendMMS.js +5 -10
- package/dist-es/protocols/SendSMS.js +12 -18
- package/dist-es/protocols/constants.js +96 -84
- package/dist-types/SensClient.d.ts +0 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/middleware/constants.d.ts +1 -0
- package/dist-types/models/MetadataBearer.d.ts +1 -0
- package/dist-types/models/{SensErrorInfo.d.ts → SensApiError.d.ts} +0 -2
- package/dist-types/models/SensClient.d.ts +8 -0
- package/dist-types/models/{SensError.d.ts → SensClientError.d.ts} +3 -2
- package/dist-types/models/index.d.ts +2 -2
- package/package.json +4 -4
- package/dist-es/models/SensErrorInfo.js +0 -31
|
@@ -1,93 +1,102 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { collectBodyString, destroyStream } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { SensError, SENS_ERROR_CODE_SPEC, NCLOUD_ERROR_CODE_SPEC, } from "../models/index.js";
|
|
3
|
+
import { INGESTKOREA_RETRY, INGESTKOREA_RETRY_DELAY, NCP_TRACE_ID } from "../middleware/constants.js";
|
|
4
|
+
const ALLOWED_CONTENT_TYPES = ["application/json"];
|
|
5
|
+
const SENS_ERROR_BODY_SPEC = [
|
|
6
|
+
["status", "number", true],
|
|
7
|
+
["errorMessage", "string", false],
|
|
8
|
+
["errors", "object", false],
|
|
9
|
+
];
|
|
10
|
+
const NCLOUD_ERROR_BODY_SPEC = [
|
|
11
|
+
["errorCode", "string", true],
|
|
12
|
+
["message", "string", false],
|
|
13
|
+
["details", "string", false],
|
|
14
|
+
];
|
|
15
|
+
export const deserializeMetadata = (response) => {
|
|
16
|
+
const attempts = response.headers[INGESTKOREA_RETRY] || "1";
|
|
17
|
+
const totalRetryDelay = response.headers[INGESTKOREA_RETRY_DELAY] || "0";
|
|
18
|
+
const traceId = response.headers[NCP_TRACE_ID] || undefined;
|
|
10
19
|
return {
|
|
11
20
|
httpStatusCode: response.statusCode,
|
|
12
21
|
attempts: Number(attempts),
|
|
13
22
|
totalRetryDelay: Number(totalRetryDelay),
|
|
23
|
+
...(traceId && { traceId }),
|
|
14
24
|
};
|
|
15
25
|
};
|
|
16
|
-
|
|
17
|
-
const parseBody = async (output) => {
|
|
26
|
+
export const parseBody = async (output) => {
|
|
18
27
|
const { statusCode, headers, body: streamBody } = output;
|
|
19
|
-
if (!
|
|
20
|
-
await
|
|
21
|
-
throw new
|
|
22
|
-
code:
|
|
28
|
+
if (!isSupportContentType(ALLOWED_CONTENT_TYPES, headers["content-type"])) {
|
|
29
|
+
await destroyStream(streamBody);
|
|
30
|
+
throw new SensError({
|
|
31
|
+
code: statusCode,
|
|
23
32
|
type: "SDK.REQUEST_ERROR",
|
|
24
|
-
message:
|
|
33
|
+
message: `response content-type is not ${ALLOWED_CONTENT_TYPES.join(" or ")}`,
|
|
25
34
|
});
|
|
26
35
|
}
|
|
27
36
|
try {
|
|
28
|
-
const data = await
|
|
37
|
+
const data = await collectBodyString(streamBody);
|
|
29
38
|
return data.length ? JSON.parse(data) : {};
|
|
30
39
|
}
|
|
31
40
|
catch (e) {
|
|
32
|
-
throw new
|
|
41
|
+
throw new SensError({
|
|
33
42
|
code: -1,
|
|
34
43
|
type: "SDK.REQUEST_ERROR",
|
|
35
|
-
message:
|
|
44
|
+
message: "parse response body error",
|
|
36
45
|
});
|
|
37
46
|
}
|
|
38
47
|
};
|
|
39
|
-
|
|
40
|
-
const parseErrorBody = async (output) => {
|
|
48
|
+
export const parseErrorBody = async (output) => {
|
|
41
49
|
const { statusCode, headers, body: streamBody } = output;
|
|
42
|
-
if (!
|
|
43
|
-
await
|
|
44
|
-
throw new
|
|
50
|
+
if (!isSupportContentType(ALLOWED_CONTENT_TYPES, headers["content-type"])) {
|
|
51
|
+
await destroyStream(streamBody);
|
|
52
|
+
throw new SensError({
|
|
45
53
|
code: -1,
|
|
46
54
|
type: "SDK.REQUEST_ERROR",
|
|
47
|
-
message:
|
|
55
|
+
message: `response content-type is not ${ALLOWED_CONTENT_TYPES.join(" or ")}`,
|
|
48
56
|
});
|
|
49
57
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
58
|
+
try {
|
|
59
|
+
const data = await collectBodyString(streamBody);
|
|
60
|
+
const sensContent = isSensErrorResponse(data);
|
|
61
|
+
const nCloudContent = isNCloudErrorResponse(data);
|
|
62
|
+
if (sensContent) {
|
|
63
|
+
throw handleSensError(sensContent, statusCode);
|
|
64
|
+
}
|
|
65
|
+
if (nCloudContent) {
|
|
66
|
+
throw handleNCloudError(nCloudContent, statusCode);
|
|
67
|
+
}
|
|
68
|
+
const summary = data ? data.slice(0, 100).trim() : "empty response";
|
|
69
|
+
throw new SensError({
|
|
70
|
+
code: -1,
|
|
71
|
+
type: "SDK.UNKNOWN_ERROR",
|
|
72
|
+
message: "Invalid Naver Cloud Platform response format",
|
|
73
|
+
errors: [`HTTP ${statusCode} - ${summary}...`],
|
|
65
74
|
});
|
|
66
75
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
? index_js_1.NCLOUD_ERROR_CODE_SPEC[errorCode].type
|
|
71
|
-
: "SDK.UNKNOWN_ERROR";
|
|
72
|
-
throw new index_js_1.SensError({
|
|
73
|
-
code: isNCloudErrorCode(errorCode) ? index_js_1.NCLOUD_ERROR_CODE_SPEC[errorCode].status : statusCode,
|
|
74
|
-
type: errorType,
|
|
75
|
-
message: nCloudErrorBody.error.details || "Something wrong",
|
|
76
|
-
});
|
|
76
|
+
catch (e) {
|
|
77
|
+
await destroyStream(streamBody);
|
|
78
|
+
throw e;
|
|
77
79
|
}
|
|
78
|
-
throw new index_js_1.SensError({
|
|
79
|
-
code: -1,
|
|
80
|
-
type: "SDK.UNKNOWN_ERROR",
|
|
81
|
-
message: "Invalid Naver Cloud Platform response format",
|
|
82
|
-
errors: [`${statusCode} - ${data.slice(0, 120)}...`],
|
|
83
|
-
});
|
|
84
80
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
81
|
+
export const compact = (obj) => {
|
|
82
|
+
if (Array.isArray(obj)) {
|
|
83
|
+
return obj.map((item) => compact(item));
|
|
84
|
+
}
|
|
85
|
+
if (typeof obj === "object" && obj !== null) {
|
|
86
|
+
return Object.fromEntries(Object.entries(obj)
|
|
87
|
+
.filter(([_, value]) => value !== undefined) // undefined 필드 제거
|
|
88
|
+
.map(([key, value]) => [key, compact(value)]) // 내부 값 재귀 처리
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
return obj;
|
|
88
92
|
};
|
|
89
|
-
const
|
|
90
|
-
|
|
93
|
+
export const convertToUtc = (input) => {
|
|
94
|
+
const utcRegex = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?Z$/;
|
|
95
|
+
return utcRegex.test(input) ? input : new Date(input.replace(" ", "T") + "+09:00").toISOString();
|
|
96
|
+
};
|
|
97
|
+
const isSupportContentType = (allowedTypes, contentType) => {
|
|
98
|
+
const matchedType = allowedTypes.find((type) => contentType?.toLowerCase().includes(type));
|
|
99
|
+
return !!matchedType;
|
|
91
100
|
};
|
|
92
101
|
const isSensErrorResponse = (input) => {
|
|
93
102
|
if (typeof input !== "string")
|
|
@@ -96,7 +105,7 @@ const isSensErrorResponse = (input) => {
|
|
|
96
105
|
const data = JSON.parse(input);
|
|
97
106
|
if (!data || typeof data !== "object")
|
|
98
107
|
return null;
|
|
99
|
-
const isValid =
|
|
108
|
+
const isValid = SENS_ERROR_BODY_SPEC.every(([key, type, required]) => {
|
|
100
109
|
const value = data[key];
|
|
101
110
|
if (required && (value === undefined || value === null))
|
|
102
111
|
return false;
|
|
@@ -106,7 +115,7 @@ const isSensErrorResponse = (input) => {
|
|
|
106
115
|
});
|
|
107
116
|
return isValid ? data : null;
|
|
108
117
|
}
|
|
109
|
-
catch
|
|
118
|
+
catch {
|
|
110
119
|
return null;
|
|
111
120
|
}
|
|
112
121
|
};
|
|
@@ -117,7 +126,7 @@ const isNCloudErrorResponse = (input) => {
|
|
|
117
126
|
const data = JSON.parse(input);
|
|
118
127
|
if (!(data && typeof data == "object" && typeof data.error == "object"))
|
|
119
128
|
return null;
|
|
120
|
-
const isValid =
|
|
129
|
+
const isValid = NCLOUD_ERROR_BODY_SPEC.every(([key, type, required]) => {
|
|
121
130
|
const value = data.error[key];
|
|
122
131
|
if (required && (value === undefined || value === null))
|
|
123
132
|
return false;
|
|
@@ -127,29 +136,32 @@ const isNCloudErrorResponse = (input) => {
|
|
|
127
136
|
});
|
|
128
137
|
return isValid ? data : null;
|
|
129
138
|
}
|
|
130
|
-
catch
|
|
139
|
+
catch {
|
|
131
140
|
return null;
|
|
132
141
|
}
|
|
133
142
|
};
|
|
134
|
-
const
|
|
135
|
-
|
|
136
|
-
return obj.map((item) => (0, exports.compact)(item));
|
|
137
|
-
}
|
|
138
|
-
if (typeof obj === "object" && obj !== null) {
|
|
139
|
-
return Object.fromEntries(Object.entries(obj)
|
|
140
|
-
.filter(([_, value]) => value !== undefined) // undefined 필드 제거
|
|
141
|
-
.map(([key, value]) => [key, (0, exports.compact)(value)]) // 내부 값 재귀 처리
|
|
142
|
-
);
|
|
143
|
-
}
|
|
144
|
-
return obj;
|
|
143
|
+
const isSensErrorCode = (code) => {
|
|
144
|
+
return code in SENS_ERROR_CODE_SPEC;
|
|
145
145
|
};
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
146
|
+
const isNCloudErrorCode = (code) => {
|
|
147
|
+
return code in NCLOUD_ERROR_CODE_SPEC;
|
|
148
|
+
};
|
|
149
|
+
const handleSensError = (data, httpStatusCode) => {
|
|
150
|
+
return new SensError({
|
|
151
|
+
code: httpStatusCode,
|
|
152
|
+
type: isSensErrorCode(data.status) ? SENS_ERROR_CODE_SPEC[data.status] : "SDK.UNKNOWN_ERROR",
|
|
153
|
+
message: data.errorMessage || "something wrong",
|
|
154
|
+
...(Array.isArray(data?.errors) && {
|
|
155
|
+
errors: data.errors.filter((d) => !!d).map((d) => String(d)),
|
|
156
|
+
}),
|
|
157
|
+
});
|
|
150
158
|
};
|
|
151
|
-
|
|
152
|
-
const
|
|
153
|
-
|
|
154
|
-
|
|
159
|
+
const handleNCloudError = (data, httpStatusCode) => {
|
|
160
|
+
const { errorCode, message, details } = data.error;
|
|
161
|
+
throw new SensError({
|
|
162
|
+
code: httpStatusCode,
|
|
163
|
+
type: isNCloudErrorCode(errorCode) ? NCLOUD_ERROR_CODE_SPEC[errorCode].type : "SDK.UNKNOWN_ERROR",
|
|
164
|
+
message: message || "something wrong",
|
|
165
|
+
...(typeof details == "string" && { errors: [details] }),
|
|
166
|
+
});
|
|
155
167
|
};
|
|
@@ -2,7 +2,6 @@ import { SensClientConfig, SensClientResolvedConfig, SensCommand } from "./model
|
|
|
2
2
|
export declare class SensClient {
|
|
3
3
|
config: SensClientResolvedConfig;
|
|
4
4
|
private httpHandler;
|
|
5
|
-
private requestHandler;
|
|
6
5
|
constructor(config: SensClientConfig);
|
|
7
6
|
send<T, P>(command: SensCommand<T, P, SensClientResolvedConfig>): Promise<P>;
|
|
8
7
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,3 +5,4 @@ export declare const INGESTKOREA_RETRY_DELAY = "x-ingestkorea-total-retry-delay"
|
|
|
5
5
|
export declare const NCP_ACCESS_KEY = "x-ncp-iam-access-key";
|
|
6
6
|
export declare const NCP_TIMESTAMP = "x-ncp-apigw-timestamp";
|
|
7
7
|
export declare const NCP_SIGNATURE = "x-ncp-apigw-signature-v2";
|
|
8
|
+
export declare const NCP_TRACE_ID = "x-ncp-trace-id";
|
|
@@ -53,5 +53,3 @@ export interface NCloudErrorResponse {
|
|
|
53
53
|
details?: string;
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
|
-
export declare const SENS_ERROR_BODY_SPEC: [[keyof SensErrorResponse][number], string, boolean][];
|
|
57
|
-
export declare const NCLOUD_ERROR_BODY_SPEC: [[keyof NCloudErrorResponse["error"]][number], string, boolean][];
|
|
@@ -6,11 +6,19 @@ export type ServiceId = {
|
|
|
6
6
|
kakao: string;
|
|
7
7
|
sms: string;
|
|
8
8
|
};
|
|
9
|
+
export type HttpHandlerOptions = {
|
|
10
|
+
connectionTimeout: number;
|
|
11
|
+
socketTimeout: number;
|
|
12
|
+
keepAlive: boolean;
|
|
13
|
+
family: 4;
|
|
14
|
+
};
|
|
9
15
|
export interface SensClientConfig {
|
|
10
16
|
credentials?: Partial<Credentials>;
|
|
11
17
|
serviceId?: Partial<ServiceId>;
|
|
18
|
+
httpHandler?: Partial<HttpHandlerOptions>;
|
|
12
19
|
}
|
|
13
20
|
export interface SensClientResolvedConfig {
|
|
14
21
|
credentials: Credentials;
|
|
15
22
|
serviceId: ServiceId;
|
|
23
|
+
httpHandler: HttpHandlerOptions;
|
|
16
24
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HttpHandlerErrorCode } from "@ingestkorea/util-http-handler";
|
|
2
|
+
import { SesnResponseErrorType } from "./SensApiError.js";
|
|
2
3
|
type SensClientErrorType = "SDK.AUTH_ERROR" | "SDK.GENERAL_ERROR" | "SDK.REQUEST_ERROR" | "SDK.UNKNOWN_ERROR";
|
|
3
|
-
export type SensErrorType = SesnResponseErrorType | SensClientErrorType;
|
|
4
|
+
export type SensErrorType = SesnResponseErrorType | SensClientErrorType | HttpHandlerErrorCode;
|
|
4
5
|
export interface SensErrorInput {
|
|
5
6
|
code: number;
|
|
6
7
|
type: SensErrorType;
|
|
@@ -11,8 +11,8 @@ export * from "./MetadataBearer.js";
|
|
|
11
11
|
export * from "./SendAlimtalk.js";
|
|
12
12
|
export * from "./SendMMS.js";
|
|
13
13
|
export * from "./SendSMS.js";
|
|
14
|
+
export * from "./SensApiError.js";
|
|
14
15
|
export * from "./SensClient.js";
|
|
16
|
+
export * from "./SensClientError.js";
|
|
15
17
|
export * from "./SensCommand.js";
|
|
16
|
-
export * from "./SensError.js";
|
|
17
|
-
export * from "./SensErrorInfo.js";
|
|
18
18
|
export * from "./SensMiddleware.js";
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ingestkorea/client-sens",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
|
+
"types": "./dist-types/index.d.ts",
|
|
7
8
|
"import": "./dist-es/index.js",
|
|
8
|
-
"require": "./dist-cjs/index.js"
|
|
9
|
-
"types": "./dist-types/index.d.ts"
|
|
9
|
+
"require": "./dist-cjs/index.js"
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
12
|
"main": "./dist-cjs/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"typescript": "^5"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@ingestkorea/util-http-handler": "^1.
|
|
46
|
+
"@ingestkorea/util-http-handler": "^1.4.0"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"sens",
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NCLOUD_ERROR_BODY_SPEC = exports.SENS_ERROR_BODY_SPEC = exports.NCLOUD_ERROR_CODE_SPEC = exports.SENS_ERROR_CODE_SPEC = void 0;
|
|
4
|
-
exports.SENS_ERROR_CODE_SPEC = {
|
|
5
|
-
400: "Bad Request",
|
|
6
|
-
401: "Unauthorized",
|
|
7
|
-
403: "Forbidden",
|
|
8
|
-
404: "Not Found",
|
|
9
|
-
429: "Too Many Requests",
|
|
10
|
-
500: "Internal Server Error",
|
|
11
|
-
};
|
|
12
|
-
exports.NCLOUD_ERROR_CODE_SPEC = {
|
|
13
|
-
"100": { status: 400, type: exports.SENS_ERROR_CODE_SPEC["400"] },
|
|
14
|
-
"200": { status: 401, type: exports.SENS_ERROR_CODE_SPEC["401"] },
|
|
15
|
-
"210": { status: 403, type: exports.SENS_ERROR_CODE_SPEC["403"] },
|
|
16
|
-
"300": { status: 404, type: exports.SENS_ERROR_CODE_SPEC["404"] },
|
|
17
|
-
"400": { status: 429, type: exports.SENS_ERROR_CODE_SPEC["429"] },
|
|
18
|
-
"410": { status: 429, type: exports.SENS_ERROR_CODE_SPEC["429"] },
|
|
19
|
-
"420": { status: 429, type: exports.SENS_ERROR_CODE_SPEC["429"] },
|
|
20
|
-
"900": { status: 500, type: exports.SENS_ERROR_CODE_SPEC["500"] },
|
|
21
|
-
};
|
|
22
|
-
exports.SENS_ERROR_BODY_SPEC = [
|
|
23
|
-
["status", "number", true],
|
|
24
|
-
["errorMessage", "string", false],
|
|
25
|
-
["errors", "object", false],
|
|
26
|
-
];
|
|
27
|
-
exports.NCLOUD_ERROR_BODY_SPEC = [
|
|
28
|
-
["errorCode", "string", true],
|
|
29
|
-
["message", "string", false],
|
|
30
|
-
["details", "string", false],
|
|
31
|
-
];
|