@cirrobio/sdk 0.0.1
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/api.d.ts +8 -0
- package/dist/api.js +105 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +17 -0
- package/package.json +25 -0
- package/src/api.ts +36 -0
- package/src/index.ts +1 -0
- package/tsconfig.json +20 -0
package/dist/api.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Middleware, ResponseContext } from "@cirrobio/api-client";
|
|
2
|
+
export declare class ApiError extends Error {
|
|
3
|
+
errors: string[];
|
|
4
|
+
constructor(message: string, errors: string[]);
|
|
5
|
+
}
|
|
6
|
+
export declare class PortalErrorHandler implements Middleware {
|
|
7
|
+
post(context: ResponseContext): Promise<Response | void>;
|
|
8
|
+
}
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
19
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
20
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
21
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
22
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
27
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
28
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
29
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
30
|
+
function step(op) {
|
|
31
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
32
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
33
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
34
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
35
|
+
switch (op[0]) {
|
|
36
|
+
case 0: case 1: t = op; break;
|
|
37
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
38
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
39
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
40
|
+
default:
|
|
41
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
42
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
43
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
44
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
45
|
+
if (t[2]) _.ops.pop();
|
|
46
|
+
_.trys.pop(); continue;
|
|
47
|
+
}
|
|
48
|
+
op = body.call(thisArg, _);
|
|
49
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
50
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54
|
+
exports.PortalErrorHandler = exports.ApiError = void 0;
|
|
55
|
+
var ApiError = /** @class */ (function (_super) {
|
|
56
|
+
__extends(ApiError, _super);
|
|
57
|
+
function ApiError(message, errors) {
|
|
58
|
+
var _this = _super.call(this, message) || this;
|
|
59
|
+
_this.errors = errors;
|
|
60
|
+
return _this;
|
|
61
|
+
}
|
|
62
|
+
return ApiError;
|
|
63
|
+
}(Error));
|
|
64
|
+
exports.ApiError = ApiError;
|
|
65
|
+
var PortalErrorHandler = /** @class */ (function () {
|
|
66
|
+
function PortalErrorHandler() {
|
|
67
|
+
}
|
|
68
|
+
PortalErrorHandler.prototype.post = function (context) {
|
|
69
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
70
|
+
var response, errorMessage, errors, err, ignore_1;
|
|
71
|
+
return __generator(this, function (_a) {
|
|
72
|
+
switch (_a.label) {
|
|
73
|
+
case 0:
|
|
74
|
+
response = context.response;
|
|
75
|
+
if (response && (response.status >= 200 && response.status < 300)) {
|
|
76
|
+
return [2 /*return*/, response];
|
|
77
|
+
}
|
|
78
|
+
errors = [];
|
|
79
|
+
_a.label = 1;
|
|
80
|
+
case 1:
|
|
81
|
+
_a.trys.push([1, 3, , 4]);
|
|
82
|
+
return [4 /*yield*/, response.json()];
|
|
83
|
+
case 2:
|
|
84
|
+
err = _a.sent();
|
|
85
|
+
console.warn(err);
|
|
86
|
+
if ('errorDetail' in err) {
|
|
87
|
+
errorMessage = err.errorDetail;
|
|
88
|
+
errors.push(err.errors.map(function (e) { return e.message; }));
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
errorMessage = err.message;
|
|
92
|
+
}
|
|
93
|
+
return [3 /*break*/, 4];
|
|
94
|
+
case 3:
|
|
95
|
+
ignore_1 = _a.sent();
|
|
96
|
+
errorMessage = "Unknown Error";
|
|
97
|
+
return [3 /*break*/, 4];
|
|
98
|
+
case 4: throw new ApiError(errorMessage, errors);
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
});
|
|
102
|
+
};
|
|
103
|
+
return PortalErrorHandler;
|
|
104
|
+
}());
|
|
105
|
+
exports.PortalErrorHandler = PortalErrorHandler;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './api';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./api"), exports);
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cirrobio/sdk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "SDK for Cirro",
|
|
5
|
+
"author": "CirroBio",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/CirroBio/Cirro-client-ts.git",
|
|
9
|
+
"directory": "packages/sdk"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://cirro.bio",
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"typings": "./dist/index.d.ts",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"prepare": "npm run build"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"typescript": "^4.0"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@cirrobio/api-client": "^0.1"
|
|
24
|
+
}
|
|
25
|
+
}
|
package/src/api.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Middleware, ResponseContext } from "@cirrobio/api-client";
|
|
2
|
+
|
|
3
|
+
export class ApiError extends Error {
|
|
4
|
+
errors: string[];
|
|
5
|
+
|
|
6
|
+
constructor(message: string, errors: string[]) {
|
|
7
|
+
super(message);
|
|
8
|
+
this.errors = errors;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export class PortalErrorHandler implements Middleware {
|
|
13
|
+
async post(context: ResponseContext): Promise<Response | void> {
|
|
14
|
+
const { response } = context;
|
|
15
|
+
if (response && (response.status >= 200 && response.status < 300)) {
|
|
16
|
+
return response;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Handle Error
|
|
20
|
+
let errorMessage: string;
|
|
21
|
+
const errors = [];
|
|
22
|
+
try {
|
|
23
|
+
const err = await response.json();
|
|
24
|
+
console.warn(err);
|
|
25
|
+
if ('errorDetail' in err) {
|
|
26
|
+
errorMessage = err.errorDetail;
|
|
27
|
+
errors.push(err.errors.map((e: any) => e.message));
|
|
28
|
+
} else {
|
|
29
|
+
errorMessage = err.message;
|
|
30
|
+
}
|
|
31
|
+
} catch (ignore) {
|
|
32
|
+
errorMessage = "Unknown Error";
|
|
33
|
+
}
|
|
34
|
+
throw new ApiError(errorMessage, errors);
|
|
35
|
+
}
|
|
36
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './api'
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"declaration": true,
|
|
4
|
+
"target": "es5",
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"outDir": "dist",
|
|
8
|
+
"lib": [
|
|
9
|
+
"es6",
|
|
10
|
+
"dom"
|
|
11
|
+
],
|
|
12
|
+
"typeRoots": [
|
|
13
|
+
"node_modules/@types"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"exclude": [
|
|
17
|
+
"dist",
|
|
18
|
+
"node_modules"
|
|
19
|
+
]
|
|
20
|
+
}
|