@wildix/wim-knowledge-base-client 0.0.35 → 0.0.36
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.
|
@@ -532,7 +532,7 @@ const de_CleanDataSourceCommand = async (output, context) => {
|
|
|
532
532
|
};
|
|
533
533
|
exports.de_CleanDataSourceCommand = de_CleanDataSourceCommand;
|
|
534
534
|
const de_CloneDataSourceCommand = async (output, context) => {
|
|
535
|
-
if (output.statusCode !==
|
|
535
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
536
536
|
return de_CommandError(output, context);
|
|
537
537
|
}
|
|
538
538
|
const contents = (0, smithy_client_1.map)({
|
|
@@ -500,7 +500,7 @@ export const de_CleanDataSourceCommand = async (output, context) => {
|
|
|
500
500
|
return contents;
|
|
501
501
|
};
|
|
502
502
|
export const de_CloneDataSourceCommand = async (output, context) => {
|
|
503
|
-
if (output.statusCode !==
|
|
503
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
504
504
|
return de_CommandError(output, context);
|
|
505
505
|
}
|
|
506
506
|
const contents = map({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wim-knowledge-base-client",
|
|
3
3
|
"description": "@wildix/wim-knowledge-base-client client",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.36",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|